It's the right file.
Q1. Where in the code are you placing your additions?
Q2. Have you verified that the check for the customerID is matching? (I suggest changing
if (strstr($_SESSION['customers_id'],'3739')){
to
if (!strstr($_SESSION['customers_id'],'3739')){
.... This will/should cause the *opposite* to what you want... In other words if the code is working it will disable COD for everyone except customer with the id '3739'
This will verify that the toggle/switch itself is working, which in turn means there is something not working with your customerID check.
Cheers
RodG



Reply With Quote
