k.devantoni
Forum Replies Created
-
Thanks, expecting an update for php 8 ASAP!
Any quick fix available ?
php 8.1
Forum: Plugins
In reply to: [WooCommerce] Different page layouts for category vs subcategory?Okie got it fixed
https://wordpress.stackexchange.com/questions/3507/custom-field-values-in-permalink/3517#3517<?php global $post; $terms = wp_get_post_terms( $post->ID, 'product_cat' ); foreach ( $terms as $term ) $categories[] = $term->slug; if ( in_array( 'audio', $categories ) ) { echo 'In audio'; woocommerce_get_template_part( 'content', 'single-product' ); } elseif ( in_array( 'elektro', $categories ) ) { echo 'In elektro'; woocommerce_get_template_part( 'content', 'single-product' ); } else { echo 'some blabla'; } ?>
Forum: Plugins
In reply to: [WooCommerce] Different page layouts for category vs subcategory?Really Fantastic conversation !
Now I just wanna know something to display different layout for product (single product page) under the these categories,….
hmm k let me define,if category A display AA template for subcategories also the single product layout in AA , similarly
if category B display BB template for subcategories also the single product layout in BB
where I get all layout correctly except the “Single-Product.php”Hi, imevilduckie can you please suggest me the technique ? thx in advance ??
Forum: Fixing WordPress
In reply to: Category Widget – Problem with Parent Slug in Dropdown modeHi have similar issues for wp_dropdown_categories() were I have customized something to bring two main categories post and their stuff
as It brings something like this/search-result/?cate=18&area=108
now I need to bring this as seo friendly url I cant figure out what else I have gone wrong can anyone help me ….
Forum: Plugins
In reply to: Shopp Plugin Image Upload ErrorWhen uploading image its not loading .., as well as its showing 404 for order and setting.., can any one help .. thanks in advance!
dev:-)