Rutwick Gangurde
Forum Replies Created
-
Forum: Plugins
In reply to: [rtSocial] 0s come up in RSS feedsYo Iseroma,
My pleasure! Glad I could help. FB will never have ‘likes’ as that means using FB’s JS, which is compromising the plugin’s speed. Let’s hope FB allows likes/like counts via a GET/POST call sometime in the future!Peace!
Forum: Plugins
In reply to: [rtSocial] 0s come up in RSS feeds@iseroma
You’re welcome!Actually it’s not impossible but a little hacky to fix that issue.
The drag and drop issue could be caused if the markup id’s have changed in the back-end. Try opening the browser debugger by pressing ‘f12’ when dragging and dropping buttons around, switch to the ‘console’ mode and see if any errors are logged when you drag the buttons around.
Let me know and I’ll be more than happy to help!
Forum: Plugins
In reply to: [rtSocial] 0s come up in RSS feedsThis is not a bug. The reason for this behavior is, the markup is displayed initially with a ‘0’ as a placeholder for the count. Then after the page load, the counts are fetched and injected in place of those 0s by jQuery using the markup’s ids. Hence the plugin is fast as it avoids server side count processing. Since jQuery/JS is probably disabled in feeds, this fails and the 0s continue to show. Even if JS was available and the markup id’s too were in place, I doubt the counts would be fetched as cross origin requests might not be allowed in the aforementioned readers.
You’ll have to get the counts on the server side and add them right when the markup is added, which will obviously kill the plugin’s purpose by making it slow by increasing server side processing. Or use a filter to do this server side fuss only when in the feed context.Forum: Plugins
In reply to: [rtSocial] [Plugin: rtSocial] Pin-it button has two counts showingHi laserjobs,
Can you please give us a URL where you are facing this issue?
That line in CSS is commented out and we are not using any such image. There is a default-pinterest.png file, which is used as a fallback image in case a post does not have a featured image set.Please let me know and I’ll be able to help you better!
Thanks,
Rutwick@6×7
Thanks for confirming that the issue is gone!We have released a new version of rtSocial. Although we could not reproduce the issue you faced, we have eliminated the possible causes for it.
Please try it, and let us know if you still face any problems. Also, we have added support for LinkedIn, Pinterest and GPlus Share in rtSocial now.
Awaiting to hear back from you!
Rutwick
Forum: Plugins
In reply to: [rtSocial] display rtSocial floatingHi tinus2,
You can call rtSocial manually wherever you want in the theme. Just a little bit of CSS and you’re good to go!
We’ve recently introduced a feature using which you can override the options set from the back end settings in a manual function call. Refer this for the options list: https://rtcamp.com/support/topic/button-types-counters/Let me know if this helps you!
– Rutwick
Forum: Plugins
In reply to: [rtSocial] [Plugin: rtSocial] Problem with the version 2.0Hi Buzz,
We use the featured image for a post for Pinterest, and if it is not set, then we use a default fallback image. Please update the plugin to the newest version and see if the problem is solved.
Translation is not possible as we are using a single sprite image. I think you should fork the plugin on Github and add a sprite with translated buttons. Here’s the URL: https://github.com/rtcamp/rtsocial
I will be a great addition for other users as well!Thanks!
– RutwickForum: Plugins
In reply to: [rtSocial] [Plugin: rtSocial] add individual buttons with different styles@phirefly and @ethandt92
Exactly, we have updated the plugin and now you can override the options in your manual call to rtSocial.
@ethandt92
Thanks for your effort mate ??– Rutwick
Cool…
I found this one too: https://github.com/ajmorris/User-Photo/
Seems like westonruter is the right one.
Thanks buddy. I’ll post here when I put my changes in.Nice! Can you give me the URL please? I need to fork your code and add a minor change…
Hi,
Thanks for bringing this up and for posting the solution.
However, this might fail if they update the plugin and don’t change this code! Let’s hope they pick up your solution and implement it! ??– Rutwick
Forum: Plugins
In reply to: [rtSocial] [Plugin: rtSocial] Idea to add Google plus to the pluginHi Guys and totally sorry for getting back late!
Thanks for the kind words.
Yes, we are planning to add Google+ to rtSocial.Alternatively, you can fork rtSocial on GitHub and add a Google+ button to it (or other contributions that you can to improve the plugin).
Url: rtSocial on GITHUBWe’ll be more than happy to add you as a contributor to the plugin!
Thanks!
Rutwick, rtCampForum: Plugins
In reply to: [rtSocial] [Plugin: rtSocial] Fatal errorsHi Aloe4288,
Apologies for the delay in responding.
Can you please tell me what fatal error do you exactly see when rtSocial is activated? Please let me know and I’ll try my best to solve your issue.Awaiting a reply!
Rutwick
Forum: Plugins
In reply to: [CSV Importer] [Plugin: CSV Importer] Custom Taxonomies not importing@tzeldin88
You rock man! Thanks a lot, your solution worked! That line in the doc doesn’t really go to my head, and the custom taxonomies csv shipped along with the plugin too doesn’t work! They should really change the example csv and the documentation.– Rutwick
Forum: Hacks
In reply to: Action hook when creating a new user through admin?Bump!
Found it myself…
If someone stumbles on the same question, here’s the answer…do_action('user_register', $user_id); add_action ('user_register', "test"); function test() { //Do Something }
Hope someone finds it helpful…
Thanks a lot for all the help ??
Rutwick