aviplugins.com
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type Attachment] URL’s of attachements corruptedPlease update the plugin to the latest version and deactivate and reactivate the plugin once after update. The issue should be fixed.
Forum: Plugins
In reply to: [Custom Post Type Attachment] Fix cpta_get_file_url functionPlease update the plugin to the latest version and deactivate and reactivate the plugin once after update. The issue should be fixed.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Settings not working anymore (fix inside)updated version should fix this issue.
Forum: Plugins
In reply to: [Login Widget With Shortcode] jQUery.cookie is not a functionPlease update the plugin to the latest version and make sure to clear your browser cache the issue should be resolved.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Forgot Password – Nonce warningIf you are using WP Register Profile With Shortcode plugin for registration then make sure you have entered from email address in the plugin settings section.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Sorry, your nonce did not verify.And please update the plugin to the latest version to solve the Nonce validation issue.
- This reply was modified 5 years, 10 months ago by aviplugins.com.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Sorry, your nonce did not verify.It seems there is conflict with WooCommerce plugin.
Are you using the latest version of the WooCommerce plugin? Are you using any other add-on plugin for WooCommerce?
You can check the Article to get more information about the issue.
https://www.webnots.com/fix-slow-page-loading-with-woocommerce-wc-ajaxget_refreshed_fragments/
Or you can try to disable the script by adding the below code in your theme’s functions.php file and check if that solves the issue.
/** Disable Ajax Call from WooCommerce */
add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_cart_fragments’, 11);
function dequeue_woocommerce_cart_fragments() { wp_dequeue_script(‘wc-cart-fragments’); }Forum: Plugins
In reply to: [Login Widget With Shortcode] Sorry, your nonce did not verify.The nonce validation is there for security reasons.
This error can occur if you stay for a long time in the login page and then submit the login form. Because the at that time the Nonce code gets expired. After the refresh a new code is generated and the login will work fine.
Nonce expiration time can be increased using filters.
add_filter( ‘nonce_life’, function () { return 4 * HOUR_IN_SECONDS; } );
But as more users are getting this issue I will add option in the plugin settings to disable this check in the next update.
Forum: Plugins
In reply to: [Login Widget With Shortcode] No reset password mailHave you checked the spam folder?
Can you confirm that other emails are going fine from the site?
Forum: Plugins
In reply to: [Login Widget With Shortcode] filter login_errors not firedlogin_errors filter will not work with the plugin. To customize error messages for custom errors please use lsw_login_errors filter.
Example given below.
add_filter( 'lsw_login_errors', 'lsw_custom_login_error_message', 10, 1 ); function lsw_custom_login_error_message( $error ){ $err_codes = $error->get_error_codes(); if ( in_array( 'custom_error', $err_codes ) ) { $error = '<strong>ERROR</strong>: Custom error.'; } return $error; }
Forum: Plugins
In reply to: [Login Widget With Shortcode] Email Settings : error with the character quoteThis issue is resolved. Please update the plugin to the latest version.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Lost Password and Register page selectionSorry for the late reply. I understand your issue.
Actually the plugin was built by thinking that user will have a custom Registration / Lost password page. But I think the option should be there in the plugin so that user can select default Registration / Lost password options of WordPress. In the next update I will add those options.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Fatal errorPlease update the plugin to the latest version and the issue will be fixed.
Forum: Plugins
In reply to: [Login Widget With Shortcode] PHP NoticePlease update the plugin to the latest version the issue should be fixed.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Bugs after updatePlease update the plugin to the latest version 5.7.6. The issue should be resolved.
Thank You