Osclass forums

Support forums => Themes => Real Estate => Topic started by: ben_dchost1 on June 26, 2014, 02:14:41 pm

Title: Publish an Item page: Price ___ Pound£ //How to add monthly after price?[SOLVED]
Post by: ben_dchost1 on June 26, 2014, 02:14:41 pm
/*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!
Title: Re: Publish an Item page: Price _________ Pound£ //How do I add monthly after price?
Post by: teseo on June 26, 2014, 02:43:25 pm
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
Title: Re: Publish an Item page: Price ___ Pound£ //How to add monthly after price?[SOLVED]
Post by: ben_dchost1 on July 01, 2014, 12:17:34 pm
Thanks this works perfectly!