-
AuthorPosts
-
February 4, 2016 at 7:06 pm #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 onI 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
February 5, 2016 at 3:06 am #578165Hi Nathan1214!
Does it still display fine when you publish it?
Best regards,
ElliottFebruary 5, 2016 at 4:20 am #578209Hi Elliot,
It does not.It is the same
looks like it does not look at the theme options at all, when you publish through DLANathan
February 5, 2016 at 3:54 pm #578541Hi There
i got the header and the footer back.
have Post name not displayed at the header left.February 6, 2016 at 7:09 am #578959Please see screens attached.
February 8, 2016 at 2:15 pm #579627Anyone????
February 9, 2016 at 7:33 am #580156Hi!
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!
IsmaelFebruary 9, 2016 at 2:17 pm #580402Thanks ,Ismael.
I was missing get_footer code in single.php
for whatever reason.February 10, 2016 at 5:39 am #580793Hi,
Glad you found the problem, please let us know if you should need any more help on the topic.
Regards,
RikardFebruary 10, 2016 at 6:27 am #580823Just 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
February 12, 2016 at 1:32 am #581961Hey!
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 KashyapFebruary 12, 2016 at 2:44 pm #582236Hey
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.February 15, 2016 at 6:07 am #583099Hi!
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!
IsmaelFebruary 18, 2016 at 10:32 pm #585761Thanks Ismael
But your code gives an error as unexpected functionParse error: syntax error, unexpected ‘function’ (T_FUNCTION) in html/wp-content/themes/enfold/functions.php
February 18, 2016 at 11:01 pm #585785I did fix it
February 19, 2016 at 9:40 pm #586325Ismael,
what exactly your code supposed to do ?
i do not see any changes in my social share .Thanks
February 26, 2016 at 7:09 am #589568Hi!
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,
IsmaelFebruary 26, 2016 at 2:16 pm #589802Not 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 helpFebruary 27, 2016 at 6:27 am #590154 -
AuthorPosts
- The topic ‘Blog Posts through Default Layout Editor issues.’ is closed to new replies.