• Resolved poopjackson

    (@poopjackson)


    DukaPress Product Category Templates
    I want to be able to use a different design (template) for each of my product categories, in the same way you can choose a different template for pages (Page Attributes/Template).

    I have seen some Plugins that add this functionality to normal posts (http://wordpress.org/extend/plugins/custom-post-template/) but I can’t work out a way to add this to Dukkapress Products..

    Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to find a way to create custom templates for the “products” post type (named ‘duka’).

    This may help:
    http://wordpress.org/support/topic/custom-post-templates-with-custom-post-types-in-wp-30?replies=7

    Remember that the name of the post type is ‘duka’w

    Thread Starter poopjackson

    (@poopjackson)

    Thankyou, worked straight away…

    I just replaced

    $this->add_meta_box( ‘select_post_template’, __( ‘Post Template’, ‘custom-post-templates’ ), ‘select_post_template’, ‘post’, ‘side’, ‘default’ );

    with

    $this->add_meta_box( ‘select_post_template’, __( ‘Post Template’, ‘custom-post-templates’ ), ‘select_post_template’, ‘post’, ‘side’, ‘default’ );
    $this->add_meta_box( ‘select_post_template’, __( ‘Post Template’, ‘custom-post-templates’ ), ‘select_post_template’, ‘duka‘, ‘side’, ‘default’ );

    Thanks for your help 🙂

    share the site’s link when done please 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: DukaPress] Custom Post Template for product categories’ is closed to new replies.