Support

Home Forums Event Espresso Premium Display Member price instead of Standard (non-member) price

Display Member price instead of Standard (non-member) price

Posted: August 22, 2013 at 12:20 pm


mrdan

August 22, 2013 at 12:20 pm

When I create an event with a Standard (non-member) price and a corresponding member price, I want the initial display of events to show the member price and not the standard price. Is this possible? Thanks for your help.

Dan


Dean

August 23, 2013 at 1:50 am

Hi Dan,

You would need to edit the event_list_display.php file at around line 82 and remove the following

<span class="section-title">
<?php  echo __('Price: ', 'event_espresso'); ?></span> <?php echo  $org_options['currency_symbol'].$event->event_cost; ?>

in its place add the following

<?php do_action( 'espresso_price_select', $event_id, array('show_label'=>TRUE, 'label'=>$price_label) );?>

You would need to add the following CSS

.event_price_label {
font-size:100% !important;
width:40px !important;
padding:0 !important
}

There is an issue with this though as it will show the dropdowns if you have more than one ticket option….

There might be another way to do it but im not seeing it currently.

The support post ‘Display Member price instead of Standard (non-member) price’ 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