ergopix
Forum Replies Created
-
Forum: Plugins
In reply to: [Favicon by RealFaviconGenerator] error 60: SSL certificate problem:Same…
Cannot download JSON file at https://realfavicongenerator.net/files/5d45e64de354c514fef30c1ff262c42312e3278d/json_result.json: cURL error 60: SSL certificate problem: certificate has expired
Forum: Plugins
In reply to: [Gravity Fieldset for Gravity Forms] Conditional Logic is not workingSame problem…
Forum: Plugins
In reply to: [Broadcast] Disable editing on child postThank you for your response.
However, I would like the child posts to be completely uneditable in order to keep a single source.
An idea?
Thank you! Everythings is OK!
I’ve this:
$settings = array(
post_title’ => true,
post_id’ => ‘new_post’,
uploader’ => ‘basic’,
new_post’ => array(
‘post_type’ => ‘post’,
‘post_status’ => ‘private’
),
submit_value’ => __(“Ajouter”, “ergopix”)
);
acf_form($settings);And:
function bnfw_after_save_post_pending($post_id) {
$post = get_post($post_id);
$post_type = get_post_type($post_id);
$old_status = $post->post_status;
if ($post_type === ‘post’ && $old_status === ‘private’) {
global $wpdb;
$bnfw = BNFW::factory();
remove_action( ‘pending_submissions’, array( $bnfw, ‘on_post_pending’ ), 10, 2);
wp_update_post(array(
‘ID’ => $post_id,
‘post_status’ => ‘private’
));
}
}Hi!
Thanks for your answer but it doesn’t change with this code. From backend it’s OK but front not.
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationI try to change theme, nothings change and also try to deactivate all plugins nothings change too…
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationI update permalink but nothing change.
I try to see in the plugin code. In
custom-email.phpthe function is:public function retrieve_pass_message_filter( $message, $key, $user_login, $user_data ) { $_message = $this->get_option( array( 'retrieve_pass', 'message' ) ); if ( ! empty( $_message ) ) { $message = Theme_My_Login_Common::replace_vars( $_message, $user_data->ID, array( '%loginurl%' => site_url( 'wp-login.php', 'login' ), '%reseturl%' => site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) )); } return $message; }So it’s normal to have: https://mydomain.com/wp-login.php?action=rp&key=ZptHViIDHK5WL8OMhAWN&login=test.test%40gmail.com
instead: https://mydomain.com/resetpass/?key=elcYs4zrYN2BZBA6p1NO&login=test.test%40gmail.com
No?
- This reply was modified 8 years, 3 months ago by ergopix.
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationRight!
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationYes, the custom meta field
_tml_actioncontain “resetpass”.- This reply was modified 8 years, 3 months ago by ergopix.
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationYes the page exist and is the page that the plugin created.
- This reply was modified 8 years, 3 months ago by ergopix.
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationThank you! Everything’s OK.
When I use the module “Custom email” (Retrieve Password), the %reseturl% URL is:
https://mydomain.com/wp-login.php?action=rp&key=ZptHViIDHK5WL8OMhAWN&login=test.test%40gmail.com
But must be the link to “Reset Password” like:
https://mydomain/resetpass/?key=elcYs4zrYN2BZBA6p1NO&login=test.test%40gmail.com
How can I resolve this?
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationUnfortunately the second redirection does’nt work…
Forum: Plugins
In reply to: [Theme My Login] Redirection and email confirmationThank very much! It’s perfect!
Other question: After a “Lost Password demand”, we are redirect to https://mydomain.com/wp-login.php?action=login&checkemail=confirm. There is a solution to redirect to homepage url too?
Thanks for your help!
Forum: Plugins
In reply to: [Forget About Shortcode Buttons] JS error on WP 4.8.1 and FASC 2.xHello,
Is it possible to have an answer from developer(s)?
Thank you!