Posted - 09/09/2021 : 16:58:16
I had the same issue and the fix was fairly easy.
Here's how I did it in ASP but PHP has to be similar: 1 -- in includes file, added these two lines: ' Extra (custom) fields for products admincustomlabel1="On Screen Title"
2 -- in includes file, revised productpagelayout: productpagelayout="productid,productimage,custom1,description,quantitypricing,options,detaillink,minquantity,discounts,listprice,price,quantity,addtocart"
The order and items in this productpagelayout list are particular to my website but you should have a similar list. You need to replace "productname" with "custom1" in it's place.
3 -- do the same thing as #2 with your detailpagelayout.
4 -- fill in short names you want to show up in cart and on invoice (on admin products page as "Prod Name"). 5 -- fill in longer values you want to show up on web page (now on admin products page as "On Screen Title").
Only downside to this is you have to maintain two names for each item -- a short name (for cart contents and invoice) and a long name (for web page).
For an example - I have part number 7404 cart and invoice description = IC, Hex Inverter web page description = Integrated Circuit, TTL, Hex Inverter
Edited by - ekrzycki on 09/09/2021 17:02:48
|