Forum Replies Created

Viewing 1 replies (of 1 total)
  • Looking forward to seeing this fixed as well. For me, the issue is tag type and value select boxes being broken after WordPress 5.5. update. I came up with the following fix until the author updates the plugin:

    mtm-builder.php

    Find:

    $html .= '<option'.$selected_attr.'>'.esc_html($option).'</option>';

    Replace:

    $html .= '<option value="'.esc_attr($option).'"'.$selected_attr.'>'.esc_html($option).'</option>';

Viewing 1 replies (of 1 total)