• You have a bunch of unclosed H3 tags in the breaks area:

    booking-ultra-pro/classes/bookingultra.break.php

    in the “function public function get_staff_breaks”

    please consider the following type of code change:

    $html .='<div class="bup-break-details-header" widget-id="1"><h3> '.__('Monday','bookingup').'<h3>';
    
    $html .='<span class="bup-breaks-add" id="bup-widgets-icon-close-open-id-1"  day-id="1" >'.__('Add Break','bookingup').'</span>';

    to

    $html .='<div class="bup-break-details-header" widget-id="1"><h3> '.__('Monday','bookingup').' - ';
    
    $html .='<span class="bup-breaks-add" id="bup-widgets-icon-close-open-id-1"  day-id="1" >'.__('Add Break','bookingup').'</span></h3>';

    https://ww.wp.xz.cn/plugins/booking-ultra-pro/

The topic ‘BUG: Unproperly formatted HTML’ is closed to new replies.