You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Pages: 1
Can I add additional selections and icons for Product Offer Highlights? If so would this be an "includes" file or added through the Admin interface?
Product Offer Highlights
Select highlights to display as icons with informative tips when this product offer is displayed. These hightlights will be presented with the offer description.
Package Deal
Custom Package
Free Shipping
Thank you
Offline
You can custom override the {private}/apps/ecom/ECOM/includes/icondisp.php include to add new icons. Please be aware that include generates icons for categories, category lists, product offers, and product lists.
Offline
Are these icons images that are stored somewhere or a font type? Is it important that the icon that I add perform a function or can it just be displayed with products I want to highlight as being part of a certain promotion? My thought is to add an icon that can be a little bigger perhaps banner-shaped to stand out more. A bonus would be if I could slightly overlay the product image area even bleeding outside of it some. I know.... I know.... call me crazy. My wife does all the time.
Offline
All icons used by the platform are stored in a single sprite at {public}/media/skins/images/full-sprite.png. There is an uncompressed version of that file in the same directory named full-sprite.nomin.png that you should use as your source file to add new icons. Just add them to the empty slots at the bottom of the file. The left side icons are dark, the right side are the inverse (light).
It would be best for you to copy the sprite into your skin's media directory, then use a CSS override in your skin's all.min.css file to pull the icons from your skin's version of the file. Here's what you should put in your skin's CSS file if you put the sprite in your skin's media directory:
.kicon, .kbannercontl, .kbannercontr, .kmodalclose, .kslidecontl, .kslidecontr {background-image: url('../media/full-sprite.png');}
The same methodology should be used to change icon colors, or change the images used for icons.
Offline
Pages: 1