• Resolved patjepony

    (@patjepony)


    Hi!

    Since a short time I’m getting Undefined property: wpdb::$woocommerce_termmeta errors on my product pages. I’m trying to figure out what the problem is, but no luck so far.

    https://theponybusiness.com/product/kitchen-accessory-parts/

    Is there someone who can point me in the right direction, or has some advise on the issue?

    This is the code that corresponding to the the error line:
    /**
    * Makes private properties readable for backward compatibility.
    *
    * @since 3.5.0
    *
    * @param string $name The private member to get, and optionally process
    * @return mixed The private member
    */
    public function __get( $name ) {
    if ( ‘col_info’ === $name )
    $this->load_col_info();

    return $this->$name;
    }

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Your theme is Storefront v1.6.1 but its moved on and the current version is v2.1.5, so consider updating to get all the recent fixes. Take a backup first.

    Thread Starter patjepony

    (@patjepony)

    I just updated the theme, but the message is still on the pages.

    OK. I’ve setup my dev site with Storefront v2.1.5 and WC v2.6.7 and I don’t get this problem, so its probably due to one of your plugins.

    Start debugging by deleting all cached pages in WP-Super-Cache and leave it deactivated until the problem is fixed.

    Then deactivate all your plugins except WooCommerce. If the problem resolves, reactivate your plugins one-by-one and check to try to identify which one is causing the problem.

    If you get stuck, you could mask the notices with:
    define(‘WP_DEBUG’, false); (currently you have it set to true)
    in wp-config.php

    Thread Starter patjepony

    (@patjepony)

    Found the plugin that creates the problem, I’m going to contact the developer. Thank you for your help! ??

    akiddo

    (@akiddo)

    @patjepony, May I know what plugin that you are using causing the problem??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Undefined property: wpdb::$woocommerce_termmeta’ is closed to new replies.