Viewing 1 replies (of 1 total)
  • Hi Kalyan,

    Food and Drink Menu includes a templating system you can use to make changes like this. I posted a short introduction to the templating system which will explain how and where to put your new template files.

    To make your simple change, you’d copy /wp-content/plugins/food-and-drink-menu/fdm-templates/content/price.php to /wp-content/themes/your-theme/fdm-templates/content/price.php.

    Then you’d just open it up in a text editor:

    <div class="fdm-item-price-wrapper">
    	<span class="fdm-item-price"><?php echo $this->price; ?></span>
    </div>

    Then add your dollar sign to before the <?php area:

    <div class="fdm-item-price-wrapper">
    	<span class="fdm-item-price">$<?php echo $this->price; ?></span>
    </div>
Viewing 1 replies (of 1 total)
  • The topic ‘How to add a dollar sign to every price tag’ is closed to new replies.