Posted - 05/23/2022 : 08:07:54
I can't get the quantity box to display on the details page. It shows up on the Quick Buy. I have this in includes. $GLOBALS['detailpagelayout']='navigation,productimage,productname,description,listprice,price,currency,options,addtocartquant,socialmedia'; $socialmediabuttons='askaquestion,facebook,'; I also have this in the detail page heading. <!-- The incectstyle.php file allows the product, detail and quick buy layouts to be controlled via your includes.php file. (Please see your vsadmin/includes.php file for more details.) --> <?php include "vsadmin/inc/incectstyle.php"; ?>
<!-- The line is required to display the FontAwesome icons used in the layouts.--> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> <link href="css/ectcart.css" rel="stylesheet" type="text/css"> <link href="css/ectstyledetails1.css" rel="stylesheet" type="text/css" /> <link href="css/minidropdowncart.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="/js/ectcart.js"></script> I tried changing the number of style in the includes. $ectqbuystyle=1; // Can be 1, 2 or 3 $ectproductstyle=1; // Can be 1, 2 or 3 $ectdetailstyle=1; // Can be 1, 2 or 3 What am I missing? Where do I look?
|