jcdpromo
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Composite Products for WooCommerce] Problem with CartWe are also having this issue where composite products are added to the cart and the cart shows 0 quantity and you can’t continue your purchase. We have double checked our settings/configurations, and also installed the WPC AJAX Add to Cart plugin, but it has not fixed the issue. Do you have any further updates on how this can be resolved?
@davidanderson Thank you. I was not aware that various other plugins used the same library. I will look into that.
After doing more troubleshooting, it appears that there is some missing communication between the Phone Orders for WooCommerce (Pro) plugin by AlgolPlus and the WPC Composite Products for WooCommerce plugin. I tested the plugin in 2 environments: the current production environment at victoryglass.com and a dev environment for another WooCommerce site we test in. When ordering the product through the site as normal, the product quantities reduce as they are expected to (in both environments), but when an order is placed through the Phone Orders interface, the stock reduction doesn’t happen (again in both environments). I suspect you will tell me I need to reach out to the Phone Orders plugin developers but I just wanted to send a follow-up in case others experience the same issue. (Also – in order to see the composite products in the Phone Orders interface, additional snippets of code need to be added to the functions.php file.)
Forum: Themes and Templates
In reply to: [Fruitful] Fruitful shortcodes update errorIn the shortcodes.php file, go to the line that it lists as having the error. It should read:
if( empty(get_the_excerpt()) ) {
If you are using a PHP version prior to 5.5 (from what I’m experiencing), change that line to:
if(get_the_excerpt()== false) {
This brought my site back removing the error.