This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

1
  1. Greg Priday Staff 10 years, 11 months ago

    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.

Have a different question or issue?

Start New Thread