Home Forums WoodMart support forum Loader only loading when click on compare link

Loader only loading when click on compare link

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #32708

    Haresh
    Participant

    Hello,

    I don’t want to show the popup when I click on compare link on shop page and single product page. so I have unchecked “Open automatically lightbox” option from plugin settings.

    After this when I click on compare link on shop page and single product page, the loader is only loading.

    Any help will be appreciated.

    Thanks in advance!

    Attachments:
    You must be logged in to view attached files.
    #32751

    Artem Temos
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .woodmart-buttons > div a.loading.added:after{
        opacity: 0;
    }
    .woodmart-buttons > div a.loading.added:before {
       opacity: 1;
    }

    Regards

    #32760

    Haresh
    Participant

    Hello,

    Sorry, it is not working. I had put the code snippet to the Custom CSS area in Theme Settings but still, it is not working. Can you please check my admin panel, in which I had put the code is correct?

    #32762

    Artem Temos
    Keymaster

    Please, provide us your admin access because we don’t see this code added to the custom CSS area.

    #32772

    Haresh
    Participant

    Hello,

    Ohh sorry, i forgot to mention admin credentials.

    #32780

    Eric Watson
    Participant

    Hello,

    Replace with this code

    .product-compare-button a.loading.added:after{
        opacity: 0;
    }
    .product-compare-button a.loading.added:before {
       opacity: 1;
    }
    

    Kind Regards
    XTemos Studio

    #32782

    Haresh
    Participant

    Hello,

    It is working only on the Shop page, not on the single product page. Please check my below link.

    #32784

    Eric Watson
    Participant

    Sorry, try to replace with this code

    .product-compare-button a.loading.added:after,
    .single-product .compare-btn-wrapper a.loading.added:after{
        opacity: 0;
    }
    .product-compare-button a.loading.added:before,
    .single-product .compare-btn-wrapper a.loading.added:before{
       opacity: 1;
    }
    #32786

    Haresh
    Participant

    Hi,

    Now it is working fine.

    Thank you so much…

    #32789

    Artem Temos
    Keymaster

    You are welcome!

Viewing 10 posts - 1 through 10 (of 10 total)

The topic ‘Loader only loading when click on compare link’ is closed to new replies.