product permalinks not working
-
I am having an issue with the product permalinks on a website I have been asked to fix.
website page where links are broken: https://fallenangelbakery.com/menu/cupcakes/
There is a product-types taxonomy created which gets to the above page ok. However, the links to the individual products do not work. When editing the products, the permalink and the shortlink dont work.
loop code in taxonomy-product-types.php
‘<ul class=”product-list <?=$class?>”>
<? while ( have_posts() ) : the_post(); ?>- ” title=”<? the_title(); ?>”><div class=”frame top gb”></div>
<div class=”frame right gb”></div>
<? the_post_thumbnail( ‘fab-‘.$class.’-image’ ); ?>
<div class=”frame bottom gb”></div>
<div class=”frame left gb”></div>
<span class=”title”><? the_title(); ?></span>
<? endwhile; ?>
‘
the taxonomy is associated with “products” and we get products and product types as menu items in the wp-admintaxonomy: product-types
label of taxonomy: products
slug: menu
query var: product-types
singular name: product-typein order to get to the single product i have created a file called taxonomy-product.php.
can anyone give an idea why the product permalink doesnt work at all… even when trying to preview the page in wp-admin
- ” title=”<? the_title(); ?>”><div class=”frame top gb”></div>
- The topic ‘product permalinks not working’ is closed to new replies.