- This topic has 2 replies, 2 voices, and was last updated 12 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 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 › Fancy 6 Display – Remove Product Name
I would like to remove the Product Name from the Fancy 6 display. Can you please advise me how to do this? Is it easy?
Thanks
With that said, here is what you can do if you are okay with tweaking a bit of code.
Open the “shortcode_include.php” file from the extra shortcodes plugin and find the following block of code. Once you find it remove it.
$output .= '<div class="eStore_fancy6_product_name">';
if(!empty($ret_product->product_url))
{
$output .= '<a href="'.$ret_product->product_url.'">'.$ret_product->name.'</a>';
}
else
{
$output .= $ret_product->name;
}
$output .= '</div>';
Perfect. Thankyou!