Can two products with the same name but different category produce unique URLs?

In the permalinks settings I have /courses/%product_cat%. Using WooCommerce I created two different Courses that are named “English”, but they have different categories that end up making my urls look like this: https://www.example.com/demo/chla/courses/grade-11/physics/ https://www.example.com/demo/chla/courses/grade-12/physics-2/ The Grade 12 URL is not ideal with the “-2” attached onto “physics”. Is there anything I can do to remove … Read more

WordPress url image redirect to the homepage

Need help please. I have run into an issue with image pages on my site. All url image, redirect to the homepage. I have double check in YOAST SEO and Redirection and found nothing. img: teradatariver.com/wp-content/uploads/2017/01/MSI-GE72VR-Apache-17-Inch-Gaming-Laptop-1024×1021.jpg But if I open the url post first http://teradatariver.com/327/best-17-inch-laptop/ then the url image it won’t redirect to the homepage. … Read more

WordPress converting ../url to http://../url

I have a page on WordPress, it’s slug is http://example/wordpress/page. I also have a second page, and it’s slug is http://example/wordpress/page2. I want to a link in the first page that links to the second page. So I tried the following: /page2/ – leads to http://example.com/page2 ❌ /../page2/ – leads to http://example.com/page2 ❌ page2/ – … Read more

Add a URL prefix to permalinks of News category and sub-categories of posts only

I changed http://domain.com/%postname%/ to http://domain.com/news/%postname%/ using the answer provided here: Add a URL prefix to permalinks of one category of posts only. But I am having issues with categories under NEWS itself. How can I make this work for sub-categories 1 Answer 1 add_action( ‘init’, ‘wpa_category_base’ ); function wpa_category_base() { // Remember to flush the … Read more