Syed Balkhi
Forum Replies Created
-
Forum: Plugins
In reply to: [Floating Social Bar] The Share Icons Disappear for Several SecondsMike,
Can you post your URL?
Forum: Plugins
In reply to: [Floating Social Bar] Where's the option to put sharer above / below contentClick on the checkbox that says Make Social Bar static. Then the options will appear.
Forum: Plugins
In reply to: [Floating Social Bar] Need some helpYes, you can use the tutorial.
Forum: Plugins
In reply to: [Floating Social Bar] Invalid argument suppliedNo we haven’t tested with that plugin.
Forum: Plugins
In reply to: [Floating Social Bar] Need some helpHey Rick,
In our next release, we are adding the option to make the plugin static (i.e not float) and give users the option add it above/below their content.
Now as for adding right below the title, that has to be done manually. By default we add the plugin above content because not all themes have the proper hooks to add items after post title.
But Genesis do, so you can do it fairly easily.
You would need to create a function and hook into genesis_after_post_title
Example:
add_action('genesis_after_post_title', 'rick_float_sharebar'); function rick_float_sharebar(){ if ( function_exists( 'floating_social_bar' ) ) floating_social_bar( array( 'facebook' => true, 'twitter' => true ) ); }Paste it in your child theme’s functions.php file. To add other buttons or change the order read our FAQ section.
http://wordpress.org/plugins/floating-social-bar/faq/
Genesis hook reference can be seen here:
http://my.studiopress.com/docs/hook-reference/
If you want to hook this into another hook instead of the after post title one that I used in the code above.
Now as for the Youtube video, this will happen with all video embeds and flash ads. You have to add wmode=transparent in your Youtube embed code. Now if you use WordPress oEmbed like most folks, then simply follow this tutorial:
Forum: Plugins
In reply to: [Floating Social Bar] Add Sticky function to other widgetsThis is entirely out of the scope for this plugin. You would have to use another plugin to float the sidebar widget or write a script.
Forum: Plugins
In reply to: [Floating Social Bar] A clutter of custom fields in post admin areaThe counts will not be deleted. We are looking into an easy solution that would allow us to delete the meta fields.
However, the counts stored in the database will have NO impact on any new plugin that you use.
Forum: Plugins
In reply to: [Floating Social Bar] A clutter of custom fields in post admin areaMudassar,
We store the share values for each post in your post custom fields, so the count can be pulled up without loading the social scripts.
Each post will have 5 additional custom fields which have no impact on your site’s performance.
This is NOT a bug.
Forum: Plugins
In reply to: [Floating Social Bar] widget area's have now 0000Jordi,
I can see the error on your site. Will try to replicate this on our end and see if I can do it with any success
Forum: Plugins
In reply to: [Floating Social Bar] widget area's have now 0000And this problem goes away once you disable our plugin? This is really weird. Please try disabling the plugin to verify that this problem doesn’t exist otherwise.
Forum: Plugins
In reply to: [Floating Social Bar] Don't floatIt seems to be working fine now that you separated the scripts.
About the errors, they are still there. Just inspect the element and look in the console.
I’m going to mark this as resolved because it is now floating.
Forum: Reviews
In reply to: [Floating Social Bar] Awesome and Clean.We have covered how to insert it manually in template in the FAQ section:
Forum: Plugins
In reply to: [Floating Social Bar] Invalid argument suppliedThis sounds unusual because we have tested this plugin on numerous sites of our own, and were unable to replicate anything of that sort.
Not sure what could be going wrong on your end. The best thing I can say is:
1. Delete the plugin and reinstall it. See if the error persists.
2. If it does, then deactivate all plugins and test one by one to see what is actually causing the error.
Forum: Plugins
In reply to: [Floating Social Bar] The Share Icons Disappear for Several SecondsJames,
The amount of time the button will take to load depends on two factors.
1. Speed of your internet
2. Speed of FB/Google+ servers at the specific time.There are times when the FB button is really slow (not just on this script), but on all sites because they are going through some sort of maintenance and such. This doesn’t happen very often, but when it does it is noticeable on the entire internet.
If #2 is the issue, then it doesn’t matter when you load the script. It will be that slow regardless.
If #1 is the issue, then you can’t really do much about it either way. You either have the user wait on hover or when the initial page loads. Because it will take the same amount of time to load either way.
So in short, yes there is a delay in load, but usually 1 second at least for me.
Forum: Plugins
In reply to: [Floating Social Bar] Don't floatIt seems that you have a lot of script errors on your site. I believe that is being caused by the way you have minified all your scripts.
Once you fix that, then this plugin will start working.