Viewing 2 replies - 1 through 2 (of 2 total)
  • One way to do this is with a simple modification to the style.css file of your theme. The path to the file on your hosting account would be public_html/wp-content/themes/organic_shop/style.css. You can also use the built-in file editor in the admin panel of your WordPress to edit theme files.

    In the file find the code (around line 983):

    a .product-price {
        color: #424242;
    }

    and inside the brackets add display: none; so that it looks like this

    a .product-price {
        color: #424242;
        display: none;
    }

    Then clear the browser cache and refresh the frontend of your site.

    Hope this helps.

    Thread Starter meetgeraldine

    (@meetgeraldine)

    that worked! you’re awesome.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove WooCommerce Pricing from Homepage’ is closed to new replies.