Hello despina.mina, follow the instruction to create a override theme, then:
to remove the price from the single car page edit the page /yourtheme/wp-car-manager/single-vehicle/price.php
MAKE A BACKUP BEFORE
find and comment or remove this line:
<div class="wpcm-price-wrapper" itemprop="offers" itemscope itemtype="https://schema.org/Offer">
<span class="wpcm-price"><?php echo $vehicle->get_formatted_price(); ?></span>
<meta itemprop="price" content="<?php echo $vehicle->get_price(); ?>"/>
<meta itemprop="priceCurrency" content="<?php echo wp_car_manager()->service( 'settings' )->get_option( 'currency' ); ?>"/>
To remove the price from the car listing edit the page /yourtheme/wp-car-manager/listings/item.php
MAKE A BACKUP BEFORE
find and comment or remove this line:
<li class="wpcm-price"><?php echo $price; ?></li>