VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: entropia on December 13, 2020, 22:55:36 PM

Title: ISBN In Product - Front end
Post by: entropia on December 13, 2020, 22:55:36 PM
Hello,

I have a problem, I'm not able to display ISBN code when Products are displaied in the shop
I tried to serch for a solution in many topics but didn't have any result

Joomla! 3.9.23 Stable
VirtueMart 3.8.6 10373
php version 7.3.2.2

Can someone help me?
Thanks in advance
Title: Re: ISBN In Product - Front end
Post by: AH on December 14, 2020, 10:48:57 AM
on product page

$this->product->product_gtin

on category page

$product->product_gtin
Title: Re: ISBN In Product - Front end
Post by: entropia on December 14, 2020, 21:35:00 PM
Thank you for your answer,

sorry but I don't understand where I have to insert that code, in which file and the location in the folder
Title: Re: ISBN In Product - Front end
Post by: GJC Web Design on December 14, 2020, 23:02:32 PM
add over rides for the VM product displays  to your template

components\com_virtuemart\views\productdetails\tmpl\default.php
over ridden in
templates/YOUR_TEMPLATE/html/com_virtuemart/productdetails/default.php

add the  echo 'ISBN: '.$this->product->product_gtin;

components\com_virtuemart\sublayouts\products.php
over ridden in
templates/YOUR_TEMPLATE/html/com_virtuemart/sublayouts\products.php

add  echo 'ISBN: '.$product->product_gtin;

Title: Re: ISBN In Product - Front end
Post by: entropia on December 15, 2020, 21:44:22 PM
Hi,

thanks again for your support, I am not so expert in writing code, can you please give me more detailed information:


add over rides for the VM product displays  to your template

components\com_virtuemart\views\productdetails\tmpl\default.php

over ridden in


1) templates/YOUR_TEMPLATE/html/com_virtuemart/productdetails/default.php ----> I created the folders and copy the file


1.a) add the  echo 'ISBN: '.$this->product->product_gtin; ----> could you explain to me in which part of the code I have to insert it and the syntax?



2) components\com_virtuemart\sublayouts\products.php ----> Found!

over ridden in


2a) templates/YOUR_TEMPLATE/html/com_virtuemart/sublayouts\products.php ----> I created the folder "sublayouts"


2b)add  echo 'ISBN: '.$product->product_gtin; -----> could you explain to me in which part of the code I have to insert it and the syntax?



Thanks!
F.


Title: Re: ISBN In Product - Front end
Post by: GJC Web Design on December 15, 2020, 22:24:11 PM
the syntax is there

the position is trial and error .. what's the worst that could happen?