Osclass forums
Support forums => Themes => Real Estate => Topic started 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!
-
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
-
Thanks this works perfectly!