Support

Home Forums Event Espresso Premium Split: Ticket related question

Split: Ticket related question

Posted: August 22, 2018 at 1:03 pm

Viewing 3 reply threads


afqam_webmaster

August 22, 2018 at 1:03 pm

I probably need to create another thread to ask this question…I will if required:

Why are the “Details” and “Description” identical for a ticket? It seems like I should be able to make these different as it just is duplicative and makes the ticket details extra long.


Josh

  • Support Staff

August 22, 2018 at 1:51 pm

They won’t always be identical. For example if there’s a price modifier attached to the ticket, and that price modifier has a description, it will add another row to the prices section and the price modifier’s description will be displayed in the description column.

If you’re not using price modifiers you could add this code to a functions plugin and it will remove that part from the ticket details view:

add_action(
    'AHEE__ticket_selector_chart_template__ticket_details__after_description',
    function(){
        remove_action(
            'AHEE__ticket_selector_chart_template__ticket_details__after_description',
            array('EED_Ticket_Selector_Caff', 'ticket_price_details'),
            10
        );
    },
    9
);

You can add the above to a functions plugin or into your WordPress child theme’s functions.php file.


afqam_webmaster

August 23, 2018 at 6:32 am

I will see about getting this applied to our site and report back, thank you.


afqam_webmaster

August 24, 2018 at 7:58 am

This worked as described. Thank you!

Viewing 3 reply threads

The support post ‘Split: Ticket related question’ 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