adambg
Member
Posted 9 months ago #
Hi,
I would like to integrate DukaPress into my WP website, but I already have a category called /products/
I cannot change my current products category and URL to something else due to incoming links. I would like to change DukaPress to place all products on a different URL, for example /store/...
How can I do that?
Thanks,
Adam.
http://wordpress.org/extend/plugins/dukapress/
You'd have to edit the code a bit.
Go to dp-products.php and find line 788
Change it from:
'rewrite' => array('slug' => 'products', 'with_front' => false),
To:
'rewrite' => array('slug' => 'store', 'with_front' => false),
I hope this works?
adambg
Member
Posted 9 months ago #
Perfect! It works.
Thanks!