Price not updating – reprise

Home Forums Calendar Products Events Calendar PRO Price not updating – reprise

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #987309
    Paul Gray
    Participant

    HI

    Any solution to this issue?

    Price not updating after change

    I seem to have the same problem here

    http://www.symposium-events.co.uk/event/getting-to-grips-with-hr-business-partnering-hbp28/

    It needs sorting, as customers are requesting discounts to the incorrect (lower) price!

    Paul

    #987512
    Nico
    Member

    Hey Paul,

    Sorry to hear you are experiencing this issue as well 🙁

    I see this is logged as a bug in our product backlog, it’s assigned and hopefully we can see that released soon.

    I’ll try to reproduce this locally and see if I can craft a snippet to show this correctly, or at least provide a workaround. Do you think hiding the event cost in the event details would help for now? Are you showing it in other places?

    Please let me know,
    Have a great weekend,
    Nico

    #987897
    Paul Gray
    Participant

    Hi

    Yes hiding it would be okay. I tried that myself and managed to get the amount not to show, but it still had the text “Cost” above so it looked odd!

    Paul

    #988510
    Nico
    Member

    Hi there Paul,

    Thanks for the follow-up! Hopefully we can hide the cost and the label with a little javascript.

    Try pasting this snippet into your theme’s functions.php file (located at ‘wp-content/themes/your_theme/’), it should do the trick:


    function remove_cost_js() { ?>
    <script type="text/javascript">

    jQuery('document').ready( function(){
    if( jQuery('.tribe-events-event-cost').length ) {
    jQuery('.tribe-events-event-cost').prev().hide();
    jQuery('.tribe-events-event-cost').hide();
    }
    });

    </script>
    <?php
    }
    add_action('wp_head', 'remove_cost_js');

    Please let me know if the snippet works as expected,
    Best,
    Nico

    #988600
    Paul Gray
    Participant

    Great thanks. That will help.

    Hopefully the bug will get fixed in due course.

    #988773
    Nico
    Member

    Hi Paul,

    Hopefully it will be!
    Did the snippet work? Is there anything else I can do for now? If not I’ll go ahead and close this thread.

    Let me know,
    Best,
    Nico

    #993852
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Price not updating – reprise’ is closed to new replies.