

thadson
-
Content count
42 -
Joined
-
Last visited
-
Hi mhsuffolk,
Could you help me please
Would you be so kind to update First Item $X, Additional Items $Y Shipp for Bootsrap Edge, for PHP 7.1, please?
Or alternatively can you suggest something else that would do the same job?
Thank you,
Thadson
-
-
It seems that there were problems with both files.
in the modules - shipping dir, I had to add a bunch of single quotation marks like
$countries_table = constant(MODULE_SHIPPING_FIRSTPLUSZONES_ZONES_COUNTRIES_ . $i);
to
$countries_table = constant('MODULE_SHIPPING_FIRSTPLUSZONES_ZONES_COUNTRIES_' . $i);
I also had to change the definition of MODULE_SHIPPING_FIRSTPLUSZONES_TEXT_WAY from
define('MODULE_SHIPPING_FIRSTPLUSZONES_TEXT_WAY', '(£%s first item, £%s each additional item)');
to
define('MODULE_SHIPPING_FIRSTPLUSZONES_TEXT_WAY', '($%s first item, $%s each additional item)');
Now it seems to work...
Thank you again for all your help, I appreciate it.
-