• Resolved dipakparmar2007

    (@dipakparmar2007)


    Hello,

    You need to add this type of code for. After add this type then automatically resolve this type of error notice.

    Before:

    public static function get_transient_name( $id ) {
    return Commerce::ABBR . '-cart-' . md5( $id );
    }

    After fix this issue:

    public static function get_transient_name( $id ) {

    if ($id !== null) {
    return Commerce::ABBR . '-cart-' . md5( $id );
    } else {
    return Commerce::ABBR . '-cart-' . md5('');
    }

    }

    Thanks!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @dipakparmar2007,

    Thanks for taking the time to post about this issue and for sending us a proposed fix!

    Our developers have included a fix for this issue in releases that are slated to come out later this month.

    Thanks so much!
    John

    Thread Starter dipakparmar2007

    (@dipakparmar2007)

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$id is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 342

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$email is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 343

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$domain is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 347

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$id is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 342

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$email is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 343

    Deprecated: Creation of dynamic property Tribe\Events\Virtual\Meetings\Zoom\Api::$domain is deprecated in /wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Integrations/Abstract_Account_Api.php on line 347

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘PHP 8.2 and Deprecation notices’ is closed to new replies.