Support

Home Forums Event Espresso Premium currency sign

currency sign

Posted: February 25, 2014 at 5:43 am


sergio Pannella

February 25, 2014 at 5:43 am

how can I disable a currency sign from registration page?


Dean

February 25, 2014 at 6:34 am

Hi,

In EE3, it is not easy, it will require changing a core file (includes/functions/pricing.php) to remove reference to the currency symbol and it will affect more than just the registration page.


sergio Pannella

February 25, 2014 at 7:12 am

Thank you, I have previously edited the / organization_config.php and also works.


Josh

  • Support Staff

February 25, 2014 at 11:56 am

Alternatively you could add a filter to replace the currency symbol on the front end of the website. For example if the currency that’s set is the Euro this function could be added to a site specific functionality plugin:

function my_change_ee_eur( $content ) {

	$content = str_replace( 'EUR', '', $content);

	return $content;

}

add_filter( 'the_content', 'my_change_ee_eur', 11 );

The support post ‘currency sign’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso