WooCommerce product details page category display
WooCommerce product details page category display
WooCommerce product details page category display
You can set a canonical URL: <link rel=”canonical” href=”https://www.amaoni.de/shop/hundebetten” /> which will tell search engines that those pages are copies of each other (just with different filters). You can also tell Google, via Webmaster tools, which URL parameters to ignore (your filters). See this Help Centre article: https://support.google.com/webmasters/answer/6080548?hl=en
I fix it. I clear transients for variable product before update price: wc_delete_product_transients($post_id);
Use woocomerce shop filters on other pages
Increase the download speed of a large number of variations in WooCommerce
Add class to latest item Woocommerce
You can use the woocommerce_get_children filter: function wpse_filter_variations( $variations, $product, $false ) { // Do you sorting here return $variations; } add_filter( ‘woocommerce_get_children’, ‘wpse_filter_variations’, 10, 3 );
I have managed to find a way, but welcome a better one. As mentioned in the OP comments, the function remove_coupons() in class WC_Subscriptions_Coupon in file woocommerce-subscriptions/includes/class-wc-subscriptions-coupon.php is removing coupons that are not ‘recurring_fee’ or ‘recurring_percent’. There is no filter added we can tap into to assign our own custom coupon types, so there does … Read more
Personally i would create a custom template and not use page.php and add a simply product loop Quick break down create new template called customshop.php <?php /* Template Name: Custom Shop */ ?> add your shop loop <ul class=”products”> <?php $args = array( ‘post_type’ => ‘product’, ‘posts_per_page’ => 12 ); $loop = new WP_Query( $args … Read more
Custom theme woocommerce product detail page template not working