Tom Morton
Forum Replies Created
-
Forum: Plugins
In reply to: [WPSocialite] Spotify Play Button functionality?Egar,
I’ll get working on a solution. Hang tight! I’ll try to have something no later than the end of the week.
Forum: Plugins
In reply to: [WPSocialite] Spotify Play Button functionality?Two questions while I am implementing this feature:
1. Would this be on a per post basis? For example, if you are writing a blog post on a great new song, would you need a meta box that asks you for a link to spotify? That way the individual song would appear with that blog post(or custom post type)?
2. Would this be better served as a different plugin? It seems to me that you don’t really want any of the other social features of WPsocialite, just the lazy loading feature for spotify, is that correct?
If number two is correct I may just wrap a new plugin all together. That helps you to make sure the plugin does only what you want, and it doesn’t bloat the WPSocialite codebase.
Appreciate your feedback!
Forum: Plugins
In reply to: [WPSocialite] Infinite scroll vs SocialiteAnother way you can implement lazy loading is to install the plugin here, WPSocialite, but if your solution is currently working and there is no need for added features, then you should be good to go!
Forum: Plugins
In reply to: [WPSocialite] CSS and perfomance issuesNick,
Appreciate your feedback. Here are my answers:
1. The first issue with the “custom-default.png” file isn’t clear. What error is tools.pingdom.com giving you for this file? Can you possibly link me to the log you are talking about? I ran the test myself but did not find the same errors you did.
2. In order to remove the ? version number when calling CSS/JS files, you can use the following script in your functions.php:
add_filter( 'script_loader_src', 'remove_src_version' ); add_filter( 'style_loader_src', 'remove_src_version' ); function remove_src_version ( $src ) { global $wp_version; $version_str = '?ver='.$wp_version; $version_str_offset = strlen( $src ) - strlen( $version_str ); if( substr( $src, $version_str_offset ) == $version_str ) return substr( $src, 0, $version_str_offset ); else return $src; }3. You can incorporate wpsocialite.css into your main CSS file, and there should be no reason for you to get a 404 if you change your CSS. Are you deactivating the style in WPSocialite by adding the following to your wp-config.php (preferably at the top)?
define( 'WPSOCIALITE_LOADSTYLES', false);4. Regarding the facebook like button not being inline with everything else, I believe this is because of the button being translated. If you drill down into the HTML/CSS in a source browser (Chrome Dev Tools or Firebug) you’ll find a <span> tag that has a height of 20px. This is automatically being set by facebook. I would target the facebook button on its own and add your own CSS to offset this.
Hope this helps and be sure to let me know if you are still experiencing any issues.
Forum: Plugins
In reply to: [WPSocialite] WP Socialite loading www.exitjunction.com scriptsNot a problem, glad to hear you solved the issue.
Forum: Plugins
In reply to: [WPSocialite] Spotify Play Button functionality?I definitely am. Do you have any specific suggestions on what you need or you would just like the ability to link to a song and have it lazy-load?
Forum: Plugins
In reply to: [WPSocialite] Can I add Twitter Follow buttonI am looking to add this into the next release.
My plan is to have a shortcode or template tag that would allow you to put a wpsocialite enabled set of buttons that would like to the site itself. For example, these buttons would “like” or “follow” for the whole of example.com, not just example.com/article-123.
Does that sound like what you need? If not, explain further and I’ll make sure the new feature release includes it.
Forum: Plugins
In reply to: [WPSocialite] Infinite scroll vs SocialiteHello,
I just took a look at your site. Are you using the WPSocialite plugin or socialitejs by itself?
Forum: Plugins
In reply to: [WPSocialite] WP Socialite loading www.exitjunction.com scriptsCoupon,
This does not seem to be correct. I don’t use anything associated with ExitJunction.com, nor has it ever been integrated into WPSocialite.
Is there a way you can reactivate it and take a screenshot of it coming from the wpsocialite plugin folder?
[Edit] Follow up to my last comment, I have scanned the WPSocialite Plugin codebase and found no instances of exitjunction.com or any other external URLs. WPSocialite should only be loading internal scripts.
Forum: Plugins
In reply to: [WPSocialite] Defining WPSOCIALITE_LOADSCRIPTS doesn't work in WordPress 3.5Wanted to follow up with you. I’m actually seeing this function working. Try placing them at the very top of your WP-Config.php file and see if that makes a difference.
If not, link me to the page you’re trying to disable everything on.
Forum: Plugins
In reply to: [WPSocialite] Defining WPSOCIALITE_LOADSCRIPTS doesn't work in WordPress 3.5Appreciate you bringing this to my attention. I’ll look into it ASAP.
Forum: Plugins
In reply to: [WPSocialite] Pinterest Not Working ProperlyLooks like an issue with the Pinterest extension from Socialite itself. Working on a solution.
Forum: Plugins
In reply to: [WPSocialite] W3C ValidationHello All,
Continuing to resolve the validation issues. Can you run the validator on your sites and link me to the errors so I can see exactly what you are getting?
Forum: Plugins
In reply to: [WPSocialite] Sharing buttons for store pages in coupon siteI’m going to close this thread. Please reopen if you still need additional support.
Forum: Plugins
In reply to: [WPSocialite] Small Social IconsJeff,
Glad you found a solution. Can you post what you did here? Please include code changes and line numbers where you changed them so others who may want the same can use it.
If it is something that I can turn into a feature on the plugin itself I will also try to integrate it into the code.
Thanks!
Tom