Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi @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,
NicoNico
MemberHey 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHey 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 = '
- ';
- ';
$output .= $post->post_title . ' - ' . tribe_get_start_date( $post );
$output .= '
foreach ( $events as $post ) { setup_postdata( $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,
NicoDecember 26, 2016 at 10:49 am in reply to: Get logged user registered events list with RSVPs #1210586Nico
MemberHi 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,
NicoNico
MemberHi 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,
NicoNico
MemberHey 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,
NicoDecember 26, 2016 at 10:32 am in reply to: Question about widget and how to configre the output #1210579Nico
MemberHi 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,
NicoNico
MemberThis reply is private.
December 26, 2016 at 9:35 am in reply to: pro questions – calendar text color and shortcode mod #1210568Nico
MemberHi 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,
NicoDecember 26, 2016 at 9:25 am in reply to: Horizontal week or month view and custom templates #1210567Nico
MemberThanks 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,
NicoDecember 26, 2016 at 8:27 am in reply to: (How) Can I connect ETPlus with woocommerce deposits? #1210557Nico
MemberThanks for letting us know this was answered in another topic Sebastien!
I’m closing this one out, good luck with your customizations ๐
Cheers,
NicoNico
MemberHi 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,
NicoNico
MemberHi 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 - ';
-
AuthorPosts
