Hi. How can we help?

How I can set a different slug for store post type?

You can achieve your goal simply adding following code in the file functions.php of your theme.

 

add_filter( 'yith_sl_rewrite_slug_post_type', 'yith_sl_rewrite_slug_post_type' );

if( !function_exists( 'yith_sl_rewrite_slug_post_type' ) ){
function yith_sl_rewrite_slug_post_type( $slug ){
$slug = 'point-of-sale';
return $slug;
}
}
Was this article helpful?
0 out of 1 found this helpful

Back to Help Center >