Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #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!

    #1194995

    Hey 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,
    Rikard

    #1195139

    Oh, 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.

    #1195189

    Hi,

    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,
    Rikard

    #1195205

    Hallo, 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!

    #1195309

    Hi,
    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.
    2020-03-22_160004.png

    Best regards,
    Mike

    #1195399

    Hallo, 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!

    #1195405

    Sorry: it IS working fine. Thanks a lot.
    Great support.

    Hope you are fine and healthy!

    #1195443

    Hi,
    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

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘No Share links visible at the bottom of the blog post’ is closed to new replies.