Home Forums WoodMart support forum Good day . I have some questions.

Good day . I have some questions.

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #96115

    brend
    Participant

    1. I have a varied product. And different prices depending on the variation.In Figure 1a, I specified the default value for the display form. But for some reason, the price of a product is shown from 21599 to 27910 (see Figure 1). I need to show the price or the lowest or the one I specified in the default value of the form. I want to show only the lowest price!
    2. Help how to remove a block from the product tabs (Figure 3) Theme Bikes

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

    Hello,

    Add this code to the Theme settings > Custom CSS > Global

    body .product-grid-item .price,
    body .single-product-page .summary-inner > .price {
            font-size: 0;
    }
    .single-product-page .summary-inner > .price > span:first-child {
       font-size: 22px;
    }
    .single-product-page .summary-inner > .price > small {
        font-size: 18px;
        margin-left: 6px;
    }
    body .product-grid-item .price > ins,
    body .product-grid-item .price > span:first-child {
       font-size: 14px;
    }
    body .product-grid-item .price > del {
        font-size: 12px;
        margin-right: 3px;
    }
    body .product-grid-item > .price > small {
        font-size: 12px;
        margin-left: 4px;
    }
    body .single-product-page .summary-inner > .price > ins,
    body .single-product-page .summary-inner > .price > span:first-child {
       font-size: 22px;
    }
    body .single-product-page .summary-inner > .price del {
        font-size: 22px;
        margin-right: 6px;
    }

    As for the menu, please provide page URL and your site admin access I will check how it is displayed and tell you how to remove

    Best Regards

    #96157

    brend
    Participant

    Code inserted. (see screenshot). I cleared the cache. Did not help. In general, nothing has changed.

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

    Hello,

    Please remove the code. Copy the code from the forum not from your email and insert again.

    Best Regards

    #96177

    brend
    Participant

    Code copied from the forum, but unfortunately everything is unchanged

    #96204

    Hello,

    Please provide your site admin access.

    Best Regards

    #96215

    brend
    Participant
    #96263

    Hello,

    Please update your theme https://xtemos.com/docs/woodmart/update-theme-2/ and clean your cache.

    Best Regards

    #96287

    brend
    Participant

    good day. I’m upgraded here https://www.brend.ltd/ Enter your code, but does not have the result. Cleans the cache.reference to the product https://www.brend.ltd/product/elektroskuter-elwinn-em-2160/

    #96404

    Hello,

    Please replace the code with this one:

    body .product-grid-item .price,
    body .single-product-page .summary-inner > .price {
            font-size: 0;
    }
    .single-product-page .summary-inner > .price > .woocs_price_code > span:first-child {
       font-size: 22px;
    }
    .single-product-page .summary-inner > .price > .price .woocs_price_code > small {
        font-size: 18px;
        margin-left: 6px;
    }
    body .product-grid-item .price .woocs_price_code > ins,
    body .product-grid-item .price .woocs_price_code > span:first-child {
       font-size: 14px;
    }
    body .product-grid-item .price .woocs_price_code > del {
        font-size: 12px;
        margin-right: 3px;
    }
    body .product-grid-item > .price .woocs_price_code > small {
        font-size: 12px;
        margin-left: 4px;
    }
    body .single-product-page .summary-inner > .price .woocs_price_code > ins,
    body .single-product-page .summary-inner > .price .woocs_price_code > span:first-child {
       font-size: 22px;
    }
    body .single-product-page .summary-inner > .price .woocs_price_code del {
        font-size: 22px;
        margin-right: 6px;
    }

    Clean your cache. The price plugin you have was the reason the previous code did not work.

    Best Regards

    #96419

    brend
    Participant

    Good day Elise Noromit.Thank you for your efforts. Almost succeeded in achieving the result. I’m exhibiting Default form values (see Figure 1). The price is now displayed in the store only one, and that’s good. But there are 2 prices on the product page. See Figure 2 and Figure 3. I explain. When changing the variation, the upper price does not change, and the price of the image changes from the bottom. It can mislead consumers. I need only one price per product page. And this price should vary variably. reference to the test https://www.brend.ltd/product/elektromotocikl-elwinn-em-120/

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

    Hello,

    We can hide static data with CSS. Upper price is a static range of price. The bottom is the dynamic variation price and we cannot influence it.

    Best Regards

    #96856

    brend
    Participant

    Okay. Hide the price of what’s on top.

    #96894

    Hello,

    Please add this code to the Theme Settings > Custom CSS

    .product-image-summary .summary-inner>.price{
        display: none!important;
    }

    Best Regards

    #97341

    brend
    Participant

    Good day. In the desktop version and the tablet version you have solved the problem. But in the mobile version, there are 2 prices on the store tab. The product page is all right.

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

    Hello,

    Please find this code:

    body .product-grid-item .price, body .single-product-page .summary-inner>.price {
        font-size: 0;
    }

    Replace it with this one:

    body .product-grid-item .price, body .single-product-page .summary-inner>.price {
        font-size: 0!important;
    }

    Best Regards

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