How to see the comments and sharing options in the home page
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.
This is our free support forum. Replies can take several days.
Need fast email support? Get SiteOrigin Premium
Replies
1Hi 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.