Home / Admin / Tweak Price Display (Appends Text) | Display Eventbrite Events
Duplicate Snippet

Embed Snippet on Your Site

Tweak Price Display (Appends Text) | Display Eventbrite Events

The Display Eventbrite plugin premium version can display prices. If you want to tweak to display you can use this filter wfea_price_display.

You can adjust this code as you feel fit and can add the PHP to your functions.php, this example simple appends some text.

(Note this code snippet applies for "Display Eventbrite Events Plugin" available here: https://fullworksplugins.com/products/widget-for-eventbrite/ )

Code Preview
php
<?php
add_filter( 'wfea_price_display', function ( $price_display, $min, $max, $currency ) {
	return $price_display . ' (Discounts available at checkout)';
}, 10, 4 );

Comments

Add a Comment