• Resolved pim87

    (@pim87)


    Just got this error on a website that I manage:

    Error: Uncaught TypeError: Unsupported operand types: string * string in /wp-content/plugins/bold-page-builder/content_elements/bt_bb_latest_posts/bt_bb_latest_posts.php:65

    I managed to fix it by changing line 65 in the file bold-page-builder/content_elements/bt_bb_latest_posts/bt_bb_latest_posts.php to this, maybe you could add this change on the next update of the plugin?

    Old:
    $number = $rows * $columns;
    
    New:
    $number = (int)$rows * (int)$columns;
Viewing 1 replies (of 1 total)
  • Plugin Author boldthemes

    (@boldthemes)

    Hi @pim87,

    Could you please confirm us if you are also using one of our premium themes? In that case make sure to have the latest theme and plugins updates. If the issue still persists than please write us on: https://boldthemes.ticksy.com/

Viewing 1 replies (of 1 total)
  • The topic ‘PHP error: Uncaught TypeError’ is closed to new replies.