Eggheads
Forum Replies Created
-
Hi,
Both of the reported vulnerabilities have already been patched. Please update to the latest versions of the plugins to ensure you have the fixes applied.
Thanks!
Hi,
Please install WC- Frontend Manager plugin https://wordpress.org/plugins/wc-frontend-manager/ before installing WCFM Marketplace. That should fix the issue for you.
Thanks!
We will add this fix in our next update. Thanks!
Thanks for bringing it to our attention. We’ll add this fix to our next update. Thanks!
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] Tickets MissingHi,
We couldn’t identify your account. Please share your account name or ticket ID. Please note that, paid addon support can’t be provided here. So you have to contact us via our website.
Thanks!
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] Tickets MissingHi,
If you are able to create new tickets, please open a new one regarding this issue so we can assist you properly. Alternatively, you may submit an inquiry through our contact form by providing your account email address – form
Thanks!
Hi,
The issue is caused by a hook sequence priority problem that occurs under a specific scenario. Another user had reported this earlier, and we were able to reproduce it under certain conditions.
You can fix this by downloading and installing the dev version from the link below:
https://drive.google.com/file/d/1ehxvr7_hUyQuHjOF4d4OwCKvVgAtq6vo/view?usp=sharingThis fix will also be included in our upcoming plugin update.
Thanks!
Hi,
The issue is caused by a hook sequence priority problem that occurs under a specific scenario. Another user had reported this earlier, and we were able to reproduce it under certain conditions.
You can fix this by downloading and installing the dev version from the link below:
https://drive.google.com/file/d/1ehxvr7_hUyQuHjOF4d4OwCKvVgAtq6vo/view?usp=sharingThis fix will also be included in our upcoming plugin update.
Thanks!
Forum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] URL rewritedHi,
Please go to the admin WCFM dashboard > Settings > Menu Manager and verify that all menu items are mapped to the correct URLs. If you find any incorrect mappings, update the URLs and save the settings.
Thanks!
Please note that all lifetime licenses are renewed every 5 years as part of our internal process, which usually happens in the background without any customer involvement.
You don’t need to take any action on this and rest assured, there are no charges involved.
Thanks!
Hi,
For this requirement only, you don’t need any paid add-ons like WCFM Ultimate. The free version already supports what you’re trying to do.
Thanks!
Forum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] checkout not workingThe checkout is now working fine. Please try again. We recently added PayPal support to the checkout page, which caused a temporary compatibility issue. It’s been fixed now.
If you still face any issues, kindly contact us through https://wclovers.com/pre-sale-queries/
as the WordPress forum isn’t meant for queries related to paid addons.Forum: Fixing WordPress
In reply to: remove menu and logo from home page onlyFind this
wp_nav_menu($menu_args);line in your code and try to replace with the following-if ( !is_front_page() ) { wp_nav_menu($menu_args); }Forum: Fixing WordPress
In reply to: remove menu and logo from home page onlyIf you arn’t, create a child theme first and copy header.php from the parent. There searcch for “wp_nav_menu” and use the following logic-
<?php if ( !is_front_page() ) {
wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); // or replace this with the ‘wp_nav_menu line from parent theme
}
?>