Getting a PHP warning for Illegal string offset ‘url’
-
Created a loop template using the Flip box widget and a dynamic url for the link. Getting:
Warning
: Illegal string offset ‘url’ in
…..wp-content/plugins/elementor/includes/base/controls-stack.php
on line 1177I’ve used other Flip box widgets elsewhere outside of Skin and work fine. Seems to only happen when using a look template.
I have found the following fix:
if ( $dynamic_property ) ) {
to
if ( $dynamic_property && isset($settings[ $control_name ][ $dynamic_property ]) ) {however that fix is only temporary as I need to hack elementor’s code and I’ll loose the changes with elementor updates.
Any permanent fixes for this?
The topic ‘Getting a PHP warning for Illegal string offset ‘url’’ is closed to new replies.