Nico

Forum Replies Created

Viewing 15 posts - 3,841 through 3,855 (of 6,506 total)
  • Author
    Posts
  • in reply to: Importing events that don't exist #1111564
    Nico
    Member

    Thanks for following up Kyle!

    Again I find this really weird as ‘Donald Davis Storytelling Center’ and ‘Donald David Storytelling Concert’ even have different titles, so I’m not sure how could that happen. Also I haven’t seen any reports on this behavior, and couldn’t find it logged in our bugs backlog.

    Can you please send me the feed and I’ll try to import it and see if I stumble upon the same duplication issue.

    Thanks,
    Nico

    in reply to: One event accross mutliple non consecutives dates #1111411
    Nico
    Member

    I’m closing this thread an marking as duplicate. I’ll continue to help Bouchair with this issue here: https://theeventscalendar.com/support/forums/topic/one-event-accross-mutliple-non-consecutives-dates-2/

    in reply to: Setup on calendar pro not possible !!! #1111409
    Nico
    Member

    Hey Bouchair,

    Please don’t open up more duplicate thread for this issue. I’ll be closing this one and this abandoned thread as well (https://theeventscalendar.com/support/forums/topic/one-event-accross-mutliple-non-consecutives-dates/).

    I’ll continue to help you on this issue here: https://theeventscalendar.com/support/forums/topic/one-event-accross-mutliple-non-consecutives-dates-2/.

    Thanks,
    Nico

    in reply to: One event accross mutliple non consecutives dates #1111407
    Nico
    Member

    Hey Bouchair,

    I reviewed the thread but I’m not sure about what you want to point out, Can you please elaborate a bit?

    in reply to: Bug #1111403
    Nico
    Member

    Hi Ingebjørg,

    Thanks for reaching out to us! Unfortunately we are not able to provide support in the pre-sales forum 🙁

    We are happy to assist our premium users with support issues via our premium forums, please log into the account that has been created when the purchase was made. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly, mainly for bug reports.

    I’ll go ahead and close out this thread, but please do post in the appropriate forum and we will assist you.

    Best,
    Nico

    in reply to: Event Ticket Plus and LUSH Theme #1111399
    Nico
    Member

    Hey @nlbmedia

    Where I can edit css for the plugin?

    Be sure to check our themer’s guide on how to customize the plugin templates and style. For small mods and tweaks I would recommend just including them in your theme stylesheet (or child theme if any) or just adding them via Simple Custom CSS plugin.

    Hmm, i also got duplicated tickets:

    Can you please open up a new thread for this? Having just a user/issue per thread usually makes them move faster. When creating the new thread please be sure to Test for conflicts and include your system information, that will surely help getting a better reply. You can also include a link back to this thread if you want.

    Have a great weekend,
    Nico

    Nico
    Member

    Glad to hear you could work that out 🙂

    Regarding the change to related events, this snippet is working in my local install. Try pasting it to functions.php file:


    /**
    * Change related events to similar events
    */
    function tribe_custom_theme_text ( $translations, $text, $domain ) {

    $custom_text = array(
    'Related %s' => 'Similar %s',
    );

    if((strpos($domain, 'tribe-') === 0 || strpos($domain, 'the-events-') === 0) && array_key_exists($text, $custom_text) ) {
    $text = $custom_text[$text];
    }

    return $text;
    }
    add_filter('gettext', 'tribe_custom_theme_text', 20, 3);

    Have a great weekend,
    Nico

    Nico
    Member

    Thanks for clarifying Joanna, I could see the issue in your site.

    Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins. Also it would be great if you could share your system information with me so I can check if everything looks right on that end.

    Please let me know about it,
    Best,
    Nico

    in reply to: Login with password #1111390
    Nico
    Member

    I guess if this is going to be the default register form, you can add a 301 redirection to the new form URL.

    Community events uses the default WordPress function wp_register to show the register link, you can filter the ouput to change the URL. Add this snippet in your functions.php file to do so:


    /**
    * Modify register URL
    */

    function custom_register_url ( $url ) {
    return site_url('register');
    }

    add_filter( 'register_url', 'custom_register_url' );

    Be sure to change the URL for the one you created.

    Best,
    Nico

    in reply to: Events Not Displaying #1111382
    Nico
    Member

    Hey Lisa,

    Thanks for the heads-up and glad to hear the fix worked for you 🙂

    I’ll keep this thread open for @mkrasmussen (the original poster) to confirm it’s working for him as well.

    Have a great weekend,
    Nico

    in reply to: One event accross mutliple non consecutives dates #1111379
    Nico
    Member

    Thanks for following up!

    1) I set the event like you but it display 3 separate events

    Sorry if I wasn’t clear enough. Recurring events, are in fact the same event spanning in multiple days. Three instances are created of the same event and other than different dates all the information is the same. It’s not possible to add the three dates to ‘one’ event. We have a setting in the backend to only show the first instance of the recurring event in event listings (WP-Admin > Events > Settings > General > Recurring event instances), maybe that helps?

    2) The field “Recurrence description” is only for information or it has an impact on setup of teh dates ?

    Is only informative, and has no impact on the event dates.

    Best,
    Nico

    in reply to: Separate Calendars #1111375
    Nico
    Member

    Hay Patrick,

    Thanks for following up! Sure that’s possible 🙂

    You’ll have to create a template override of the single event template (wp-content/plugins/the-events-calendar/src/views/single-event.php) and do some edits. For more information about template overrides please check our themer’s guide.

    Once the copy of the template is in place you can replace the content of the file for the code below:

    https://gist.github.com/niconerd/1920ffe8e6ec045a5aa63be6181256ff

    The lines I added are commented, with those in place the All Events link should point to the category of the event. While events can have multiple categories this script will just grab the fist one. Also, if there’s no category, the link won’t be printed.

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

    in reply to: recurrence description lost in update #1111371
    Nico
    Member

    Thanks for following up Mike!

    You sent a database dump via email, that’s the data we used.

    Best,
    Nico

    in reply to: Event pages show 404 errors #1111200
    Nico
    Member

    Hi,

    Just wanted to let you know that we could work this out with the Sensei team. They have just rolled out an update (version 1.9.6) with a fix for this issue, so you can go ahead an update the plugin in your site.

    Please let us know if this works as expected after the update,
    Best,
    Nico

    in reply to: Conflict with Sensei #1111199
    Nico
    Member

    Hi,

    Just wanted to let you know that we could work this out with the Sensei team. They have just rolled out an update (version 1.9.6) with a fix for this issue, so you can go ahead an update the plugin in your site.

    Please let us know if this works as expected after the update,
    Best,
    Nico

Viewing 15 posts - 3,841 through 3,855 (of 6,506 total)