Part of my social icons are cut off by my post and I want to see he whole plugin… here is site
]]>TypeError: jQuery(…).offset(…) is undefined
Location: cevhershare.js line 27
Haven’t looked at solving this but will shut down other plugins on the page as a result.
]]>Excellent plugin and works very well. Might want to save downloading sharethis code and making it an even bigger wait for them. Facebook added an email/send button to their like button. Might want to implement it, should be simple.
https://developers.facebook.com/docs/reference/plugins/like/
]]>I have a few custom buttons placed on the left of each article. But when I open a article the buttons are gone on the ‘single post page’.
Anyone who can resolve this?
please use wp_debug true prior publication of a plugin
Notice: Use of undefined constant cevhershare_init – assumed ‘cevhershare_init’ in /var/www/vhosts/money.cz/httpdocs/wp-content/plugins/cevhershare/cevhershare.php on line 233
Notice: Use of undefined constant cevhershare_header – assumed ‘cevhershare_header’ in /var/www/vhosts/money.cz/httpdocs/wp-content/plugins/cevhershare/cevhershare.php on line 234
…
]]>“TweetCevherShare Tweet” shows up in related articles snipped text. See
https://www.aXXXXXrsenalinsider.com/4588/ryo-miyaichi-making-big-impression-at-bolton/
and note in related articles below post, that the Cevershare text is getting into posts!
Remove X’s from above
]]>I have CevherShare installed on a number of our sites. I recently had a reader complain that they couldn’t see the floating box because they were running 1024×768 resolution, and I had the minimum value set to 1000.
So I set it to 1024, and this user now saw the horizontal share buttons instead. But in Firefox, those buttons are pushing the image at the top of a post all the way to the right (into our right sidebar).
In the interim, I’ve just disabled the horizontal share bar option.
I’ve been able to duplicate the issue on my end as well. Can you assist?
]]>So far your plugin is one of the very best I’ve seen that does what we want it to do. Just 2 things….
What would be the best way to make the share box to appear on custom posts? Or are you planning on adding support for this in the future? Right now we’d like to have it appear on our product pages (We’re using WP e-Commerce) we’d also like to have it appear on the “category” pages as well if possible because a lot of people don’t really visit the product pages themselves, just the category pages. The strange thing about this though is that it shows up on the “view all products” page. I’m sure this has something to do with the way wp e-commerce is set up but I don’t know what to do about it. Any tips as to how to make this work would be great. I’d be fine with making the share box appear on every page no matter what, but I still don’t know what to do about that.
Category Page: https://rocpaperscissors.com/products-page/romance/
Product Page: https://rocpaperscissors.com/products-page/romance/owl-be-here-for-you/
All Products Page: https://rocpaperscissors.com/products-page/
Thanks,
Scott
Hello, I installed plugin and its working fine except in IE. It doesn’t display Facebook Like box in floating div properly and google plus button also shows small button count.
Plus in IE9 it gives An add-on for this website failed to run message.
I am using W3 Total Cache, Laz-Load and plugin to load js scripts in footer. When I make page width small, and small buttons display under post title, that part works perfectly.
Please advice. Thank you.
]]>Hey guys,
How are you? ??
I love this plugin…. I think its great! Its neat and sleek looking. I wanted to know if you guys would be updating this plug in for the near future, so that its possible that the buttons appear in the homepage and category pages too. I use the slider on the left handside of my theme and I am a little disappointed the way that the plug in doesnt work on homepages or category pages.
Will you be updating to allow this in the near future?
Thanks Guys..
Much appreciated ??
Sean
]]>I have the plugin displaying only on posts. When displaying on the left side, the plugin is typically showing the small icon rather than the large icon and only intermittently displays the expected large icon.
The issue seems specific to Firefox. I tested in 3.6.18 and in 5 and see the large icon only initially. On subsequent page loads, it tends to display the smaller one with only random showing of the larger.
I also tested in IE 8 and Chrome 13.0.782 and they appear to display the correct larger icon consistently.
]]>The script will clash with other scripts using jquery in the following circumstance:
– cevhershare is disabled for a page/post
Cause:
The plugin’s header function will add the script’s init to the header regardless of whether cevhershare is enabled or not. On a page where cevhershare is disabled, IE will give a warning message indicating that on line 27 of cevhershare.js, offset().top is null or that the object is undefined. Depending on your browser settings, this error will prevent further processing of scripts.
Fix:
The fix is to ensure that cevhershare does not add the init script to the header for a page/post that has cevhershare disabled.
Find the following line in cevhershare.php:
if(function_exists('wp_enqueue_script') && (is_single() || is_page())) {
Replace the above line with:
if(function_exists('wp_enqueue_script') && (is_single() || get_post_custom_values('sharebar'))) {
The fix instructs cevhershare to insert the init code into the header only if it is a single post or if a custom field of “sharebar” is set to true for the page/post. You can play around with the conditional statement to obtain the desired result. Of course, this is only a quick fix. If you need additional customization, it would take a bit more modding of the code.
]]>