- This topic has 1 reply, 2 voices, and was last updated 13 years, 5 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 › WP eStore Tweaks › Which file to edit for Old Price and can Thumbnail Target URL be target _blank?
Tagged: Old Price verbiage, Thumbnail Target URL
When showing a crossed out “Old Price” can I change the word “Price” prior to the crossed out price to “Reduced?” Which file would I edit?
Can the “Thumbnail Target URL” be made to open in a new window / target=”_blank”
Just got the eStore. WHAT AN OUTSTANDING VALUE!!!!
You can change the “Old Price” text to say whatever you want by changing the language file. this post will explain more:
Once, you find the language file look for “ESTORE_OLD_PRICE” in that file.
Regarding the thumbnail.. Open the “eStore_button_display_helper.php” file and look for the following line:
$output .= '<div class="eStore-thumbnail"><a href="'.$ret_product->target_thumb_url.'" title="'.$ret_product->name.'"><img class="thumb-image" src="'.$thumb_img.'" alt="'.$ret_product->name.'" /></a></div>';
Once you find it change it to the following which should make the thumbnail target URL to open in a new window:
$output .= '<div class="eStore-thumbnail"><a href="'.$ret_product->target_thumb_url.'" title="'.$ret_product->name.'" target="_blank"><img class="thumb-image" src="'.$thumb_img.'" alt="'.$ret_product->name.'" /></a></div>';