Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jcdpromo

    (@jcdpromo)

    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.)

    In 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.

Viewing 2 replies - 1 through 2 (of 2 total)