Template for Custom Product Type
-
Hello Woocommerce community !
I have created a new custom type product (we have to manage 2nd hand products in a different way than classic products) and I’m trying to create a template for this product type called “sechand”.
I’ve created a plugin extending WC_Product and the type displays when creating a new product.My theme has the following snippet registered in the functions.php :
add_action( 'after_setup_theme', 'woocommerce_support' ); function woocommerce_support() { add_theme_support( 'woocommerce' ); }I’ve created a template “sechand-single.php” in mytheme/woocommerce/ but this template doesn’t seem to be called by WP (I’ve also tried sechand-product.php, single-sechand.php…).
I’ve tried putting single-product-sechand.php in my theme folder and not mytheme/woocommerce but nothing changed either.
Any idea how to set this up ? Thanks in advance
The topic ‘Template for Custom Product Type’ is closed to new replies.