Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author FMEAddons

    (@fmeaddons)

    Hi, sorry to hear that you have facing issues with our module, we have fixed the issue that you pointed, you can download new package. or if you want to changes in existing code then in

    admin/class-fme-product-custom-options-admin.php around line 123 find

    foreach (sanitize_text_field($product_option['row_value']) as $row_value) {

    and replace with

    foreach ($product_option['row_value'] as $row_value) {

    and on line 161 find

    foreach (sanitize_text_field($product_option['row_value']) as $row_value) {
    and replace with
    foreach ($product_option['row_value'] as $row_value) {

    these sanitize_text_field() were added mistakenly so remove that because we are doing sensitization on each entry level.

    Thread Starter Ashar Irfan

    (@mrasharirfan)

    Thank you so much!
    The plugin is now working.

    Regards,
    Ashar

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Drop-down and Multi Select are not working’ is closed to new replies.