Home>Support>How to see the comments and sharing options in the home page

How to see the comments and sharing options in the home page

Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].

Hi. I want the home page to look like my normal posts with the comments area and sharing buttons at the end. I configured in Settings>reading but still doesn’t work.

URL: http://www.mylove4learning.com/

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 10 years, 4 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