Home › Forums › Iconic One Pro Support › problem with the sharing buttons › Reply To: problem with the sharing buttons
October 28, 2013 at 5:24 pm #1047
Themonic-Support
Keymaster
@Pardauro If you want to show the social sharing buttons only on the post pages try the following simple edit.
Replace line 76 of content.php with
<?php if($options['themonic_social_share'] == '1' && is_single() ) { // display social sharing buttons on single only ?>
All we are doing is adding the conditional && is_single()
which will do the job.