Add Static Blocks - by Tagbag - on WordPress WooCommerce support

This topic has 13 replies, 2 voices, and was last updated 7 years, 3 months ago ago by Rose Tyler

  • Avatar: Tagbag
    Tagbag
    Participant
    April 4, 2018 at 12:59

    Hey,

    I have some questions again ๐Ÿ™‚
    Would be glad if you can help.

    The contact form on my page looks like this:
    my contact-form

    The theme preview looks like this:
    theme preview - contact form

    can you give me the correct code for the contact form or can u add it on my website, pls?

    Can you also add the static block from the electronics-themes newsletter pls?
    electronic - newsletter
    dark - shop sidebar

    You would find my access data in private content.

    Regards

    Please, contact administrator
    for this information.
    12 Answers
    Avatar: Tagbag
    Tagbag
    Participant
    April 4, 2018 at 13:01

    Can you also please add the last image with the static block on the shop sidebar?

    I forgot to ask that in the first post^^

    The WPML plugin for translation is not included in the xstore package, right? I would have to buy it?

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 4, 2018 at 14:59

    Hello,

    1.

    <div class="form-group">
    <p><label>Your Name (required)</label>
       [text* your-name]</p>
    <p><label>Your Surname (required)</label>
       [text* your-name]</p>
    </div>
    
    <div class="form-group">
    <p><label>Your Email (required)</label>
       [email* your-email]</p>
    <p><label>Website</label>
       [text text-389]</p>
    </div>
    
    <p>
       <label>Your Message</label>
       [textarea your-message]
    </p>
    
    <p>[submit "Send message"]</p>

    2. Please see screnhots http://prntscr.com/j0rol8 http://prntscr.com/j0ros4
    Iโ€™ve created โ€œNewsletter electronicsโ€ static block on your site.
    Please read how to create form https://www.8theme.com/documentation/xstore/plugins/mail-chimp-form-custom-styles/
    3. Please check now.
    4. Yes, if you want to create the multilingual site you can use either WPML plugin (paid plugin) or Polylang, qTranslate (free plugins).
    Follow plugin documentation if you chose Polylang https://polylang.wordpress.com/documentation/

    Regards

    Avatar: Tagbag
    Tagbag
    Participant
    April 4, 2018 at 16:51

    Hey,

    Thank you! You are great!

    Can you also tell me, how i can change the color of the border (are there any attitudes?):

    border-1
    border-2

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 5, 2018 at 07:23

    Hello,

    Youโ€™re welcome!
    http://prntscr.com/j13e5y

    .my-account-link ul {
        border-color: #1a1a1a;
    }

    http://prntscr.com/j13ec0

    Regards

    Avatar: Tagbag
    Tagbag
    Participant
    April 5, 2018 at 08:19

    Thank you!

    Can you also tell me why my header has more padding on the homepage?
    header-homepage

    normally he looks like this:
    header-normal

    And maybe you have a solution that if I go on account and then on the drop down menu that it closes on its own? The mouse pointer does not seem to be on the drop-down over time
    user experience

    Regards

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 5, 2018 at 08:34

    1.

    .breadcrumbs-type-disable.et-header-not-overlap:not(.home) .header-wrapper {
        margin-bottom: 0px;
    }

    2.

    .header .navbar-header .my-account-link a:after {
        content: '';
        display: block;
        height: 30px;
        position: absolute;
        top: 100%;
        width: 50px;
        left: -50%;
    }

    Regards

    Avatar: Tagbag
    Tagbag
    Participant
    April 5, 2018 at 09:23

    is it also possible to put the โ€œinkl. Mwstโ€ below the price?
    change order

    and you can hover over the navigation point โ€œShopโ€, pls. The mouse pointer is not always recognized on the link. I think it has something to do with the mega-menu. Sorry, if I can not explain my problem well enough.
    Do you have a solution for this problem?
    nav

    Regards ๐Ÿ™‚

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 5, 2018 at 10:01

    1. Please add this code in Theme Options > Styling > Custom css > Custom CSS for desktop:

    .single-product .fixed-content {
        display:  -webkit-box;
        display:  -webkit-flex;
        display:  -ms-flexbox;
        display:  flex;
        -webkit-box-orient:  vertical;
        -webkit-box-direction:  normal;
        -webkit-flex-direction:  column;
            -ms-flex-direction:  column;
                flex-direction:  column;
    }
    .single-product .product-information .title,
    .single-product .product-information .products-page-cats,
    .single-product .product-information .woocommerce-product-rating,
    .single-product .product-information .wc-gzd-additional-info,
    .single-product .product-information .price {
        -webkit-box-ordinal-group: -1;
        -webkit-order: -2;
            -ms-flex-order: -2;
                order: -2;
    }

    2. Global custom css:

    .nav-sublist-dropdown:before {
        top: -38px;
    }

    Regards

    Avatar: Tagbag
    Tagbag
    Participant
    April 5, 2018 at 10:16

    Thank you, but is it possible to make the โ€œinkl. MwStโ€ over the delivery time?

    product-order

    Regards

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 5, 2018 at 10:40

    Please change the previous code to:

    .single-product .product-information .title, 
    .single-product .product-information .products-page-cats, 
    .single-product .product-information .woocommerce-product-rating, 
    .single-product .product-information .price {
    	-webkit-box-ordinal-group: 0;
    	-webkit-order: -1;
    	    -ms-flex-order: -1;
    	        order: -1;
    }

    Regards

    Avatar: Tagbag
    Tagbag
    Participant
    April 5, 2018 at 10:47

    Great, thank you very much!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 5, 2018 at 10:54

    Youโ€™re welcome!
    This topic will be closed. Please kindly open up new tickets for additional questions.

    Regards

  • Viewing 13 results - 1 through 13 (of 13 total)

The issue related to 'โ€˜Add Static Blocksโ€™' has been successfully resolved, and the topic is now closed for further responses

Helpful Topics

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.