Nico

Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 6,506 total)
  • Author
    Posts
  • in reply to: RSS Feeds for tags separated in events and posts #1218097
    Nico
    Member

    Thanks for confirming Viktor! Glad to be of service 🙂

    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: hide recurring events with user toggle and default \"on\" #1218092
    Nico
    Member

    Hey Glenn,

    Stocked to hear this worked for you! Also, you’ve found a nice workaround 😉

    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: Selecting Oct 2017 in Month view displays Sep 2017 instead #1217723
    Nico
    Member

    Hi there Shane,

    Thanks for getting in touch with us!

    I was reviewing this in your site (http://newcastlebridge.org/events/) and couldn’t reproduce the issue → https://cloudup.com/cDXBkV_AgPw – I’ve also played around with this in my local install but wasn’t able to reproduce the issue there either.

    Can you please let me know if I’m doing something different from your test?

    Best,
    Nico

    in reply to: [tribe_events] shortcode output has no styling #1217721
    Nico
    Member

    Hey Chris! Sorry for the delay in my reply. We are seeing a high flow of threads since the release of version 4.4 of the plugins and this means you might see some delay in our replies (hopefully not so much).

    I deactivated Yoast and sadly the problem is still occuring for the Upcoming Events page that is using the default events template. For the other page in the site that I used a shortcode on, the error on the title tag isn’t happening and is instead showing the actual title of the page that I assigned to it which is good so I am thinking there could be something wrong with the Default Events template since Yoast is disabled already.

    So, I’m a bit lost. This is what you get with Yoast disabled + the snippet I sent you? If that’s the case can you please show me the code you are using (in case you’ve adapted it), and send me a link to main events page in which you are still experimenting this issue?

    The jquery workaround sounds good, although I hope we can find a more stable solution.

    Please let me know about the above and I’ll continue to help you out,
    Best,
    Nico

    in reply to: RSS Feed in app #1217717
    Nico
    Member

    Thanks for following up Robert!

    Stocked to hear the feed is now working. But I’m sorry to hear about ‘the colors on the calendar’are now broken. Can you clarify a bit on this?

    Best,
    Nico

    in reply to: Adding Call to Action Link in Content Block Does not Work #1217713
    Nico
    Member

    Thank for following up Joanne! Sorry to hear about this situation 🙁

    I’ll set the conversation status to ‘Pending Fix’ so it doesn’t get auto closed!

    Please let me know if you need further assistance,
    Best,
    Nico

    in reply to: RSS Feeds for tags separated in events and posts #1217707
    Nico
    Member

    Thanks for following up Viktor!

    After some tests I modified the snippet to:

    function tag_archive_posts_vs_events( $query ) {

    if ( ! is_tag() || ! is_feed() ) return;

    if( isset($_GET['post_type']) && $_GET['post_type'] == 'post') $query->set( 'post_type', 'post' );

    if( isset($_GET['post_type']) && $_GET['post_type'] == 'tribe_events') $query->set( 'post_type', 'tribe_events' );

    }

    add_action( 'pre_get_posts', 'tag_archive_posts_vs_events', 100 );

    Once the snippet is in place it will let you get the separate feeds in these URLs:

    http://sitename/tag/pizza?post_type=post → just posts tagged ‘pizza’
    http://sitename/tag/pizza?post_type=tribe_events → just events tagged ‘pizza’

    Testing this might be tricky as feeds are cached in WordPress, so if you are seeing the same results all the time try adding a ‘nocache’ variable to the request to force the generation of the feed (for example: http://sitename/tag/pizza?post_type=post&nocache=123).

    Please let me know if this works for you,
    Best,
    Nico

    in reply to: Target only /events main page in functions #1217687
    Nico
    Member

    Thanks for following up Siobhan 🙂

    Glad the simple workaround of removing the post type from is_singular worked for you!

    This is a good article about customizing the WordPress query → http://www.billerickson.net/customize-the-wordpress-query/

    And here one for understanding WordPress filters → https://pippinsplugins.com/a-quick-introduction-to-using-filters/

    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: Map zoom in/out false and keep markers clickable #1217673
    Nico
    Member

    Hey folks, thanks for following up!

    I’m glad this worked for both of you 🙂

    Some comments before I close out the thread:

    @ Thomas, there’s no need to edit the file. You can use that code from an existing theme (or child theme) JS file. In any case here’s a sample snippet you can paste in your theme’s (or child theme’s) functions.php file, which inserts the JS snippet in the head tag if you are viewing map view (uses jQuery):
    https://gist.github.com/niconerd/301cd35ada82e5ae77a5a311df573f10

    If you need further help, please open up a new thread for this and include a link back to this one!

    @ Aaron, hopefully it’s now possible to change the map pin via customizer. I’ve answered this in the original thread → https://theeventscalendar.com/support/forums/topic/change-events-google-map-icon/#post-1217662

    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: Change events google map icon #1217662
    Nico
    Member

    Hey Aaron,

    I was trying to find this thread to give you a heads-up on this but I was not having luck with my searches. In any case your reply here made me realize you were the author of both threads 🙂

    The good news is that as of 4.4 update it’s now possible to change the map icon via customizer. Just go to ‘WP-Admin > Appearance > Customize > The Events Calendar > Global Elements > Map Pin’, there you’ll find an input to upload your custom pin image!

    Please let me know if you can do it from there,
    Best,
    Nico

    in reply to: Filtered Categories not showing all events #1217651
    Nico
    Member

    Stocked to hear Karen 🙂

    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: Events Calendar PRO plugin #1217645
    Nico
    Member

    This reply is private.

    Nico
    Member

    Thanks for the follow-up Reinhard 🙂

    I could find the culprit here (an internal code change with how classes are instantiated) and fixed the plugin for you (attached). In any case, we will be removing the knowledgebase article and building an extension for this instead. We are trying to migrate these loose support plugins into a more stable and organized directory → https://theeventscalendar.com/extensions/

    For now you can use the updated support plugin, and I’ll let you know when the proper extension is in place for you to us it instead 🙂

    Thanks once again for the report, and please let me know if the updated plugin works for you,
    Regards from Buenos Aires,
    Nico

    tribe-remove-export-links.zip

    Nico
    Member

    This reply is private.

    in reply to: Google Maps don’t show the exact place #1217591
    Nico
    Member

    Hola Juan, como estas?

    Cliff me pidió que continue la conversación con vos, ya que hablo Español y el no estaba entendiendo mucho lo que le estabas comentando 🙂

    Extrayendo las coordendas del screenshot que mandas, pude verificar que lo que muestra el mapa generado por nuestro plugin parece ser lo correcto. Para verificarlo entre a Google Maps y busque las coordenadas 37.18275, -3.60636 y resultado es el mismo mostrado en el mapa.

    Podrias recheckearlo desde tu lado?

    Saludos,
    Nico

Viewing 15 posts - 1,441 through 1,455 (of 6,506 total)