Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Bootstrap 4 upgrade breaks all forms on Dashboard mobile view

WCMp Stripe Marketplace

Resolved
Viewing 2 reply threads
  • Author
    Posts
    • #117414
      pyarana
      Participant

      I can work with rest of the Dashboard template but for Stripe the output is hard coded in the WCMp_Stripe_Marketplace_Custom_Connect for external account. The issue is that with Bootstrap 4, we do not have horizontal-form class and need to use “row” class in the form-group. Also, to make it work and responsive for small devide we need to use col-xs-12.
      For exmaple:
      <div class=”

      form-group
      Copy

      “>
      <label for=”business_address” class=”control-label

      col-sm-3 col-md-3
      Copy

      “><?php _e(‘Legal Entity Address’, ‘wcmp-stripe-marketplace’); ?></label>
      <div class=”

      col-md-6 col-sm-9
      Copy

      “>
      :
      :
      :
      </div>
      </div>
      </div>

      Should change to….

      <div class=”

      form-group row
      Copy

      “>
      <label for=”business_address” class=”control-label

      col-xs-12 col-sm-3 col-md-3
      Copy

      “><?php _e(‘Legal Entity Address’, ‘wcmp-stripe-marketplace’); ?></label>
      <div class=”

      col-xs-12 col-md-6 col-sm-9
      Copy

      “>
      :
      :
      :
      </div>
      </div>
      </div>

      It will be great if you can update the same in next release… as I had to change the plugin itself to make the change.

      Thanks,
      Hans

    • #117451

      Hello,

      Thank you for the suggestion. We will forward this to our team and will add it in our next update.

    • #121655

      Hi, this issue was fixed in our cersion 3.7.0

Viewing 2 reply threads

The topic ‘Bootstrap 4 upgrade breaks all forms on Dashboard mobile view’ is closed to new replies.