-
AuthorPosts
-
March 20, 2020 at 1:48 pm #1194793
Hey there.
I activated some share links in the backend for the blog > blog-layout. Nothing visible in the frontend.
Also I cannot see the comment form.
Why?Thank you!
March 21, 2020 at 4:43 am #1194995Hey NorthcoastProject,
Are you using the Layout Builder to create your posts? If so then you have to add those elements manually to the post. I tried logging in to check but the details don’t work:
Unbekannter Benutzername. Überprüfe ihn noch einmal oder versuche es mit deiner E-Mail-Adresse.
Best regards,
RikardMarch 21, 2020 at 8:22 pm #1195139Oh, yeah!
And how can I have a normal prev/next- pagination on the bottom of the post? Is that possible?
Now I have the preview-Links fixed in the middle of the screen.March 22, 2020 at 6:46 am #1195189Hi,
Thanks for the update. I can view the site, but I can’t login in to WordPress so I can’t check your settings. If you are using the Blog Posts element to display your posts then you can set pagination in the element options. If not then please try to set the amount of posts per page under Settings->Reading in the WordPress menu.
Best regards,
RikardMarch 22, 2020 at 10:34 am #1195205Hallo, I am using the normal blog setting for the overview page.
But for the posts itself I am using the avia builder.
I set the pagination in element options, but I cannot view any settings for the prev/next pagination for the single post page.
That is what I am looking for –> I want simple prev / next links at the end of each post. Now there are these preview links with little images fixed to the left and right in the middle of the single post page.Thank you!
March 22, 2020 at 10:01 pm #1195309Hi,
Since you are using the Advanced Layout Builder for your posts, you can add this code to the end of your functions.php file in Appearance > Editor:add_filter( 'avf_template_builder_content', 'enfold_customization_next' ); function enfold_customization_next( $content ) { if ( is_singular('post') ) { $content .= '<div style = "clear:both;"></div>'; $content .= get_previous_post_link(); $content .= get_next_post_link(); return $content; } else { return $content; } }
If you have “Tags” assigned to your posts this will show a next & previous link at the bottom of the page.
Best regards,
MikeMarch 23, 2020 at 10:26 am #1195399Hallo, thanks for answering.
But something is going wrong with the code.
I have now two times the next link button. The one fixed in the middle left and the one at the bottom auf the post.
Please have a look!March 23, 2020 at 10:32 am #1195405Sorry: it IS working fine. Thanks a lot.
Great support.Hope you are fine and healthy!
March 23, 2020 at 12:45 pm #1195443Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts
- The topic ‘No Share links visible at the bottom of the blog post’ is closed to new replies.