Hello there, There is an error triggered when using an element “Post naviation” :
Notice: Undefined variable: pagination_numbered_hide in
/wp-content/themes/pro/cornerstone/includes/views/partials/pagination.php
on line 103
because the variable $pagination_numbered_hide is tested but is not provided by the styling options (as documented in https://theme.co/docs/pagination#post-navigation, some styling options don’t exist in this element)
Solution is to check if the variable is set :
if ( isset($pagination_numbered_hide) && $pagination_numbered_hide !== ‘xl’ && $pagination_numbered_hide !== ‘none’) {
Can it be fix in a futur release ? It keep popping up on my debug.log when i’m using it and debugging.
Thanks !