Jimme,v_products_barcode
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
7.34995E+11
I had the same issue with UPC codes, it's a pain.
Here is how I solved it.
I added UPC before every code in the database, so instead of this -> 697666007421 in the db it was this -> UPC697666007421
Then i used php to remove the UPC when it's displayed on the front end.
It's a workaround but solves that issue.PHP Code:
str_replace("UPC","",$upc['products_upc'])
Bookmarks