- This topic has 2 replies, 2 voices, and was last updated 6 years, 9 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 Photo Seller › Show filename in cart with link
Tagged: show file names in cart
Is there an option to show filename in cart beside product variation?
It shows the title and the selected variation. You mean the filename of the actual photo file?
I’ve done it in cart-wps-new-tabular.php:
$slika = $item->getItemImageUrl();
$slika_info = pathinfo($slika);
$image_name = basename($slika, ‘.’.$slika_info);
echo $image_name;?>
Thank you anyway