... continued ...
May want to try re-installing one step at a time. If problems persist please tell us how your store differs from a stock Zen Cart installation including full version numbers of all plugins.
How were attributes populated? How were the attributes assigned to the products? Have any modifications been made to your store which alter the handling of attributes?
Another thing to check is whether a previously-installed plugin has "killed" some of the built-in attributes configuration; see this post: http://www.zen-cart.com/showthread.p...ag-not-working
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Hi,
I'm using Zen Cart 1.5 and I'm having an issue with Edit Orders (v.4.1.2) and the module Order Total.
Here's the problem, when I edit an order (example add a product) Edit Orders recalcul my tax in a wrong way.
Here what I'm having before the update :
And what happend after the update :
Any idea how to resolve that ? I'm at your disposal if you need more information. Thank you in advance for your answer.
Small defect in comment handling - if no other changes are made, comments are not saved. Fix for version 4.1.2 is in admin/edit_orders.php line 147 - add a check of $comments to the conditional clause:
Code:if(($check_status->fields['orders_status'] != $status) || zen_not_null($track_id) || zen_not_null($comments)) {
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Yup, that change is already integrated in the next version (still beta). The posted comment fix and the fix for fractional quantities are falling a bit behind in this thread!
Hoping to find time to at least look into passing through upload attributes (not full support) before the next release...
Defects in handling attributes which are grids: If you use Absolute's Product Attributes Grid module
http://www.zen-cart.com/downloads.php?do=file&id=618
You need to make two changes in admin/edit_orders.php. Search in that file for PRODUCTS_OPTIONS_TYPE_SELECT:
Right after it, add the line
case 23997: // GRID
So you'll have
Line numbers for Edit Orders 4.1.2 are 895 and 1474.Code:case PRODUCTS_OPTIONS_TYPE_SELECT: case 23997: // GRID
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.