Kryptronic Software Support Forum

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.

#1 12-20-2016 10:58:17

juanstg
Member
From: Evansville, IN
Registered: 02-26-2010
Posts: 78

Product Multi-Add Indicator

The Product Multi-Add Indicator does not seem to be an option.  This is pretty vital to our store, see example links below. 

Also looking at this I found that the importer did not bring over our added columns for the ecom_prod table.  These were set up to cover the columns "Diagram ID" & "# Required per application" displayed in the Current Site link. 

Surely there are others out there that have custom columns either in their products or categories.

Speaking of the display.  I know there was a way to change the category image to show up larger.  Pretty sure I posted this question a few versions ago, I just haven't had time to look into it and the solution may be different now.

Current Site Example: http://www.golfcartpartsdirect.com/Category/373

V9 Example:  http://golfcartpartsdirect.com/v9/index … mp;ref=373



Offline

 

#2 12-21-2016 00:52:12

zanart
Member
From: bedford
Registered: 04-02-2008
Posts: 1706

Re: Product Multi-Add Indicator

Is the product multi add now the Category Feature Grid?
Go to  Dashboard / Store / Catalog / Categories then click Displays and change the Subcategory and Item Displays*

Re the extra columns in the prod table, I don't think you should expect the importer to import non standard tables and columns. You would need to export the database, add the new columns and import it.

The category image size is set at 20% of the content div. To increase the image size you would need to locate and edit the code of the category display include. This would probably be the catshow.php file in the ECOM/includes. change the kgridxcol20 to kgridxcol30 and the kgridxcol80 to kgridxcol70. This would mean the image is 30% of the content width.


Rob

Offline

 

#3 12-21-2016 08:11:04

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Product Multi-Add Indicator


The category feature grid with ajax add to cart modals replaces multi-add nicely:  Access Store / Catalog / Categories, Update category and in the Display tab choose 'Category Feature Grid' for the 'Subcategory and Item Displays' field.  Example:

https://kryptronic.com/DEV/public/Category/Guitars

Or if you want a true multi-add of like inventory items: access Store / Catalog / Product Offers, create a new offer. In the Configure - All Types tab choose 'Inventory Item(s)' as the 'Offer Type', add all items in the Inventory Item(s) section in the same tab, and in the Configure - Inventory Offers tab, choose 'Quantity Inputs for Each Inventory Item (Muti-Add)' for the 'Inventory Item(s): Multiple Item Display Type' selection field.  Example:

https://kryptronic.com/DEV/public/Item/ … tion-Pedal


If you want the importer to grab your data in your extra V8 columns, access System / Database / Raw Database Admin and maintain the ecom_prod table.  Add the columns there that you added in V8 with exactly the same column names.  Run the importer again.  The data will be there.


Please don't edit display includes any more for display changes, if there isn't a language or logic change, that is.  Take a look at the source of the page.  You can easily handle this in your skin with CSS.  You'll likely want to do something like this in your skin's all.css, which changes those sizes when in mid and full views (you'll notice it's stacked by default in thin view):

Code:

@media all and (min-width: 600px) {.kcatshowleft {width: 40%;} .kcatshowright {width: 60%;}}

Nick Hendler

Offline

 

#4 01-19-2017 16:49:59

juanstg
Member
From: Evansville, IN
Registered: 02-26-2010
Posts: 78

Re: Product Multi-Add Indicator

Okay, I got the Display like I want it.  I added two lines of code to catfeatgrid.php

Code:

//custom code
          print '<th class="kcatfeatgriditem">Diagram ID</th>' . $eol;
//end custom code
          
          print '<th class="kcatfeatgriditem">Item</th>' . $eol;
          
//custom code
               print '<th class="kcatfeatgriditem" align="center"># Required per application</th>' . $eol;
//end custom code

Now everything I try ends with no result or very horribly when trying to get the data in these columns.  The data comes from the extra columns referenced in original post (named "golfdiagid" & golfnumreq" Maybe I'm focusing to hard. 

Current Site Example: http://www.golfcartpartsdirect.com/Category/373

v9: http://golfcartpartsdirect.com/v9/index … mp;ref=373

Last edited by juanstg (01-19-2017 22:22:38)



Offline

 

#5 01-20-2017 02:35:30

zanart
Member
From: bedford
Registered: 04-02-2008
Posts: 1706

Re: Product Multi-Add Indicator

you will need to check the number of columns in the table, and check each row has the correct number of columns.

Check out the problems on your site here:
https://validator.w3.org/nu/?doc=http%3 … 6ref%3D373


Rob

Offline

 

#6 01-20-2017 08:32:39

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Product Multi-Add Indicator

You skipped the item name/description column as well as the feature grid data columns in the main portion of your display.  Maybe more.  The table header looks OK.


Nick Hendler

Offline

 

Board footer