Hide woocommerce category name from specific pages
I need to hide the name in the category box from a specific page. I need to show the name in all other pages but this one.
Is there a way to use this CSS for a specific category? Thank you!
I need to hide the name in the category box from a specific page. I need to show the name in all other pages but this one.
Is there a way to use this CSS for a specific category? Thank you!
I have written the code with many update_post_meta entries:
I have a basic question that has always stumped me. I’m trying to move the Star Rating into the comment meta, which will help me style it. Here’s the template file review.php section:
I’ve noticed that on certain pages, two filters appear in the top right. One is styled properly (the bottom one), and the other isn’t. I’d like to remove the top one (which isn’t styled properly). Is there some CSS I can add to remove it? Here are some sample URL’s: https://bndlstech.com/shop/ https://bndlstech.com/blog/category/health-living/ Thanks! Answers: Thank … Read more
I have a plugin which is dependent on another plugin, in this case WooCommerce.
I’m hoping someone can’t point me to what I am overlooking. CIRCUMSTANCE: We have some unique business logic whereby a custom user meta field affects the appropriate tax class. We have three customer “types” (which is this user meta field, say ‘type_one’, ‘type_two’, ‘type_three’) with three corresponding custom Tax Classes (‘class_one’, ‘class_two’, ‘class_three’). When we … Read more
I am working on a marketplace plugin. If the vendors do not accept the order within the date range I set, the order will be cancelled. For this, I have determined a time period of order date +3 days. So far, so good.
Setup (wordpress and woo only; fresh install): Prices entered with tax: No, I will enter prices exclusive of tax Display prices in the shop: Including tax Display prices during cart and checkout: Including tax Tax Rates: Standard 23%, Reduced 5% Product 1: price 100, tax rate standard (23%), front end price 123 Product 2: price … Read more
I need to display product sales quantity on my orders backoffice. Someone can give some help with this? I can´t find any solution for this.. I already have this: add_filter( 'manage_edit-shop_order_columns', 'admin_orders_list_add_column', 10, 1 ); function admin_orders_list_add_column( $columns ){ $columns['custom_column2'] = __( 'Quantidade', 'woocommerce' ); return $columns; } add_action( 'manage_shop_order_posts_custom_column' , 'admin_orders_list_column_content', 10, 2 ); … Read more
I am overriding the default error.php, success.php and notice.php templates in the templates/notices folder. These, I concluded, were seemingly only used for some of these notifications. My errors use the error template just fine, for example.