
Originally Posted by
Nick1973
Noting, too, that there's a change in the zc158 branch that enables these settings to be 'controlled' without core-file-carving:
Code:
// To override these values, create a file in admin/includes/extra_configures
if (!isset($quick_view_popover_enabled)) $quick_view_popover_enabled = false;
if (!isset($includeAttributesInProductDetailRows)) $includeAttributesInProductDetailRows = true;
I'll suggest making the modifications to the zc157 version to include the above and then create /admin/includes/extra_configures/site_specific_overrides.php that contains
Code:
<?php
$quick_view_popover_enabled = false;
$includeAttributesInProductDetailRows = false;
That'll save you a world-of-hurt when upgrading to zc158. As always, comment the heck out of the changes so that you (or your successor) have a clue as to what was done!
Bookmarks