Viewing 7 reply threads
You must be logged in to reply to this topic.
Hello
My homepage was ok till I upgrade the theme, now it show a right column and move all to the left
Hello,
Please go to the page’s settings and make sure the layout is set to fullwidth.
If you can not manage, send us some valid wp credentials in a private reply. So we can give it a closer look.
Best regards!
This is an issue with the last update:
Please make this fix:
Replace these lines on functions.php
From 1930 to 1933 with:
$nr = count($value);
if( is_array( $value ) && ( count( $value ) == 1 || ( count($value) >= 2 && $value[0] == $value[1] ) ) )
$return = $value[$nr-1];
Sorry for this inconvenience, I will update the theme as soon as possible again
For PHP 7.2 you should check if $value is an array first:
if (is_array($value))
$nr = count($value);
You must be logged in to reply to this topic.