- This topic has 1 reply, 2 voices, and was last updated 9 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › eStore – Fancy 13 display product name not turning into a link
Tagged: fancy 13, fancy display, product details
I’m using the fancy 13 display and I have set the product page BUT the product name is NOT turning into a link.
I followed instructions for making fancy 14 product name a link (url below), but it didn’t seem to work for fancy 13.
Any guidance would be appreciated, thanks.
The fancy13 product display template is designed to no have a link.
Do the following tweak:
Open the “shortcode_include.php” file from the extra shortcodes addon and find the following block of code:
$output .= '<div class="eStore-product-fancy-13-name">';
$output .= $ret_product->name;
$output .= '</div>';
Change it to the following:
$output .= '<div class="eStore-product-fancy-13-name">';
$output .= '<a href="'.$ret_product->product_url.'">'.$ret_product->name.'</a>';
$output .= '</div>';