Advertisement:

Author Topic: Publish an Item page: Price ___ Pound£ //How to add monthly after price?[SOLVED]  (Read 1251 times)

ben_dchost1

  • Jr. Member
  • **
  • Posts: 92
/*IGNORE first image - accidentally uploaded*/

Hi, I want to add monthly after price when a user is publishing a page. Below I have attached an which help explain what I need.

I have ticked the optional option in listings, since I like the price appearing on the listing, but I can't find a way to configure the 'Price' field to add 'monthly' after it. I'm certain it's in PHP mysql somewhere but I can't find it anywhere.

Thanks!
« Last Edit: July 01, 2014, 12:17:11 pm by ben_dchost1 »

teseo

  • Hero Member
  • *****
  • Posts: 6169
Hi,

Locate this line in your theme item-post.php and edit-post.php:

<label for="price"><?php _e('Price', '[Here the name of your theme]'); ?></label>

Replace it with:

<label for="price"><?php _e('Price', '[Here the name of your theme]'); echo ' (Monthly)'; ?></label>

Regards

ben_dchost1

  • Jr. Member
  • **
  • Posts: 92
Thanks this works perfectly!