PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.2
Elementor Website Builder – more than just a page builder v4.2.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / core / debug / classes / shop-page-edit.php

shop-page-edit.php in Elementor Website Builder – more than just a page builder 4.2.2, at core/debug/classes/shop-page-edit.php

26 lines 709 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Debug\Classes;
3
4 class Shop_Page_Edit extends Inspection_Base {
5
6 public function run() {
7 return false;
8 }
9
10 public function get_name() {
11 return 'shop-page-edit';
12 }
13
14 public function get_message() {
15 return esc_html__( 'You are trying to edit the Shop Page although it is a Product Archive. Use the Theme Builder to create your Shop Archive template instead', 'elementor' );
16 }
17
18 public function get_help_doc_url() {
19 return 'https://elementor.com/help/the-content-area-was-not-found-error/#error-appears-on-woocommerce-pages';
20 }
21
22 public function get_header_message() {
23 return esc_html__( 'Sorry, The content area was not been found on your page', 'elementor' );
24 }
25 }
26