Another issue with the same request @andrii
When I use this code, it works, the “List a Service” button redirects me to another page.
add_filter('hivepress/v1/routes', function($routes) {
$routes['listing_submit_page']['path']='/publish-listing';
return $routes;
}, 1000);
But then I can’t use the link: https://molnee.com/submit-listing/details/
So what should I do to be able to redirect the “List a Service” button to another page: molnee.com/publish-listing and continue to use the URL https://molnee.com/submit-listing/details/ separately?
Thanks a lot.