Title: Problems after update
Last modified: June 15, 2022

---

# Problems after update

 *  Resolved [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/)
 * Hi,
 * I found few things that are different / could be improved.
 * See attached screenshot:
    [https://ibb.co/4f90tmw](https://ibb.co/4f90tmw)
 * Problem 1: blue color – how to remove that tick/check icon? There were no icon
   in previous version
    Problem 2: red color – attributes in next rows are not aligned
   correctly – they are not starting from same position (there is some margin / 
   padding added to 1st row). Problem is on mobile and desktop Problem 3: styling–
   > variation item selected styling -> selected text color and selected background
   color are replaced.
 * Thank you in advance,
    Adrian
    -  This topic was modified 3 years, 11 months ago by [cometto](https://wordpress.org/support/users/cometto/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblems-after-update-52%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Support [fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * (@fizanzvai)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15742106)
 * [@cometto](https://wordpress.org/support/users/cometto/)
 * We have released a major update after the last version. So, you have to follow
   a couple of options.
 * 1. Take screenshots of all your “Swatches Settings” and then press the “Reset
   All” button
 * 2. Implement back all options comparing the screenshot before pressing the reset
   all button.
 * Please DON’T forget to Take SCREENSHOTS of your Settings. Otherwise, you can 
   get the back option preset option again.
 * Tutorial to reset settings: [https://www.loom.com/share/da5e9308f9d54756b7880fb9acf8ebc3](https://www.loom.com/share/da5e9308f9d54756b7880fb9acf8ebc3)
 * Hopefully, This will help.
 * Thank You`
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15742134)
 * [@fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * Hi,
 * yes, problems happened after update to 2.0.0 (both standard and pro version).
 * I did reset and set all the settings manually before you wrote. Result is on 
   screen which I sent in first post. Did you open it?
 *  [Nabetse](https://wordpress.org/support/users/nabetse/)
 * (@nabetse)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15744192)
 * Hey there!
    I’m using a code snippet to make a custom “quick view products pop
   up” to work. When running the the code inside such snippet the wc_variation_form()
   method is called. It used to work perfect before version 2.0.0; after the update
   the following error logs in the console
 *     ```
       Uncaught TypeError: $(...).find(...).wc_variation_form is not a function
           at Object.success
       ```
   
 * The error only triggers on pages that are not product pages. Due to such issue
   I had to version roll back.
 * Do you have any clue about how to approach this issue?
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15748575)
 * [@fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * ?
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15749151)
 * [@fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * problems stil exist in lastest version
 *  Plugin Support [fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * (@fizanzvai)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15771229)
 * [@cometto](https://wordpress.org/support/users/cometto/) [@nabetse](https://wordpress.org/support/users/nabetse/)
 * Have you tried the latest version?
    If it’s not fixed, try the following code.
 *     ```
       add_filter( 'woo_variation_swatches_global_ajax_variation_threshold_max', 'woo_variation_swatches_global_ajax_variation_threshold_max_edit', 10, 2 );
       function woo_variation_swatches_global_ajax_variation_threshold_max_edit( $size, $product ){
       	return 700;
       }
       ```
   
 * Thank You
    -  This reply was modified 3 years, 10 months ago by [fizanzvai](https://wordpress.org/support/users/fizanzvai/).
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15776074)
 * [@fizanzvai](https://wordpress.org/support/users/fizanzvai/)
 * Hi,
 * I updated plugin to latest version and there is still a problem with row align
   for 2nd and next ones.
 * Please, see it here:
    [https://liveflooring.com/produkt/plyta-gumowa-proflex-sbr/](https://liveflooring.com/produkt/plyta-gumowa-proflex-sbr/)
 * I also tried to apply code you post but without result
 *  [wpforce](https://wordpress.org/support/users/wpforce/)
 * (@wpforce)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780557)
 * Hi [@cometto](https://wordpress.org/support/users/cometto/)
 * Please place the below css at **Appearance > Customize > Additional CSS**
 *     ```
       .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):first-child {
           margin-left: 4px;
       }
       .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):last-child {
           margin-right: 4px;
       }
       ```
   
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780614)
 * [@wpforce](https://wordpress.org/support/users/wpforce/)
 * Hi,
    thank you for answer.
 * Could you make reverse version of this css? I mean now 1st row is slighly moved
   to the right. I would like to make it stay as it is and move 2nd and next rows
   to the left.
 * Could you help?
 *  [wpforce](https://wordpress.org/support/users/wpforce/)
 * (@wpforce)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780653)
 * [@cometto](https://wordpress.org/support/users/cometto/)
 * Replace the above CSS with the below CSS-
 *     ```
       .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
           margin: 4px 8px 4px 0;
       }
       ```
   
 * Then check if it works or not.
 *  Thread Starter [cometto](https://wordpress.org/support/users/cometto/)
 * (@cometto)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780698)
 * [@wpforce](https://wordpress.org/support/users/wpforce/)
 * Thank you man! Big beer for you
 *  [wpforce](https://wordpress.org/support/users/wpforce/)
 * (@wpforce)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780763)
 * Glad to know it helps.
 * We should inspire the plugin author by giving them some good words.
 * You can share [some good words here](https://wordpress.org/support/plugin/woo-variation-swatches/reviews/).

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

The topic ‘Problems after update’ is closed to new replies.

 * ![](https://ps.w.org/woo-variation-swatches/assets/icon-256x256.gif?rev=3157951)
 * [Variation Swatches for WooCommerce](https://wordpress.org/plugins/woo-variation-swatches/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-variation-swatches/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-variation-swatches/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-variation-swatches/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-variation-swatches/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-variation-swatches/reviews/)

 * 12 replies
 * 4 participants
 * Last reply from: [wpforce](https://wordpress.org/support/users/wpforce/)
 * Last activity: [3 years, 10 months ago](https://wordpress.org/support/topic/problems-after-update-52/#post-15780763)
 * Status: resolved