Srijith V
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Share count not showingSorry to say that this kind of share button is not currently supported in the dashboard. We will consider this in the coming release.
You can place this manually by adding the following code into your theme file.
<div class=”addthis_toolbox addthis_default_style addthis_32x32_style” data-title=”<?php the_title(); ?>” data-url=”<?php the_permalink(); ?>”>
<a class="addthis_button_facebook"></a>
<a class="addthis_button_twitter"></a>
<a class="addthis_button_email"></a>
<a class="addthis_button_print"></a>
<a class="addthis_button_compact"></a>
<a class="addthis_counter addthis_bubble_style"></a>
</div>Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Adding space below addthis tool@YAOF Design:
You can add style to the class addthis-toolbox.
.addthis-toolbox {
/* Your css */
}Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Share count not showingFrom the addthis dashboard, please select the second button from the option
Show Share Counts
and update.If its not the issue, please post your blog url.
Unfortunately we failed to reproduce the issue with
twentytwelve
and several other free themes.The script is loading fine with thethe_excerpt_rss();
.There is a possibility of conflict with another plugin and /or some thing broke when the theme was edited. Please try deactivating each plugin and reloading a page. You might be able to find the issue.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Buttons Not LoadingWe have checked and find addthis script is loading on home page and some other pages, but not on blog pages. Since your theme is not available to us, we cannot figure out what the actual problem is. If your theme is using different footer files for blog, please try to include
<?php wp_footer(); ?>
in it.Also note that, from the plugin version 4.0, you need to configure the button positions from addthis site dashboard.
Sorry to here you are having issues with the plugin.
Shall we know which version of the plugin you are using(3.5.10 or 4.0.1)? Also it would be helpful if we can know the theme you are using.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] category tags and archivesIs your posts are loading via ajax? If that is the case, please call the javascript function
addthis.toolbox();
after the post contents are loaded.Please provide your site url for more assistance.
Widgets are working fine with in our local environment tested on several free themes. Could you please provide your site url for further debugging?
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Buttons Not LoadingCould you please provide your site url?
Hi Gal,
Will definitely look on to these.
Thanks
We can still see javascript errors in your page like:
TypeError: url is undefined in jquery…1.1.3.4
TypeError: document.body is null in showad.jsEarlier a sticky class was added on to your body tag while we scroll to top. This is not happening now. These js errors might be the issue, as adding class dynamically to an html tag is done with help of javascript and the js error in the page may block this functionality. Please try to resolve these errors and check issue still exists.
Hi Gal,
You can put the following code to display your share buttons only in your home page:
<?php if (is_home() || is_front_page()) echo addthis_print_widget(); ?>
If you need to add buttons just after the header, you can put it in the index.php, after
get_header();
.Or if you need to add them in just before the footer, put the code in index.php just before
<?php get_footer(); ?>
.Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Missing span tags from buttonsIn the working page, the addthis script is loading, while its not loading in the non working page.
I think the theme you used is a customized one, so that we can’t test and reproduce the issue here.Could you please check is there any difference in between these pages? Something like wp_footer() is not called in your theme footer?
We can see some javascript errors in your page from bit_widget.js. Could you please try deactivating the plugin causing the error and check the issue still exists?
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Installed version looks differentThe screenshot is having the buttons from the addthis dashboard. If you are having an addthis account, you can enable the required share tool from the site dashboard. You will be asked to paste a code into your site page some thing like:
<!– Go to https://www.addthis.com/dashboard to customize your tools –>
<div class=”addthis_sharing_toolbox”></div>.In the plugin’s settings page, select the custom button from Top Sharing Tool, and paste the above code into available text area. Also add your addthis profile id (AddThis Profile ID at top right of the settings page). Save the settings.
Please let us know if you are having any issues.