• Installed Sociable yesterday and it worked fine for all posts except the latest one. I added a new post today and still no Sociable links for the new one added today, the new one added yesterday but its still there for all the posts prior to that !!!

    Can’t work it out – what’s going wrong ?

Viewing 8 replies - 1 through 8 (of 8 total)
  • I’m having the same problem – tried uninstalling and installing build 3.4.4 and still nothing showing up.

    Suggestions?

    i’m having the same problem.

    hello? you can see my blog here: https://jerksinyourarea.com. You’ll see that the first 12 or so posts have the sociable plugin wokring perfectly. then, for some reason, it stopped.

    what should i do?

    Hi, i’m still have the same problem.
    The Bookmarks display at random on my page.

    What should i do?

    Are you sure it’s global for all users? Have you tried the settings for the position on the wordpress admin?

    Hi,

    I recently tested the plugin, it works for me but with post/pages once updated, social can not activated/disabled per post from post admin.
    I fixed this by fetching the parent post always.

    ————————————————————
    function sociable_insert_post($pID) {
    // get main post
    $post_parent=get_post_field(“post_parent”,$pID);
    if((int)$post_parent>0){
    $pID=$post_parent;
    }
    // as usual
    if (isset($_POST[‘sociableoff’])) {
    if (get_post_meta($pID,’_sociableoff’,true)!=’Y’){
    add_post_meta($pID, ‘_sociableoff’, ‘Y’, true);
    }
    } else {
    if (get_post_meta($pID,’_sociableoff’,true)==’Y’){
    delete_post_meta($pID, ‘_sociableoff’);
    }
    }
    }
    —————————————————–

    yespbs,
    Where do you put that code for fetching the parent post always?

    I had the same problem as all of you, and I solved it in the following manner. This does break a certain tool, mostly the disable tool, although that never worked for me anyway.

    Open up the Sociable.php, and remove the following lines of code:

    if (get_post_meta($post->ID,’_sociableoff’,true)) {
    return “”;
    }

    This makes Sociable stop checking if it should be on or off.

    I am implementing Sociable manually, by inserting the code myself, I dont know how this will play if you are using the automated insertion.

    I am using WordPress 2.7 or so, Sociable seems almost completely broken for me, but with the manual insertion, and removing this line of code. I have everything I need.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Can’t get Sociable to work for new posts !’ is closed to new replies.