Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1253273
social sharing
Closed

Comments

  • Deks started the conversation

    hello

    which file is calling "socials-sharing.php"?

    i want to remove it from posts...

    thanks

  •  6,927
    Oliver replied

    HI!

    Sorry for possible misunderstanding, the file:

    /wp-content/themes/avxbuilder/socials-sharing.php 

    Can you add screenshot what you need to remove?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  6,927
    Oliver replied

    The most simple way to remove sharing from the posts into use following css:

    .single-post .socials-sharing {
        display: none;
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Deks replied

    hello gregro

    to "display-none" is not the method i am looking for.

    i want  to completely remove it..i just want to know if i can control it from theme options or even by php in one of the theme files.

    (i dont want to delete "socials-sharing.php" - just remove php lines that are calling the "socials-sharing.php"?

    im attaching a screenshot as you asked

    thank you



  •  6,927
    Oliver replied

    The most simple way is to remove 

    ct_socials_sharing();

    From the

    <?php if (get_post_type() == 'post') {   
    echo get_the_tag_list('<div class="post-tags-list date-color">', '', '</div>');   
    ct_socials_sharing();
    } ?>

    In the file:

    /wp-content/themes/magna/content-page.php

    (line  107)

    it's template, just copy it to the child theme for the safety updates.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Deks replied

    super :)

    thank you

  •  6,927
    Oliver replied

    Welcome!

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver