0

https://code.elementor.com/methods/elementor-widget_base-_register_skins/

protected function _register_skins() { $this->add_skin( new Skin_Classic( $this ) ); }

If I just add this code, an error appears. There has been a critical error on your website. Please check your site admin email email inbox for instructions.

Help me write a code for my widget skins.

wasterel
  • 43
  • 5

1 Answers1

0

_register_skins is a protected function

That means you cannot call it.

What is the difference between public, private, and protected?

I hope this helps

Best, Kaz