Eggheads
Forum Replies Created
-
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
}
?>Forum: Fixing WordPress
In reply to: How do I change 593 Posts Category in one go?You may find this old thread useful Link<link>
Forum: Fixing WordPress
In reply to: One of my post is missingHi check if somehow the page goes into ‘trash’ or ‘draft’
Forum: Fixing WordPress
In reply to: How to remove the background color around PayPal button?You can either create a child theme and put this (better approach) or go to theme setting and put this as custom css, I believe your theme is providing a setting section for custom css inclusion.
Forum: Fixing WordPress
In reply to: strange dot patternThis community is for free plugin and theme support. Kindly contact your theme developer for this. If you want to do this your self I’m giving you a head start –
Your mk-fancy-title.pattern-style class is using a background image.Forum: Fixing WordPress
In reply to: How to remove the background color around PayPal button?.post-content form {
background-color: #fff!important;
}this will solve the issue.
Try using “!important” at the end of max-height value.