pelgrimrat
Forum Replies Created
-
Resolved.
The issue was with the hosting provider. I had to open firewall ports. After that, no issue.
Hi @mohammedeisa ,
Thank you for your reply!
Fortunately, I was able to resume the move of the website after I cleared my browsers cache and ran the installer.php again.
Kind regards,
MaartenAdding some information:
During the validation process, I get 1 notice in “Database Version”:
STATUS
The current database engine is?[MySQL 5.7.41]?while the host database engine was?[MariaDB 10.4.29].?In some cases this might cause problems with the migration.
Forum: Plugins
In reply to: [WooCommerce] Hide category names but show product namesHi lhynn2172,
The code should be added to the style.css file located in your child theme folder.
It’s very important to create a child theme before you make any changes.
More info on creating a child theme:
Forum: Plugins
In reply to: [WooCommerce] Hide category names but show product namesGreat! That’s it!
Thank you so much, csquared89!
I have to change some more category images before I will apply it.
Thanks again!
Forum: Plugins
In reply to: [WooCommerce] Hide category names but show product namesHello MauroF3rra,
Thank you so much for your quick reply!
I tried your code but nothing changed.
I will try to make my issue more clear. On this page:
https://www.playtoday.nl/webwinkel/
you see pictures of all main LEGO categories. Under those pictures are the names of the categories.I would like to HIDE those names on that page. So only the category images are showing.
Is this possible?
Thanks in advance!Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Rename "Product Name" and "Unit Price" labelsmarking this topic as resolved
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Rename "Product Name" and "Unit Price" labelsI just solved the problem myself. This is what the problem was:
I had 2 plugins by YITH installed: Woocommerce Wishlist and Maintenance Mode. In Codestyle Localization, only the options for Maintenance Mode appeared, while the space beside ‘Wishlist’ remained blank. I was not able to create a .mo and .po file from there.
After i deleted the files from the Maintenance Mode plugin, naturally only the Wishlist plugin appeared in the Codestyle Localization list. Now WITH options to create a new translation file. After that I was able to translate the entire plugin.
Forum: Plugins
In reply to: [YOP Poll] hide auto-text after poll is closedThank you so much! This resolved my issue.
Forum: Plugins
In reply to: [WP-Polls] WP-Polls and Wordfence Falcon CachingOK, thanks for your quick reply and also for your suggestions!!
Have a great weekend!
Forum: Plugins
In reply to: [WP-Polls] Failed To Verify ReferrerDear Deexgnome,
From what file do I have do delete this code? Is it from wp-polls.php?
This worked perfectly!!
Thank you so much Tamara for your time and quick replies!
Maarten
Hi Tamara,
Thanks for your quick reply!
I added your code to my stylesheet, but nothing changed. I will contact the theme developer. The theme I use is Travelify by Colorlib
After searching the web and scratching my head many times, I found a solutions that worked for me:
You have to paste the code below in the functions.php file located in your child theme:
function exclude_product_cat_children($wp_query) { if ( isset ( $wp_query->query_vars['product_cat'] ) && $wp_query->is_main_query()) { $wp_query->set('tax_query', array( array ( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $wp_query->query_vars['product_cat'], 'include_children' => false ) ) ); } } add_filter('pre_get_posts', 'exclude_product_cat_children');
Forum: Plugins
In reply to: [WooCommerce] How to hide subcategory products from main categoryAfter weeks of searching the web, I found the solution here:
You have to paste the code below in the functions.php file located in your child theme:
function exclude_product_cat_children($wp_query) { if ( isset ( $wp_query->query_vars['product_cat'] ) && $wp_query->is_main_query()) { $wp_query->set('tax_query', array( array ( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $wp_query->query_vars['product_cat'], 'include_children' => false ) ) ); } } add_filter('pre_get_posts', 'exclude_product_cat_children');