By default, eShop shopping cart plugin will use standard post to display it’s product options. But it would be better if we can use custom post type which is available in wordpress 3 to have separate post type for our product. First we need to install eShop and Custom Post Type UI then use Custom Post Type UI to create custom post type easily instead of messing around with functions.php.
Next is look for editing eshop-product-entry.php file inside eshop plugin folder. Search for this code approx on line 13
add_meta_box( 'epagepostcustom', __( 'Product Entry', 'eshop' ), 'eshop_inner_custom_box', 'post', 'normal','high' );
Now replace ‘post’ with your newly created post type, i.e: product.
add_meta_box( 'epagepostcustom', __( 'Product Entry', 'eshop' ), 'eshop_inner_custom_box', 'product', 'normal','high' );
That’s all, when you add new product, there’s eShop options available for that custom post type.
Leave a Reply