• Resolved cometto

    (@cometto)


    Hi,

    I found few things that are different / could be improved.

    See attached screenshot:
    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 2 years, 9 months ago by cometto.

    The page I need help with: [log in to see the link]

Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Support fizanzvai

    (@fizanzvai)

    @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

    Hopefully, This will help.

    Thank You`

    Thread Starter cometto

    (@cometto)

    @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?

    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

    (@cometto)

    Thread Starter cometto

    (@cometto)

    @fizanzvai

    problems stil exist in lastest version

    Plugin Support fizanzvai

    (@fizanzvai)

    @cometto @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 2 years, 8 months ago by fizanzvai.
    Thread Starter cometto

    (@cometto)

    @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/

    I also tried to apply code you post but without result

    Hi @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

    (@cometto)

    @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?

    @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

    (@cometto)

    @wpforce

    Thank you man! Big beer for you

    Glad to know it helps.

    We should inspire the plugin author by giving them some good words.

    You can share some good words here.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Problems after update’ is closed to new replies.