MikesPickz
Forum Replies Created
-
Forum: Plugins
In reply to: [RSS Post Importer] Redirecting to open posts at the sourceSamaskin,
If you still need this to work, all you have to do is replace the Genesis specific function with the WordPress built in version.
Simply replace,
genesis_get_custom_field( 'rss_pi_source_url' )
withget_post_meta( get_the_ID(), 'rss_pi_source_url', true )
Full code:
//* Redirect posts to original URL add_action( 'template_redirect', 'nabm_original_post_redirect' ); function nabm_original_post_redirect() { if ( ! is_singular() ) { return; } if ( $url = get_post_meta( get_the_ID(), 'rss_pi_source_url', true ) ) { wp_redirect( esc_url_raw( $url ), 301 ); exit; } }
Forum: Plugins
In reply to: [MP Spam Be Gone] Is this multisite compatibly?Yes, MP Spam Be Gone is multisite compatible.
Forum: Plugins
In reply to: [MP Tweet List] Fatal error: Cannot redeclare class OAuthExceptionHello,
Version 3.1 has just been released that should fix the OAuthException error. The problem was a compatibility issue with other plugins that use Twitter authentication. Let me know if Version 3.1 works for you.
Mike
Forum: Plugins
In reply to: [MP Tweet List] Sometimes the tweet widget is blankHello Kenny,
The problem was due to Shared Hosting environments and Twitter API 1.0 with non-authenticated requests. Twitter ended API 1.0 and Version 3.0 of the MP Tweet List uses Twitter API 1.1 with authentication. You will no longer have intermittent problems.
Mike
Hello msmall,
I just released Version 4.0 that allows you to exclude specific posts or pages from displaying the buttons. After updating, visit the Plugin Settings page to choose which pages to exclude.
Thanks for using the MP Share Center!
Mike
Forum: Plugins
In reply to: [MP Spam Be Gone] [Plugin: MP Spam Be Gone] IE 9.0 in Windows Vista?Hello,
That is odd, and I haven’t seen that issue yet. I will look into it and try to see if I can figure out what would be causing it. It is most likely related to IE, since the Operating System should have no effect on the plugin.
Thanks for using the MP Spam Be Gone.
Mike
Forum: Plugins
In reply to: [MP Spam Be Gone] [Plugin: MP Spam Be Gone] Box missingThanks everyone for pointing out the issue. A new version is in the works with an ETA of 3/24/12.
I hope you will give the new version a chance.
Mike
Forum: Plugins
In reply to: [MP Spam Be Gone] [Plugin: MP Spam Be Gone] Missing Checkbox – no ETAHello Shesh,
Thank you for trying the plugin. I am aware of the problem that some are having and new version is in the works with an ETA of 3/24/12.
I hope you will give that one a chance.
Mike
Hello,
Unfortunately, that is not CSS code from the plugin. That is part of the Google generated Plus One Button code. The best thing I can think of to override the Google Plus One code is adding a CSS rule to your style.css
.mp-share-boxes-gp div {vertical-align: inherit !important;}
This will force the automatically generated div inside the Google Plus list item to inherit the vertical-align and not use baseline. If this doesn’t work, I would try other vertical-align properties until you find that one that works (baseline, bottom, inherit, middle, sub, super, text-bottom, text-top, top).
I hope this helps.
Mike
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] Twitter URL is not permalinkSorry if I came off aggressive, it was not my intention ??
I just wanted to make sure that anyone who read this thread would understand that the shortlink was the permalink.
But, you have a very valid suggestion and the more choices doesn’t hurt. It was a simple update for me to make, so I released version 3.2 that allows you to choose between full links and shortlinks for the Tweet button.
Hope this helps!
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] Share Center Call to ActionI will look into adding a feature to allow a user to utilize custom CSS in a future release.
In the meantime, if you are comfortable adding this style to your theme’s CSS file, it should result in what you are looking for:
#mp-share-below-action { font-family: Impact, Charcoal, sans-serif !important; font-size: 30px !important; }
Let me know if this does the trick for you.
-Mike
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] Twitter URL is not permalinkActually, that is the shortlink version of the permalink. WordPress automatically generates shortlinks with every post.
If you visit that page, and view the source code, in the
<head>
section, you will find `<link
rel=’shortlink’ href=’https://www.planetahuevo.es/?p=2367′ />`Both links are actually the permalink. The plugin utilizes the shortlink for two main reasons, 1. To save characters in the Tweet and 2. To seamlessly integrate with other plugins that alter the shortlink (ie: WP Bit.ly – which modifies WordPress’ shortlink to a Bit.ly link).
But, the plugin also utilizes the Tweet button’s ‘counturl’ parameter (From the Twitter API: counturl = The URL to which your shared URL resolves to). This way, the shortlink is displayed, but the permalink is actually being credited for the Tweet. This is extremely beneficial, if you have a user that would rather copy and paste the URL into their own shortener and not use the button. The tweet resulting from this will theoretically still be counted.
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] Share Center Call to ActionHappy to say that version 3.1 has just been submitted and this update will allow you to choose one of five fonts for the Call to Action.
Let me know if this fix works for you!
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] Share Center Call to ActionI can definitely do that. I’ll create a list of fonts that can be used. Any specific font you would like to possibly see as an option?
Thanks for using the MP Share Center!
Forum: Plugins
In reply to: [MP Share Center] [Plugin: MP Share Center] RSS links are brokenVersion 2.3 released. This version removes the buttons from the RSS feed. Did not add an option to keep them in the RSS Feed since the current buttons used wouldn’t work properly in there. A future version may included a none JavaScript version that could be displayed in the RSS feed.