Home Forums WoodMart support forum no html blocks

no html blocks

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #369118

    giannisth
    Participant

    hi, i have the following questions please:
    1. i have no html blocks installed , i am trying to create some but the wpbakery builder is not applied .It is only applied on the pages though. P.S i have not installed any demo content.
    2. in addition to the above, i cannot create any footer via html blocks.
    3. also i am trying to hide the quantity selection on product page https://i.imgur.com/uv9NpWi.png
    i have tried this https://i.imgur.com/tUCemRi.png but nothing happens.
    i have added code but again nothing. can you please tell me a code to do so?

    Do i need to import demo content in order to create html blocks and footer? I’m afraid that if i enter demo content i will loose my settings and page contents.
    thank you

    #369135

    Hello,

    1 &2) Please Go to WpBakery page builder >> Role Manager >> And enable it for CMS Blocks.

    Screenshot for Clarification: https://gyazo.com/b6ffab92b64991d252e4b2b0763e2b97

    Then check back.

    3) Please provide the admin panel login details of the website.

    Best Regards

    #369148

    giannisth
    Participant

    thabk you

    #369151

    giannisth
    Participant

    Sorry please read the new link admin

    #369308

    giannisth
    Participant

    also please see this:
    right before selecting a product, the price is “free” because the price is set to 0, which is what i want! https://i.imgur.com/zsFVqpi.png
    but when i select on the product location the “free” dissapears and shows the price , which is not what i want.https://i.imgur.com/6fz3XO2.png
    i have inserted this code

    add_filter( 'woocommerce_get_price_html', 'wooc_price_free_zero_empty', 9999, 2 );
       
    function wooc_price_free_zero_empty( $price, $product ) {
        if ( '' === $product->get_price() || 0 == $product->get_price() ) {
            $price = '<span class="wooc-price-amount amount amount-free">Δωρεάν</span>';
        }  
        return $price;
    }

    any idea please?

    #369401

    Hello,

    To remove the quantity. Please try adding the following Custom CSS in the Global CSS area under Theme Settings >> Custom CSS.

    .single-product div.quantity {
        display: none;
    }

    Sorry, but we could not help with third party code snippets this is beyond our limitations and support policy.

    Best Regards

    #369404

    giannisth
    Participant

    in addition to the above how please can i get rid of these tab lines https://i.imgur.com/rGFy9PS.png
    i have entered this code in css but nothing applies

    /* hide tab lines from grey to white */
    	.product-tabs-wrapper {
      padding-top: var(--wd-single-spacing);
      padding-bottom: var(--wd-single-spacing);
      border-top: 1px solid rgba(255, 255, 255, 0.11);
      border-bottom: 1px solid rgba(255, 255, 255, 0.11);
      background-color: var(--bgcolor-white);
    #369549

    Hello,

    Please provide the URL of the product to check it myself and help you out accordingly.

    Note: Please create new topics for each issue in the support system to avoid any confusions.

    Best Regards

    #369569

    giannisth
    Participant
    #369644

    Hello,

    The page is password protected please provide the password of the page.

    Best Regards

    #369741

    giannisth
    Participant

    Please use code.

    #369867

    Hello,

    The lines you mentioned are not appearing on my end.

    Screenshot: https://gyazo.com/8f624f4ae5869c28cf074e0c55c4a6b8

    Best Regards

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