Tom Morton
Forum Replies Created
-
Forum: Plugins
In reply to: [WPSocialite] Buttons not loading on hover or scrollI looked at your site and you’ve got a javascript error. Since I can’t test the code I’m not sure if that’s stopping the script from firing or not, but try resolving that error and see if they load.
Another good tip is to deactive all of your plugins except for WPSocialite and see if it starts working. If it does, there is a conflict with another plugin.
Hope that helps, let me know if it works.
Forum: Plugins
In reply to: [WPSocialite] Setup like TechCrunchThe PHP code will go wherever you want the social buttons to display. In your index.php under “have_posts()” or in your single.php.
Forum: Plugins
In reply to: [WPSocialite] Setup like TechCrunchI see what you mean. You could actually accomplish this via the manual option and some custom css. Its not something I can easily implement because I cannot predict how each and every template is set up.
You can accomplish a similar effect by setting the position to “before” or “manual” and use this CSS:
.wpsocialite.small{ float: left} /* this can also float right */ .wpsocialite.small > li { margin: 0; display:block; float:none !important; width:20%; } .wpsocialite.small .socialite { width: 80px !important; }Be sure to note that if you are using the “large” layout you will have to change the class names to .large
Forum: Plugins
In reply to: [WPSocialite] Add new social media buttonsI’ll put adding the extensions into my todo list for the next release. I usually release updates at the end of the week. I’ll see if I can work something in.
Forum: Plugins
In reply to: [WPSocialite] Add new social media buttonsYes! If you see the contribute section of the socialite github page there are instructions to add a network into the system. https://github.com/dbushell/Socialite#contribute
Once you have done that I would enable it into the plugin. I can help with developing the buttons if you would like. Any other networks you can think of?
Forum: Plugins
In reply to: [WPSocialite] Setup like TechCrunchYou are looking for the icon layout to be more horizontal? Let me see if I can implement something similar.
Might take a bit of time, so hang tight! I usually do releases at the end of the week.
Glad you like the plugin!
Forum: Plugins
In reply to: [WPSocialite] W3C ValidationAppreciate your feedback. I’ve got this scheduled to deploy in the next release. You should see this fixed soon! I’ll be sure to mark this resolved when I push the update.
Forum: Plugins
In reply to: [WPSocialite] Plugin Stopped Working After 1.4.2 updateNo need to apologies, glad things are working smoothly.
Forum: Plugins
In reply to: [WPSocialite] [Plugin: WPSocialite] Setting PageGlad you like the plugin!
Regarding the floating option, what do you mean by floating? Can you give me an example?
Forum: Plugins
In reply to: [WPSocialite] [Plugin: WPSocialite] CSS class nameChris,
1. Unsure why you are having a scrolling bug. In the latest release I’ve double checked and the scrolling element is working fine. Can you link me to the page you are working on so I can test?
2. I agree with you that having the classes set by the user is unnecessary at this point. In the beginning it made sense, but not at this point. I’ve removed the option in the latest release and removed the javascript set in the header. This will come in 1.4.2.
3. The namespace is set to wrap in .wpsocialite .large (or small) so there shouldn’t be any conflicts. Are you still seeing an issue?
Forum: Plugins
In reply to: [WPSocialite] Social Sharing words on RSS FeedWorking on the pinterest issue now. I’ll make sure its in there before the update goes out.
Forum: Plugins
In reply to: [WPSocialite] Adding links manuallySeemap,
Thanks for making a note of this. The plugin has changed so quickly I did not update the readme file fast enough! Your markup is correct, and I’ll update the readme file to reflect it.
Glad you like the plugin, and thanks again!
Forum: Plugins
In reply to: [WPSocialite] Social Sharing words on RSS FeedActually this is solved by eliminating the markup outputting when the user is trying to load an RSS feed.
Thank you for catching that! I’ve already worked out a solution and will be pushing it up later today (look for Wpsocialite 1.4.2 on the Updates page in WordPress).
If you need an immediate solution, I’ve added the following code to line 177 of wpsocialite.php:
if(is_feed()) return $content; //do not include social markup in feedAs I said, update coming shortly!
Forum: Plugins
In reply to: [WPSocialite] [Plugin: WPSocialite] CSS class nameChris,
Agree on all points. Will have updates in the next release.
As always, appreciate your feedback.
Forum: Plugins
In reply to: [WPSocialite] [Plugin: WPSocialite] Pinterest is loading in allAditya,
Very interesting, I see what its doing. Let me take a look at what is happening and get right back to you.