ShMk
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] 0 Bytes DownloadSame here, anyone with a hotfix?
Am I the only one with this issue?
The problem is on GoDaddy hosting if it could be useful.Forum: Plugins
In reply to: [WooCommerce] password_reset hook missing argument 2Thanks, that solved the problem ??
I took the code from the official codex:
https://codex.www.ads-software.com/Plugin_API/Action_Reference/password_resetadd_action( 'password_reset', 'my_password_reset' ); function my_password_reset( $user, $new_pass ) { // Do something before password reset. }
But probably the codex is wrong ??
Forum: Hacks
In reply to: password_reset hook missing argument 2I’ve already posted there 2 hours ago ??
https://www.ads-software.com/support/topic/password_reset-hook-missing-argument-2-3The reset_password() function looks correct since the pass is really changed and if inside it I echo the $new_pass
echo $new_pass;
The pass it’s shown on the resulting page.
Is there any possibility that a function could condition the WordPress do_action()? Is it my hook function correct?
Forum: Plugins
In reply to: [WooCommerce] password_reset hook missing argument 2I tried with WP 3.5.x and 3.6 with latest WooCommerce.
Forum: Hacks
In reply to: password_reset hook missing argument 2The function is called by WooCommerce when a user visit the “confirm page” found on “click here to confirm” email.
The code that calls it should be:
public static function reset_password( $user, $new_pass ) { do_action( 'password_reset', $user, $new_pass ); wp_set_password( $new_pass, $user->ID ); wp_password_change_notification( $user ); }
on “woocommerce\classes\shortcodes\class-wc-shortcode-lost-password.php” starting from line 225.
The password is changed correctly and the email of password change notification is sent.
Forum: Hacks
In reply to: password_reset hook missing argument 2I tried on WP 3.5.x and also on 3.6 but it returns me the same error ??
Forum: Themes and Templates
In reply to: WordPress 3.6 and TwentyTenIf I have heard correctly, default WordPress themes will be kept up-to-date with the WordPress core…
I ask because I see that in WordPress 3.6 zip there are only TwentyThirteen and TwentyTwelve.
Forum: Fixing WordPress
In reply to: Get cropped image urlUnlucky not found a solution yet.
Any suggestion?Forum: Themes and Templates
In reply to: Blank / Clean Responsive Theme for 3.5.xNo one made a responsive theme starting from a blank responsive theme as skeleton?
Not even a suggestion? ??Forum: Plugins
In reply to: [Magic Fields 2] Visual Editor and MF2 Problem in multiline fieldI confirm that the multiline editor on 3.5.1 brake the wordpress tinymce editor and it works “buggy”.
I can’t use the markdown editor because I need advanced functions like the image upload that only multiline editor has.
Anyone has a fix for it?
Forum: Themes and Templates
In reply to: Basic Bootstrap ThemeI think I’ll go with The Bootstrap ??
Forum: Networking WordPress
In reply to: Multi site infinite loop on migration> Did you search/replace devsite.dev/multisitewp or just devsite.dev?
I’ve replaced just devsite.dev with onlinewebsite.tld because the name of the subfolder is the same, do you think this could break something? (maybe some serialized data?)
> Also what plugins were you running?
I’ve tried with the basic WP 3.5.1 no plugins enabled (akismet and hello on folder but not activated)
Forum: Networking WordPress
In reply to: Multi site infinite loop on migrationI get the redirect infinite loop on every page (homepage, internal pages, login).
I add that in onlinewebsite.tld (but also in devsite.dev) I have another wordpress installed.
Same problem here, all wordpress settings and plugins are correctly migrated except the NextGen Gallery.
The NextGen Gallery settings are all blank (not set).
Anyone has a solution for it?