Nico

Forum Replies Created

Viewing 15 posts - 1,651 through 1,665 (of 6,506 total)
  • Author
    Posts
  • in reply to: Event categories #1210914
    Nico
    Member

    Hi @mennadi,

    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.

    Just to give you a quick tip, you can use WordPress built-in function get_terms (event categories taxonomy slug is tribe_events_cat). Hope this helps!

    Iโ€™ll go ahead and close out this thread, but please do post in the appropriate forum and we will be happy to assist you.

    Best,
    Nico

    in reply to: Customize Ticket E-mail #1210913
    Nico
    Member

    Hey John,

    Thanks for getting in touch with us!

    You are right about the template tickets/email.php, this is the one used to send the tickets out. Now regarding the extra information you want to add, that can be stored in custom fields or maybe in the page excerpt. Once that’s added you’ll need to create a template override of the tickets/email.php file and add the custom code needed to pull this information from the page (more info on how to do this in our themer’s guide).

    Another option is to hook to the tribe_tickets_ticket_email_ticket_bottom action. I guess it depends on where you need to place this information.

    Please let me know if this helps,
    Best,
    Nico

    in reply to: Every subscribed user sees his own events #1210909
    Nico
    Member

    Hi there Marinos,

    Thanks for getting in touch with us and for your interest in our products ๐Ÿ™‚

    What you describe is possible with The Events Calendar + Community Events + some custom code you’d need to write. As stated in our forum guidelines we cannot write this code for you, but we can surely point you in the right direction. In any case this doesn’t sound like a super complicated feature and can be achieved with a simple snippet.

    Do you have some basic knowledge of PHP + WordPress? In case you don’t we have a list of customizers that might help you out with this!

    Please let me know about this,
    Best,
    Nico

    in reply to: Address displayed as multiple paragraphs #1210595
    Nico
    Member

    Hi there Heike,

    Thanks for getting in touch with us! I can help you here ๐Ÿ™‚

    Seems like your theme might be adding those p tags, as I’m not seeing the same result in my local test site using a default theme (like Tweenty Sixteen). 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.

    For now you can add the following CSS snippet to your theme (or child theme) stylesheet or via Simple Custom CSS plugin make this right:

    .tribe-address p {
    display: inline;
    }

    Please let me know about it,
    Best,
    Nico

    in reply to: Get events by username #1210591
    Nico
    Member

    Hey Aaron,

    Glad to help you out on this issue as well ๐Ÿ™‚

    You can use WordPress default author templates for this. Once those are setup you can use the following shortcode to get current user events (please note this will only work in author pages): [tribe_get_current_user_events].

    To enable the shortcode add the code below to your theme’s (or child theme’s) functions.php file:

    // Tribe, [tribe_get_current_user_events] shortcode to get current user upcoming events
    function tribe_get_current_user_events_func( $atts ){

    $output = '';

    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));

    if ( !empty($curauth) ) {

    // more information on tribe_get_events: https://theeventscalendar.com/knowledgebase/using-tribe_get_events/
    $events = tribe_get_events( array(
    'author' => $curauth->ID,
    ) );

    $output = '

      ';
      foreach ( $events as $post ) { setup_postdata( $post );

      $output .= '

    • ';
      $output .= $post->post_title . ' - ' . tribe_get_start_date( $post );
      $output .= '
    • ';

      }
      $output .= '

    ';

    }

    return $output;
    }
    add_shortcode( 'tribe_get_current_user_events', 'tribe_get_current_user_events_func' );

    If you are going to use this in a php template, you can execute the shortcode using:


    Please let me know if this helps,
    Best,
    Nico

    in reply to: Get logged user registered events list with RSVPs #1210586
    Nico
    Member

    Hi there Aaron,

    Thanks for getting in touch!

    You can use the [tribe-user-event-confirmations] shortcode. Check out this knowledge base article showing how it works โ†’ Display a List of Attendeeโ€™s Events. If you want more info on this, the source code for the shortcode is located at event-tickets/src/Tribe/Shortcodes/User_Event_Confirmation_List.php.

    Please let me know if this helps,
    Best,
    Nico

    in reply to: License Key Not working #1210583
    Nico
    Member

    Hi there Hiro,

    Thanks for getting in touch with us!

    From what you describe it seems you are placing your Events Calendar PRO license in the Event Aggregator license input. These are different products!

    Please go over the New User Primer: The Events Calendar and Events Calendar PRO. This will help you out setting up the plugins correctly!

    Let me know if you still need help,
    Best,
    Nico

    in reply to: color styling the "add to cart" button #1210580
    Nico
    Member

    Hey Sebastien,

    Thanks for the heads-up on the resolution of the issue ๐Ÿ™‚ As you say inspecting the element is usually the best way to find the classes or ids necessary to make style changes.

    Although you could find the answer for this already I’d recommend reading our themer’s guide for more information on how to customize the look and feel of our plugins.

    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: Question about widget and how to configre the output #1210579
    Nico
    Member

    Hi there Knud,

    Thanks for getting in touch with us! Although we cannot help much with customizations, I can give you a hand to get started ๐Ÿ™‚

    1) Theres too much space between each event โ€“ how can I minimize the space?

    Just place the CSS snippet below in the theme (or child theme) stylesheet or via Simple Custom CSS plugin:

    li.tribe-events-list-widget-events {
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 5px !important;
    }

    2) Each event is pressented with two lines โ€“ Can I have it in one line?

    This is possible but a bit more complex. You’d need to edit the template mark up as explained in the themer’s guide.

    3) The time on the event also has โ€œCETโ€ -word attached. How do i disabeld showing this?

    I think you figured this out yourself. In any case you can remove the timezone from the date in ‘WP-Admin > Settings > Timezone Settings > Show timezone’.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Refund Request #1210571
    Nico
    Member

    This reply is private.

    in reply to: pro questions – calendar text color and shortcode mod #1210568
    Nico
    Member

    Hi there Wally,

    Thanks for getting in touch with us! I can help you here ๐Ÿ™‚

    To change the calendar links color, you can add the following CSS snippet to your theme (or child theme) stylesheet or via Simple Custom CSS plugin:

    .tribe-events-month-event-title a {
    color: #000;
    }

    .tribe-events-month-event-title a:hover {
    color: red;
    }

    An to hide the events list under the mini calendar you can use this code:

    .tribe-mini-calendar-list-wrapper {
    display: none;
    }

    Hope that helps,
    Best,
    Nico

    in reply to: Horizontal week or month view and custom templates #1210567
    Nico
    Member

    Thanks for following up Lukasz!

    If authors of the theme you mentioned developed such module, I assume it is possible to create something similar by using Events Calendarโ€™s API, am I right?

    Correct! Take a look at the tribe_get_events function docs, probably that’s all you need.

    Regarding your comments on submitting events. If you don’t need front-end submitting then it makes no sense to use Community Events. What your client is looking to achieve seems to be possible by creating the appropriate user accounts in the back-end. I think that default WordPress roles should be able to manage this correctly but in any case check out this knowledgebase article about Admin roles & permissions for The Events Calendar.

    Please let me know if this helps,
    Best,
    Nico

    in reply to: (How) Can I connect ETPlus with woocommerce deposits? #1210557
    Nico
    Member

    Thanks for letting us know this was answered in another topic Sebastien!

    I’m closing this one out, good luck with your customizations ๐Ÿ™‚

    Cheers,
    Nico

    in reply to: adding event to cart #1210555
    Nico
    Member

    Hi there Sebastien,

    Thanks for getting in touch with us! Seems like Randall kindly provided an answer for your question, so 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.


    @Randall
    , thanks so much for chiming in to help out here! We really appreciate you doing so ๐Ÿ™‚

    Best,
    Nico

    in reply to: Multisite license pricing #1210554
    Nico
    Member

    Hi there Jamel,

    Thanks for getting in touch with us and also for your interest in our products ๐Ÿ™‚

    First of all, you can find all information about this license type here โ†’ Licenses for Multisites.

    You’ll find the prices in each product page by clicking ‘Unlimited and Multisite licenses are also available. Click Here!, under the regular prices list.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

Viewing 15 posts - 1,651 through 1,665 (of 6,506 total)