mohlarbi
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Manager] Reset passwordI updated the plugin today but still having the same issue.
RegardsForum: Plugins
In reply to: [Download Manager] Reset passwordIf this can help, here is the code generated when the issue happen:
`<form name=”loginform” id=”updatePassword” action=”https://mazars.digitalmarketsolution.com/wp-admin/admin-ajax.php?action=updatePassword” method=”post” class=”login-form” _lpchecked=”1″><div class=”alert alert-danger” data-title=”ERROR!”><b>The password update failed</b><br>The session has expired! Please try again.</div></form>
Forum: Plugins
In reply to: [Download Manager] Reset passwordI’m still waiting for help!
Please can you give me any advice?Forum: Plugins
In reply to: [Download Manager] Paypal Email AddressYES! That’s it! It works fine.
Thank you very much for your help.Forum: Plugins
In reply to: [Download Manager] Reset passwordNo!
I don’t use any cache plugin.Forum: Plugins
In reply to: [Download Manager] Paypal Email AddressRelated URL: https://mazars.digitalmarketsolution.com/mon-compte/?udb_page=edit-profile
Screenshot: https://pasteboard.co/JMuFuNH.png
I think it’s based on your plugin template: “edit-profile.php”
Thanks
Hi @ethanchoi ,
I had the same problem but now it’s solved. Your solution works very well.
Thank you very much for your support.Forum: Plugins
In reply to: [Polylang] Elementor header translation isn’t working via PolylangHi Everybody,
I had the same issue but I found this solution. You must add this code to your “function.php” file. It works for me.
// Polylang
add_filter( ‘elementor/theme/get_location_templates/template_id’, function( $post_id ) {
if ( function_exists( ‘pll_get_post’ ) ) {
$translation_post_id = pll_get_post( $post_id );
if ( null === $translation_post_id ) {
// the current language is not defined yet
return $post_id;
} elseif ( false === $translation_post_id ) {
//no translation yet
return $post_id;
} elseif ( $translation_post_id > 0 ) {
// return translated post id
return $translation_post_id;
}
}
return $post_id;
} );Here’s the original post where I found the solution:
https://github.com/pojome/elementor/issues/4839