Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author Jon Bishop

    (@jonbishop)

    Thanks for bringing this to my attention. I’ll be able to look into this more tonight and have an update soon. Sorry the upgrade wasn’t smoother. Really wanted to get this release out.

    Thread Starter venura

    (@venura)

    Thanks Jon!

    Plugin Author Jon Bishop

    (@jonbishop)

    I’m working on this right now. Could someone by chance let me know if under the Socialize Display Settings if the following code exists as the Call to Action Box Template:

    <div class="socialize-buttons">%%buttons%%</div><div class="socialize-text">%%content%%</div>

    Otherwise I’m going to keep looking into this. For now it looks like the new settings might not have been automatically created.

    Thread Starter venura

    (@venura)

    Its Empty Jon!

    Plugin Author Jon Bishop

    (@jonbishop)

    Ok, I’m going to try and integrate a reset button ASAP. In the meantime, please just add that code to the box and fix any other settings that may have been left out.

    Specifically make sure you review and update:

    • The Call to Action box border
    • Your Facebook and Bitly settings
    • Your default buttons to display

    Sorry this happened. Still not fully sure why. It was actually my biggest problem before releasing it and I thought I had figured out the problem. Thanks again for reporting back to help me get this fixed.

    Thread Starter venura

    (@venura)

    Not a Problem!
    Now its working fine.
    Thanks again Jon. I will let you know if notice any other bugs.
    Keep up the Good work! I am heading to plugin page to give 5 stars.
    Have a nice day.
    Cheers,
    Venura

    Jon,

    Thanks for the update. However, there’s a bug. The call to action box for single posts only appears if the inline buttons are active on single posts pages as well. The plugin used to be able to display the call to action box on its own.

    Any fixes?

    Addit: changes (adding buttons, repositioning) don’t seem to be reflected. How long does it take to refresh?

    Thanks.

    This was not working for me and I was getting very frustrated as all old posts did not have the Alert Box buttons displaying. I had no idea where this stuff was even saved. So I dived into the code.

    I figured out it was a bug in the socialize-frontend.php file.

    Instead of using the default boxes in the alert box it just relied on the post having them set custom for each post. That’s why they were showing up on new posts but not on all the old ones.

    To fix the issue, simply replace the following lines in the “socialize-frontend.php” file located in the “frontend” folder of the Socialize plugin.

    Replace this at line 161:
    $socializemeta = explode( ',', get_post_meta($post->ID,'socialize',true));

    With these lines:

    $post_socialize_meta = get_post_meta($post->ID,'socialize',true);
    $sm_str = !empty($post_socialize_meta) ? $post_socialize_meta : $socialize_settings['sharemeta'];
    $socializemeta = explode(',', $sm_str);

    Used this fix on CampTrip and it’s all working fine now.

    I hope this helps some people. Happy blogging ??

    Plugin Author Jon Bishop

    (@jonbishop)

    This is now fixed using something similar to what jnpwebdeveloper suggested.

    Jon,
    I am getting a problem – which is that in the latest post on https://www.photographworks.com the wording in the Call to Action Box stays the same although I changed the wording in the Call to Action Box Text in the back end.

    The wording has changed for all the other posts, but not for the latest post.

    I tried deleting the plugin and reinstalling but it is picking up the info from the database and so still has the problem.

    In which table is the info stored in the database?

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘[Plugin: Socialize] Alert Box Social Buttons disappeared (box is still there)’ is closed to new replies.