First, don't shoot me, I'm just trying to get answers.
Storeowner has someone that updates price changes directly into the price and cost fields in Table s01_Products using an SQL statement (to ONLY update the price and cost fields in Table s01_Products). This method seemed to work without incident until something changed. I suspect it was when the use of Price Groups Sale Price was added.
My suspicions come from how the products that have been updated with the direct method now appear on the product page.
This snippet is used to display the products on Sale:
Every product that has been updated with the direct method display the new "updated" price as the List Price and the old price as "Our Price". If you add the product to the cart the "List Price" displays.
If you look at the product in the product's admin, the updated price is in the Product Price field and nothing is displaying in the Sale Price field as the product has not been assigned to the Price Group to enable the field.
I suspect a "relationship" has not been made with the product and some other field in the Table but I also have to ask if anything may have changed during a recent update that could be causing this behavior.
Storeowner has someone that updates price changes directly into the price and cost fields in Table s01_Products using an SQL statement (to ONLY update the price and cost fields in Table s01_Products). This method seemed to work without incident until something changed. I suspect it was when the use of Price Groups Sale Price was added.
My suspicions come from how the products that have been updated with the direct method now appear on the product page.
This snippet is used to display the products on Sale:
Code:
<mvt:if expr="l.settings:product:base_price GT l.settings:product:price"> <p>List Price: <span id="price-value-additional" class="bold" style="text-decoration: line-through"> &mvt:product:formatted_base_price;</span> </mvt:if><span id="price-value" class="bold">Our Price: &mvt:product:formatted_price;</span></p>
If you look at the product in the product's admin, the updated price is in the Product Price field and nothing is displaying in the Sale Price field as the product has not been assigned to the Price Group to enable the field.
I suspect a "relationship" has not been made with the product and some other field in the Table but I also have to ask if anything may have changed during a recent update that could be causing this behavior.
Comment