• Resolved SIMedia

    (@simedia)


    Question 1: Can I float or position the sharing container on the center of the post/page, rather than to the left? I found “sharing container” in the front.css file and tried both a “float: right” and “float: center” command to test, but neither worked. Is there a position code I can use?

    Question 2: I have “disable social sharing” on the page I use as a home page, and, home page is not enabled for social sharing in settings, and yet the social sharing container still appears, even after clearing cache. How to fix? Update: Discovered that each time I edit the page and check the box “disable social sharing” and then update, the box unchecks itself. Repeated checking and saving does not let me retain that “ticked box.”

    Question 3: When the share count goes over 4 digits, the numbers split into 2 lines and the icon is no longer aligned. Is there a way to change the share count to “K” instead of thousands? For instance my FB share on a page is 200 but my Stumble share is 123235, and I’d like that number to show 12K+ or something like that, so the icons remain in proper horizontal alignment.

    https://wordpress.org/plugins/super-socializer/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Rajat Varlani

    (@the_champ)

    1. To position the sharing interface in center of page/post, add following css in front.css file:

    .the_champ_sharing_container{
        padding-left: 12%
    }

    You can adjust the padding according to your requirements.

    2. I am not able to replicate the “checkbox unchecking itself” problem. To disable sharing on homepage, search following code in “wp-content/plugins/super-socializer/inc/social_sharing.php”

    if(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1 && !is_front_page()){

    Replace the code searched above with following:

    if(isset($sharingMeta['sharing']) && $sharingMeta['sharing'] == 1){

    Save the file back.

    3. Search following code in file “wp-content/plugins/super-socializer/js/front/sharing/sharing.js”:

    }else if(sharingCount > 999 ){

    Place following code after the code searched above and save the file:

    sharingCount = Math.floor(sharingCount/1000) + 'K';

    Thread Starter SIMedia

    (@simedia)

    100% success with all your tips. Thank you SO very much. Excellent support — again!

    Plugin Author Rajat Varlani

    (@the_champ)

    Pleasure is mine 🙂

    Thread Starter SIMedia

    (@simedia)

    Just made a PayPal donation. Can’t associate our user names with it!

    Plugin Author Rajat Varlani

    (@the_champ)

    Can you share your website url and explain the issue in detail?

    Thread Starter SIMedia

    (@simedia)

    Sorry, I wasn’t clear! You helped me solve my issues as shown above (the 3 questions) and I was grateful. Then I noticed you had a PayPal donation button on my plug-in (maybe it was on the recent update or I just didn’t notice it before now), so I used it to make the donation today, but noticed it doesn’t associate the WordPress username with the donation, so you wouldn’t know I was thanking you for the support you’ve already given me in this forum!

    Plugin Author Rajat Varlani

    (@the_champ)

    Okay 🙂
    Yea, I saw your company name in the PayPal donation “Spa Index Media”. Will include this WordPress username association too in upcoming release.
    Thanks for donation.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Center Sharing Container’ is closed to new replies.