Tsybin
Forum Replies Created
-
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Stuck At "Please Loading"So, maybe can help just update your wordpress again. Don`t know why, but now this help for me.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Stuck At "Please Loading"Have same problem, can do something with this? What browser you use? Why support not answered?
Forum: Plugins
In reply to: [GD Star Rating] How to remove votes count on sidebar? example (6 votes)You need just edit template T2 in options-panel GDSR plugin. Find “Default Widget Star Rating” and press “Make New Template”. After you see panel, where you can change style and text in widget. Save what you change and choise your New Template!
Forum: Plugins
In reply to: [GD Star Rating] calling wp_gdsr_rating_article() from loop.php (template)i just set in options “add rating for all posts/archive/homepage” and add in loop.php in the excrept function: <?php wp_gdsr_render_article(); ?>!
Forum: Plugins
In reply to: [GD Star Rating] calling wp_gdsr_rating_article() from loop.php (template)same problem! But i have multi-set rating! Correct display on the post/page, but in loop.php (front-page) not want! Support here answer long time, so, can go sleep ??
I can help myself with plugin #adminimize”
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll Now working on IE 6/7/8 with manual modeenjoy!
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll Now working on IE 6/7/8 with manual modeFind how fix this in another question:
Maybe can help for someone:
1. Need open wp-content/plugins/infinite-scroll/js/behaviors/manual-trigger.js
change this:
jQuery(opts.nextSelector).click(function(e) { if (e.which == 1 && !e.metaKey && !e.shiftKey) { e.preventDefault(); instance.retrieve(); } });
to this:
jQuery(opts.nextSelector).click(function(e) { if (!e.metaKey && !e.shiftKey) { e.preventDefault(); instance.retrieve(); } });
2. Need open wp-content/plugins/infinite-scroll/js/behaviors/manual-trigger.min.js
change this:
if(a.which==1&&!a.metaKey&&!a.shiftKey)
to this:
if (!a.metaKey && !a.shiftKey)
Thanks everybody!