Home Forums WoodMart support forum Enterrise multi-site implementation

Enterrise multi-site implementation

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #108797

    WizzlePRO
    Participant

    Hello Support,

    Firstly, I would like to congratulate you on the platform you have created it truly is a top tier product. I have few few questions related to the theme and how to accomplish a few things. Please see below:
    How does the newsletter modal fire in the header?
    * Just wondering incase I would like to do it else where on this site.
    How would I move the modal to inside of modal?
    * I’ve adjusted the CSS; I just need the button above woodmart-popup-inner div.
    How can I remove the hover over cart icon?
    * I want it to just say SELECT OPTIONS or ADD TO CART

    #108841

    Hello,

    Thank you for feedback.

    The popup you see just having visited the site is enabled/disabled in the Theme Settings > Shop > Promo popup. The content for the popup is generated in the HTML blocks https://xtemos.com/docs/woodmart/html-blocks-2/

    The WP Bakery page building chart has a popup element https://xtemos.com/docs/woodmart/shortcodes-2/ and demo https://woodmart.xtemos.com/button-with-popup/ You can add as manu popups to the header or other parts of the site as you need by means of HTML blocks, please refer to the Application part https://xtemos.com/docs/woodmart/html-blocks-2/

    Best Regards

    #108944

    WizzlePRO
    Participant

    I apologize for the confusion I was a little tired when writing this last topic.

    Not Answered
    How can I remove the hover over cart icon?
    * I want it to just say “SELECT OPTIONS” or “ADD TO CART” no cart icon on hover?

    I didn’t type out completely what I meant
    How would I move the Modal Escape X to inside of the modal, instead of the fixed top corner position of the viewport?
    * I’ve adjusted the CSS; I just need the button above woodmart-popup-inner div.

    Also no response to my private content of the topic?

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

    WizzlePRO
    Participant

    Here are smaller files

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

    Hello,

    1. Please add this code to remove the hover effect over the cart icon:

    body .woodmart-hover-standard .btn-add>a:hover span:not(.woodmart-tooltip-label),
    body .woodmart-hover-standard .btn-add>a:focus span:not(.woodmart-tooltip-label){
    	-webkit-transform: translateY(0) translateZ(0);
       transform: translateY(0) translateZ(0);
    }
    
    body .woodmart-hover-standard .btn-add>a span:not(.woodmart-tooltip-label) {
    	transition: all .2s ease;
    }
    
    body .woodmart-hover-standard .btn-add>a:hover span:not(.woodmart-tooltip-label),
    body .woodmart-hover-standard .btn-add>a:focus span:not(.woodmart-tooltip-label){
    	color: white;
    	background-color: #a24495;
    	border-color: #a24495;
    }

    2. Please add this code to move the close button inside:

    .mfp-wrap .woodmart-promo-popup {
    	position: relative;
    }
    
    body #cboxClose, 
    body .full-screen-close-icon, 
    body button.mfp-close {
    	position: absolute;
    }

    Best Regards

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