Reply To: problem with the sharing buttons

Home Forums Iconic One Pro Support problem with the sharing buttons Reply To: problem with the sharing buttons

#1047

@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.