How can I remove the pricing section in Retailer Fashion Infinity theme?

Topic summary

A user seeks to hide the pricing section that appears above product variations in the Retailer Fashion Infinity theme v3.0.5, while keeping the price visible for selected variants.

Initial Solution Attempt:

  • First suggestion was to check theme settings or use CSS to hide .product-price--single
  • This hid all prices, not just the unwanted section above variations

Working Solution:
A more specific CSS selector successfully resolved the issue:

.product-price-wrap.flex.flex-align-ver.flex-align-space-between.gutter-ele-top.gutter-ele-top-tbs.gutter-ele-bottom.gutter-ele-bottom-tbs {
    display: none;
}

Implementation:
Add the CSS code to: Online Store → Theme → Edit code → product-single.scss.css file

Status: Resolved - the user confirmed the targeted CSS solution worked as intended.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hi Members,

I am using Retailer Fashion Infinity version 3.0.5 theme for my store https://click2kart.in/ .

I have some issue with pricing section in variation. and want to remove that section. please find attached pic. Help me to solve the issue.

Thanks in Advance

Hello @naveen1989 ,

Check theme settings there you can find an option to remove it.
btw if you can’t then follow this:

  1. Go to Online Store → Theme → Edit code

  2. Open your product-single.scss.css file and paste the following code below:

.product-price--single {
    display: none;
}

Thanks

its hiding all the price

i just want to hide above two variant price not selective variant price .

Use this css

.product-price-wrap.flex.flex-align-ver.flex-align-space-between.gutter-ele-top.gutter-ele-top-tbs.gutter-ele-bottom.gutter-ele-bottom-tbs {
    display: none;
}

its worked thanks very much

To remove the pricing section in the Retailer Fashion Infinity theme (v3.0.5):

  1. Edit Theme Code:

    • Go to Appearance > Theme Editor in your WordPress dashboard.
    • Locate the product template file (single-product.php or content-single-product.php).
    • Comment out or remove the code responsible for displaying the price (woocommerce_template_single_price()).
  2. Use Custom CSS:
    Add this CSS to Appearance > Customize > Additional CSS:

    css

    Copy code

    .woocommerce-variation-price { display: none; }

  3. Theme Settings:
    Check your theme options for any toggle to disable pricing in variations.

For more guides on tech and fashion e-commerce, visit Write Verge.