Oliver.Ibanez
Forum Replies Created
-
I’ve been looking for an easy way to fix this issue on my website for a while and the above code in the functions.php file works PERFECTLY! Thanks!
I’d be willing to pay for that as a paid addon. I’m sure others would as well. Thanks.
Hi Rene,
Thanks for the info.
What I mean by responsive is to handle it in the same way as the real mashable share buttons. You’ll notice that on a mobile phone the buttons look different. The text is removed and only the icon is shown. Likewise if you resize your desktop browser you can see how their share buttons change with the screen size as well. Just a suggestion.
Just to add to my comment about the G+ button … maybe allowing the user to choose which two buttons they want front and center and the rest hidden in the + icon?
Again, awesome plugin just thought I would throw in my suggestions to make it that much better!
No, I didn’t realize you had an addon. Very cool!
Is there a way to get Google Plus to appear like the Facebook and Twitter links?
Also, it would be even better if the plugin was responsive as well!
Forum: Plugins
In reply to: Widget in MenuThat sounds interesting. How would I go about doing that? The idea I’m after is to display a widget in the menu to give me the ability to create something that is similar to the navigation on SiteGround
Forum: Plugins
In reply to: [WooCommerce] Paypal Pro plugin problem.I’m having the exact same issue. Did you ever find a solution to this? I’ve contacted WooCommerce support as well but have not heard back from them yet.
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Too many login attemptsHad the same issue is described here. Not sure how I managed to hit so many failed login attempts … probably someone try to hack in!
At any rate it locked me out. To get back in just edit ‘theme-my-login/modules/security/security.php’
Replace this …
if ( $time > $expiration ) $this->unlock_user( $userdata->ID ); else return new WP_Error( 'locked_account', sprintf( __( '<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s.', 'theme-my-login' ), human_time_diff( $time, $expiration ) ) );With this …
$this->unlock_user( $userdata->ID ); /*if ( $time > $expiration ) $this->unlock_user( $userdata->ID ); else return new WP_Error( 'locked_account', sprintf( __( '<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s.', 'theme-my-login' ), human_time_diff( $time, $expiration ) ) );*/You’ll now be able to log into your admin and make changes to the plugin etc.