Nico

Forum Replies Created

Viewing 15 posts - 3,211 through 3,225 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    This reply is private.

    in reply to: Premature closure of the ticket. Calling Nico! #1139428
    Nico
    Member

    This reply is private.

    in reply to: Add Event Form conflict with Raw HTML Pro plugin #1139384
    Nico
    Member

    Howdy Michael,

    Welcome to our support forums and thanks for reaching out to us. Sorry to hear about this conflict 🙁

    Have you tried reaching out to the Raw HTML PRO developer on this? Maybe he his aware of this issue?

    I couldn’t find any past issues related to this conflict in our forums, nor any related bugs logged in our backlog. So this is probably the first time we hear about the conflict.

    Can you please send over the URL where I can see this?

    Please let me know about it,
    Best,
    Nico

    in reply to: Tooltip on click #1139370
    Nico
    Member

    Hi there Kerry,

    Thanks for reaching out to us on this! I can help you on this 🙂

    I have managed to remove the anchor link for the event date but not managed to change the js file to enable tooltip on click.

    Can you describe how you did this? Via template override?

    When I change the event handle in events.js to onclick the tooltip doesn’t load in the page.

    Were you following this answer? It seems to be a bit outdated but the method is still legit.

    Please let me know about how you are trying to do this, maybe we’ll need to do thing in a different way but we can also improve/compete your solution,
    Best,
    Nico

    in reply to: Embed single event view in page #1139368
    Nico
    Member

    Hi there Chloe,

    Thanks for reaching out!

    So my first question is how to set up such specific url queries (and where)

    Well, I’m not quite sure of how this can work. Wouldn’t it be easier to call the corresponding divi modules in the single event template? Have you looked into this option? I’m not sure if this is possible at all buy maybe the Divi support team can answer this question?

    I would much rather embed the original single event view in my page than its embedded version, is there a way to do that as well ?

    At the moment single event views cannot be embedded into pages 🙁 This is a planned feature and will surely be included at some point in our plugin. But I don’t think that’s going to happen in next major release (august), probably the following one before the end of the year.

    Sorry not that have a better option. It’s not difficult to create a custom shortcode to display single event info, not sure if that would work for this case anyway, if you think it might help please let me know and I can help you crafting the shortcode function.

    Best,
    Nico

    in reply to: Change Event Categories title in WP admin #1139356
    Nico
    Member

    Thanks for following up!

    I just tested this locally (changing ‘%s Taxonomy’ for ‘test’) and I can see it working as expected: https://cloudup.com/cOrpDeCTTNz – on the menu and on the metabox title. There are other translations that are not changed like ‘+ Add New Event Category’, but those are different translation strings. Are you referring to these ones or you are not seeing any change at all?

    Also, are you sure the script is in the correct functions.php file? If you use the example on this article: Change the wording of any bit of text or string does it work as expected?

    Please let me know about it,
    Best,
    Nico

    in reply to: Search Results Spacing Challenge #1139344
    Nico
    Member

    Glad to hear it worked Terry 🙂

    I’m not sure how the RISE WordPress theme editor works, so not sure about the result. Maybe you can try adding the !important directive to the rule:


    .tribe-events-notices > ul li:before {
    content: '' !important;
    }

    But maybe the code doesn’t get posted at all? Can you check with this updated snippet? Also check that the code is printed in the page by inspecting the source.

    The Simple Custom CSS plugin is great to customize the look and feel of the site without modifying the theme’s files, but it should be the same result as inserting the snippet in the theme style-sheet.

    Please let me know if you can test the above now,
    Best,
    Nico

    in reply to: Display just category name #1139332
    Nico
    Member

    Stocked to hear David, thanks for the heads-up 🙂

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

    in reply to: Decimal Separator #1139326
    Nico
    Member

    Hey Martin,

    Thanks for following up! I get you know! It’s like the field is only accepting ‘.’ for decimals and not ‘,’. And in the cases where there’s a decimal part the in the price is showing as a ‘.’ in the front-end. This seems to be a bug in our code.

    Paste the snippet below in your theme’s (or child theme’s) functions.php file, it should make it right for now:

    /* Force comma as decima separator for event cost */
    function tribe_convert_decimal_char ( $cost, $post_id, $with_currency_symbol ) {

    return str_replace ( '.' , ',' , $cost );
    }

    add_filter( 'tribe_get_cost', 'tribe_convert_decimal_char', 10, 3 );

    Also, next maintenance release 4.2.3 is coming out next week with various tweaks for tickets including some changes in how the price field is managed. I’m not sure if this is going to be fixed as there’s no actual tickets that refer to this particular glitch, but maybe the changes introduced makes this right or behave in a different way.

    Please let me know if the snippet makes it right for now and in that case if you can wait till 4.2.3 is out to re-check this,
    Best,
    Nico

    in reply to: Customizing Upcoming Event Headings and category Images #1139308
    Nico
    Member

    Hi there Steven,

    Thanks for reaching out to us! I’ll help you here…

    Just paste this snippet in your theme’s (or child theme’s) functions.php file:


    /*
    * Alters event's category archive title
    */
    function tribe_alter_event_archive_titles ( $title, $depth ) {

    if ( is_tax( Tribe__Events__Main::TAXONOMY ) && $depth ) {

    $cat = get_queried_object();

    if ( $cat->parent > 0 ) {
    $subcat = $cat;
    $cat = get_term( $cat->parent, Tribe__Events__Main::TAXONOMY );
    }

    $title = 'Upcoming ' . $cat->name;

    if ( isset( $subcat ) ) {
    $title .= ' › ' . $subcat->name;
    }

    $title .= '';

    }

    return $title;
    }
    add_filter( 'tribe_get_events_title', 'tribe_alter_event_archive_titles', 11, 2 );

    I’d also like to be able to have a custom image on category and subcategory pages, so if the auction is for homes, there is an image for the page related to home auctions.

    There are a couple of plugins to attach images to taxonomies (like Event Categories): Categories images, Category Featured Images, etc.

    Please give that a try and let me know about it,
    Best,
    Nico

    in reply to: Paypal split payment checkout error #1139302
    Nico
    Member

    Hey Johnessco,

    Thanks for reaching out and welcome to our support forums! I’ll help you out getting this right.

    It all seems to be a configuration problem. Can you please make sure you are correctly placing the Application ID? Please note that we recently re-labeled the Application ID field (it was called Cliet ID before). Maybe the confusion is there? Also, are you using PayPal in sandbox mode?

    It would be great if you could share your system information with me so I can check if everything looks right on that end.

    Thanks,
    Nico

    in reply to: The Paypal payment form is not proccessing #1139297
    Nico
    Member

    Hey Johnessco,

    Thanks for reaching out! This thread seems to be a duplicate of https://theeventscalendar.com/support/forums/topic/paypal-split-payment-checkout-error/. I’ll close this one out and continue to help you in the other thread.

    Best,
    Nico

    Nico
    Member

    Really stocked to hear Sandra 🙂

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

    Nico
    Member

    Hi Sandra,

    Thanks for reaching out to us! I’ll give you a quick reply so hopefully you can solve this issue asap…

    I see you are using the Divi theme and probably their archive settings are causing this issue as the Event Views are archives. Head to Divi > Theme Options > General Settings > Number of Post displayed on Archive pages, changing that number should make this right!

    Best,
    Nico

    in reply to: Some pre-sale questions #1139095
    Nico
    Member

    Perfection Bram 🙂

    One last thing I forgot to mention, while we don’t have a trial period, you can go ahead and purchase the products for testing. If you decide they are not what you are looking for (or maybe the snippet to create tickets doesn’t work as you would like), you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy.

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

Viewing 15 posts - 3,211 through 3,225 (of 6,506 total)