Home>Support>How to see the comments and sharing options in the home page
  1. 9 years, 7 months ago Greg Priday
    Hi, I Work Here

    Hi Thais,

    If you navigate to Appearance > Home Page, then click edit as page, you’ll be taken to the standard page editing interface. From here, change the Page Template to “Full Width Page, No Title” (it’s in the Page Attributes section). Make sure that discussion is enabled.

    Unfortunately it’s not possible to display share buttons on pages without some custom coding. I’ll look at adding this as a setting in a future update. If you’re familiar with child themes, you can add the following code to your child theme functions.php to display post sharing on pages.

    /**
     * Show the social share icons
     */
    function vantage_child_show_social_share_pages(){
    	if( siteorigin_setting('social_share_post') && is_page() ) {
    		siteorigin_share_render( array(
    			'twitter' => siteorigin_setting('social_twitter'),
    		) );
    	}
    }
    add_action('vantage_entry_main_bottom', 'vantage_child_show_social_share_pages');
    

    If you need help creating a child theme, you can hire someone on https://codeable.io/ to help.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More