Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #577992

    Hi there.
    I have few issues:
    1. advanced layout editor does not support splitting the post.
    i get the work around with the default LE and have nothing against it to use.
    2. when i use the DLE and then preview the post all my web site settings done through enfold theme settings are gone.Meaning there are no footer displayed,header behavior is totally off.post name is not displayed and so on

    I have spent last few days searching support forum and playing with WP settings but could not find any solution to it.

    Any help would be much appreciated

    Thanks

    #578165

    Hi Nathan1214!

    Does it still display fine when you publish it?

    Best regards,
    Elliott

    #578209

    Hi Elliot,
    It does not.It is the same
    looks like it does not look at the theme options at all, when you publish through DLA

    Nathan

    #578541

    Hi There
    i got the header and the footer back.
    have Post name not displayed at the header left.

    #578959

    Please see screens attached.

    #579627

    Anyone????

    #580156

    Hi!

    i got the header and the footer back.

    How did you get it back?

    Do you want the single post title instead of the default? Please add this in the functions.php file:

    add_filter('avf_title_args', 'avf_title_args_mod', 10, 2);
    function avf_title_args_mod($args,$id)
    {
        if ( is_singular('post') )
        {
            $args['title'] = get_the_title($id);
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
    
        return $args;
    }

    Cheers!
    Ismael

    #580402

    Thanks ,Ismael.
    I was missing get_footer code in single.php
    for whatever reason.

    #580793

    Hi,

    Glad you found the problem, please let us know if you should need any more help on the topic.

    Regards,
    Rikard

    #580823

    Just one last thing)
    i do not want social share to show up by default. only when i add it myself through ALE or the wizard wound in DLE.

    Any Help Will be much appreciated.

    Thank you

    #581961

    Hey!

    Once you add social sharing info in Enfold Options > Social Profiles you can control on which page footer it show by going to the Footer Settings in the sidebar

    Another way is to show using the shortcode. Click on default editor and on the right side of the edit options select the magic wand > Content Elements > Social share buttons

    Best regards,
    Vinay Kashyap

    #582236

    Hey
    Thanks for your input.
    Let me tell you one secret: If you use DLE the Social share is by default at the bottom of your post, with no way to modify it.and if you use wand it will double the icons.

    #583099

    Hi!

    You can add this in the functions.php file:

    // add social share in the template builder content
    add_filter('avf_template_builder_content', 'avf_template_builder_content_social_mod', 10, 1);
    function avf_template_builder_content_social_mod($content = "")
    {
    	if(is_singular('post')) {
    		ob_start();
    		avia_social_share_links(array(), false);
    		$social = ob_get_clean();
    		$content = $content . $social;
    	}
    	
    	return $content;
    }

    Cheers!
    Ismael

    #585761

    Thanks Ismael
    But your code gives an error as unexpected function

    Parse error: syntax error, unexpected ‘function’ (T_FUNCTION) in html/wp-content/themes/enfold/functions.php

    #585785

    I did fix it

    #586325

    Ismael,
    what exactly your code supposed to do ?
    i do not see any changes in my social share .

    Thanks

    #589568

    Hi!

    It will automatically add the social share section if you use the advance layout builder. Isn’t that what you’re trying to do? Note that the Social Share Buttons element can be added manually in the advance layout builder.

    Regards,
    Ismael

    #589802

    Not really.
    i do know that i can add Social share in advance layout.
    i wanted to remove it from default layout.because there it added automatically and there is no way to modify it.

    Anyway i have modified helper-social-media.php and can live with that.

    Please close the ticket.
    Thank you all for your help

    #590154

    Hi!

    Alright. Glad you found a solution. :)

    Best regards,
    Ismael

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Blog Posts through Default Layout Editor issues.’ is closed to new replies.