I am considering the enfold theme for the new website and testing right now. Just wondering if I can handle more than 2 portfolios with different slugs/urls
for example
1. sample.com/portfolio-item/item1
2. sample.com/products/product-item1
I want to use portfolio-items for projects and products for products items. This website is not going to sell products online, but just showing the information of about the different products.
I can use this suggestion as per the another thread https://kriesi.at/support/topic/multiple-nonrelated-portfolios-in-one-site/
and show the products and portfolio items by filtering the categories. but I am having the following issue.
sample.com/portfolio-item/item1
sample.com/portfolio-item/product-item1
so the same slug (portfolio-item) in the URL is an issue. It is good for the portfolio items but when someone lands on the individual product page, then portfolio-item in the URL looks odd. Can you please guide me how I can deal it with?
Is there any option available to use portfolio module two times in the WordPress dashboard/backend. One for Portfolio and one for products.
Looking forward your reply.
Hey Sushil,
You can install WooCommerce which is fully compatible with Enfold and add your products to your shop and then add following code to Functions.php file in Appearance > Editor to remove add to cart buttons
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
Best regards,
Yigit