Parin Doshi
Forum Replies Created
-
Hello @janilyn409 ,
I want to change the name and description to another language, and I have WPML on the site. I tried to scan the plugin string but not find whatever I added here: https://prnt.sc/bH5Q-AoQrO5d
So, how can I translate it?Hi @janilyn409,
Is it possible that the plugin is storing data in the session, which occasionally isn’t working as expected? Could you suggest any ways to identify or troubleshoot this issue?Thanks @janilyn409
It happens sometimes not every time.
Please check this reference video where it is not added to the checkout order even it is showing on the checkout page.
https://capture.dropbox.com/VFKp4ju4Yu1vADi2
https://capture.dropbox.com/aE8NLlWxmA2tQd6c
You can check by placing an order multiple times, you will face it at some random time.- This reply was modified 6 months, 2 weeks ago by Parin Doshi.
Please note that checkout uses the Gutenberg block code.
Also, we cannot see any report even many donation amounts received with the order.
https://prnt.sc/B9h3M3IFwhiF
WooCommerce Version: 9.1.2
WPC Order Tip for WooCommerce Version: 3.0.3
Please help as soon as possibleForum: Plugins
In reply to: [Frontend Reset Password] lostpassword_post action needs two arguments.Hey there,
I have sent the above error showing the wp-2fa plugin has an error but it’s not like that. The error is in the Frontend Reset Password plugin only. I can say that because I’m using other plugins that are using the lostpassword_post hook with 2 arguments. Those plugins are Wordfence Security, New User Approve, WP 2FA – Two-factor authentication for WordPress.
Forum: Plugins
In reply to: [Frontend Reset Password] lostpassword_post action needs two arguments.Hi there,
I’m facing same issue on front end side when we click on Reset button it showing the same error.
https://prnt.sc/aHYH_l4xDCvL
Fatal error: Uncaught ArgumentCountError: Too few arguments to function WP2FA\Authenticator\Reset_Password::lostpassword_post(), 1 passed in /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-includes/class-wp-hook.php on line 324 and exactly 2 expected in /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-content/plugins/wp-2fa/includes/classes/Authenticator/class-reset-passord.php:47 Stack trace: #0 /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-includes/class-wp-hook.php(324): WP2FA\Authenticator\Reset_Password::lostpassword_post() #1 /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #2 /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-includes/plugin.php(517): WP_Hook->do_action() #3 /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-content/plugins/frontend-reset-password/includes/somfrp-functions.php(343): do_action() #4 /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-includes/class-wp-hook.php(324): somfrp_l in /home/652850.cloudwaysapps.com/uqyxqwmmqu/public_html/wp-content/plugins/wp-2fa/includes/classes/Authenticator/class-reset-passord.php on line 47
Please help on that asap.
ThanksForum: Fixing WordPress
In reply to: Layout Problem when loadingYou can check if you have used any cache or speed plugin in your site then check it’s settings and configure it.
If you have purchased that theme then you can also take support from them.Forum: Fixing WordPress
In reply to: Help with perceived security issueHi @dja_440,
Both plugin will work separately, so you can use both in your site.Forum: Fixing WordPress
In reply to: Help with perceived security issueHello,
I recommend using the All-In-One Security (AIOS) – Security and Firewall plugin. It provides excellent features in the free version, including the ability to:
- Change the database table prefix
- Change the login URL to something other than wp-admin or wp-login.php
- Back up your website
- Set up a firewall
- And much more!
AIOS is a comprehensive security plugin that can help protect your website from a variety of attacks. It is easy to use and comes with a variety of features that can be customized to meet your specific needs.
I hope this is helpful!Forum: Fixing WordPress
In reply to: Layout Problem when loadingHello,
The website layout may not be loaded fully because the CSS and JavaScript files are loaded in a queue. This means that the browser may start rendering the page before all of the layout files have been loaded. Once all of the files have been loaded, the page will be re-rendered to display the correct layout.Forum: Fixing WordPress
In reply to: Locked outYes Muvuth, you can create user from that code without login.
You need to add that code in fuction.php file of your active theme.Forum: Installing WordPress
In reply to: Where to place php loops, get_posts ?Hi @mfgr
If you are using Gutenberg Editor then it provides blocks like Posts List, Query Loop.
If you want to create a custom listing and design then I am sharing a link that is useful for you to create a listing page of your post on your site. It is easy to understand and helpful to you.
https://subscription.packtpub.com/book/business-and-other/9781838986506/2/ch02lvl1sec23/creating-a-custom-posts-list-templateForum: Fixing WordPress
In reply to: [NSFW] error WordPress database error Table
Hi @nezamadin,It seems that the
wp_dgwt_wcas_stats
table is not available in your database. This table is created by the FiboSearch – AJAX Search for WooCommerce plugin.So please check your database. It’s possible that you are not using that plugin, but its shortcode,
[fibosearch]
, is still used somewhere on your site, which is causing the error.To fix this, you can either remove the shortcode from your site or reinstall the FiboSearch plugin.
- This reply was modified 1 year, 5 months ago by Parin Doshi.
Forum: Fixing WordPress
In reply to: Locked outHi @muvuth,
I am suggesting you to create a new Admin user with a piece of code that helps you log in if you forget old user details.
You can change passwords directly from the database from the users table and it must be encrypted.function wpb_admin_account(){
$user = ‘Username’;
$pass = ‘Password’;
$email = ’[email protected]’;
if ( !username_exists( $user ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $user, $pass, $email );
$user = new WP_User( $user_id );
$user->set_role( ‘administrator’ );
} }
add_action(‘init’,’wpb_admin_account’);Make sure you can’t use the same email address, so if you have used email then for temporarily, you have to change that email address from the database.