golden hour
/home/godaofbq/drhyperbaric.com/wp-content/plugins/elementor-pro/modules/woocommerce/data/endpoints
⬆️ Go Up
Upload
File/Folder
Size
Actions
base-endpoint.php
497 B
Del
OK
get-notice-dismissed.php
945 B
Del
OK
set-notice-dismissed.php
1.3 KB
Del
OK
Edit: base-endpoint.php
<?php namespace ElementorPro\Modules\Woocommerce\Data\Endpoints; use Elementor\Data\Base\Endpoint; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Base_Endpoint extends Endpoint { const IS_CART_NOTICE_DISMISSED = 'is_custom_wc_cart_notice_dismissed'; public function get_name() : string {} public function get_route() : string { return $this->get_name(); } protected function permission_callback(): bool { return current_user_can( 'edit_posts' ); } }
Save