what triggers swapping to attribute picture instead of product picture?
Printable View
what triggers swapping to attribute picture instead of product picture?
Well, you're using radio buttons which as I recall isn't in the design to automatically use, but could be added with a little work. If I'm wrong about that there is a setting added to the configuration->attributes section to be able to disable it.
If it is something desired, then changing the attribute option name type to the newly added SBA select (dropdown) option will activate that, but will also change your radio buttons to a dropdown.
Sorry, am busy with something and unable to navigate the code at the moment to further clarify.
How can i hide Customid on product info page, my Customers dont really need to see this on this page?
for starters if i was to use developers tools to search for every instance of customid and copied and pasted in ProductUPC would that work to add a Product UPC?
So there is an admin setting in configure->Stock that opts to display or not display the customid. The customid is whatever data you put into the field, though currently it is set/considered to be a string of some type. The constant associated with this option is:STOCK_SBA_DISPLAY_CUSTOMID.
There are a few places associated with the catalog side where this is used/listed:
includes/classes/observers/class.products_with_attributes_stock.php (2 places, one for the attributes list and one for the customer account history)
includes/templates/YOUR_TEMPLATE/templates/tpl_shopping_cart_default.php (for the shopping cart)
Currently if you want to keep it on for the admin but turn it off for the catalog, then I might suggest (though haven't tried) to modify the code in that area to be something like:
As for searching on the information, I recently saw some incorporated code that would make the customid a part of the search which I was going to incorporate, but hadn't yet. The field just needs to be added in as part of the overall search criteria.Code:false &&
STOCK_SBA_DISPLAY_CUSTOMID == 'true'
this product i use grid on, https://jnsflooringandsupplies.com/i...oducts_id=8205
it has the word Quantity in a weird place, how to remove that and highlite option_name make it look the same as sba basic, or radio ETC.
While this question is better suited in the Products Attribute Grid forum, the answer to the first part is to modify includes\languages\english\extra_definitions\absolute_attribute_grid.php and change:
to:Code:define('TEXT_ATTRIBUTE_GRID_QTY', 'Quantity' );
The second part, could add to the stylesheet.css file somewhere after line one:Code:define('TEXT_ATTRIBUTE_GRID_QTY', '' );
Or adjust as necessary.Code:#attrib-grid-opt-nameV {
font-weight: 600;
}
the dynamic drop down allows checkout when nothing is picked, how do i make it read only, (Please check from below)
Do you have one or more than one option name associated with the product in question?
If one, then suggest going to admin->catalog->option Name Manager, selecting the option name in question, edit, and change the option Type from most likely Dropdown to: SBA Select List (Dropdown) Basic.
If more than one option name then will need more information.