assuming this is my custom post type code, on my own theme:
register_post_type( 'wpmon-product', array( 'labels' => array( 'name' => __( 'My Store' ), 'singular_name' => __( 'Product' ), 'add_new' => __( 'Add New Products' ), 'add_new_item' => __( 'Add New Products' ), 'edit_item' => __( 'Edit Products' ), 'new_item' => __( 'Add New Products' ), 'view_item' => __( 'View Products' ), 'search_items' => __( 'Search Products' ), 'not_found' => __( 'No products found' ), 'not_found_in_trash' => __( 'No products found in trash' ) ), 'public' => true, 'supports' => array( 'title', 'editor', 'thumbnail', 'comments' ), 'rewrite' => array("slug" => 'product'), 'menu_position' => 5, 'register_meta_box_cb' => 'my_custom_metaboxes' ) );
on my themeplate folder: what should be the name of my single.php php? is it 'single-wpmon-product.php'? or 'single-product.php'
i tried it both.. but it doesnt work on :(