Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #291335

    Hi,

    I can’t work out what I am doing wrong. I can’t work out how to add ‘share with’-type functionality under each blog entry. I tried to follow some instructions I found on your site telling me to look for ‘Enfold theme options > Blog Layout and choose the ones you would like to display in “Share links at the bottom of your blog post” section’. But I can not find that anywhere?

    My site is hosted with wp engine, and is set to automatically update from the enfold theme update tab within my control panel, using the Themeforest API key.

    Please can you help?

    Many thanks in advance.

    #291507

    Hey morpho2014!

    Thank you for using our theme.

    Can you give us an admin account so we can check your settings?

    Cheers!
    Günter

    #291568
    This reply has been marked as private.
    #291581

    Hey!

    You are currently using an older version of the theme. Please update it to the latest version 2.9.1 via FTP – http://vimeo.com/67209750

    Best regards,
    Yigit

    #291604

    Hey,

    Thank you. I updated as instructed. I can see the share options displaying now – but only when I click on an individual blog entry – and not when I view the page ‘blog’, which contains all entries. Can it be shown there too?

    Many thanks for your help.

    Cheers

    #292566

    Hi!

    In wp-content/themes/enfold/includes/loop-index.php replace

    
                if(is_single() && !post_password_required())
                {
                	//tags on single post
                	if(has_tag())
                	{
                    	echo '<span class="blog-tags minor-meta">';
                    	the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
                    	echo '</span></span>';
                	}
                	
                	//share links on single post
                	avia_social_share_links();
       
                }
    

    with

    
                if(is_single() && !post_password_required())
                {
                	//tags on single post
                	if(has_tag())
                	{
                    	echo '<span class="blog-tags minor-meta">';
                    	the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
                    	echo '</span></span>';
                	}
                }
    
                	
                	//share links on single post
                	avia_social_share_links();
    

    Regards,
    Peter

    #296014

    Thank you very much for your help Dude. All sorted. That works great.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Can't add 'share with' type functionality in blog’ is closed to new replies.