Forum Replies Created
-
AuthorPosts
-
October 27, 2016 at 9:50 am in reply to: Extension to plugin to allow for reconnecting disconnected Eventbrite Events #1183891
Nico
MemberSure Jon, I hope too this can be squeezed in soon π
Anyway I guess it won’t make to the upcoming maintenance release due to time constrains. Although it’s just a guess, until I hear back from dev!
Best,
NicoNico
MemberThanks for following up Rodri π
I’ve touched base once again with one of our devs helping me on this customization. He gave me a sample code for you to work on top:
$file_id = FILE ID OF FILE IN MEDIA LIBARARY;$record = Tribe__Events__Aggregator__Records::instance()->get_by_origin( 'csv' );
$meta = array(
'origin' => 'csv',
'type' => 'manual',
'file' => $file_id,
'content_type' => 'tribe_events',
'column_map' => array(
'one',
'item',
'per',
'column',
'using',
'valid',
'event',
'field',
'names',
),
);$post = $record->create( 'manual', array(), $meta );
if ( ! is_wp_error( $post ) ) {
$record->queue_import();
}
It’s intended to be a starting point not as a final solution!
Please let me know if you can make it work for a test import at least,
Best,
NicoNico
MemberThanks for following up with the CSV file!
I’ve created a test CSV file based on the one you sent, and I can confirm that adding the end date makes the end time work. I just added the column and used the same date as the start date.
Can you give this a try? Here’s the sample file β nico-sample
Please let me know if this helps,
Best,
NicoOctober 27, 2016 at 8:12 am in reply to: Custom markers depending on event or venue category #1183754Nico
MemberThis reply is private.
October 27, 2016 at 7:58 am in reply to: Problems with Event Tickets Plus with Marketpress German Market Plugin #1183736Nico
MemberThis reply is private.
Nico
MemberHey Josh,
Thanks for getting in touch with us! I can help you here π
Actually I’m working on a very similar customization for another customer. I hope to have this ready today (or tomorrow), when I have a working version I’ll send it your way!
Best,
NicoNico
MemberHi there Brian,
Thanks for getting in touch with us!
I was trying to reproduce the issue you state but stumbled upon a different know bug which is “Multisite – Cannot load tribe-common error when saving a license”. Are you able to correctly save the license key at all? I’m able to save it but the error ‘cannot load tribe-common’ shows up after ‘Saving Changes’.
Regarding the tickets iframe, I was able to see it using the latest versions of the plugins (The Events Calendar and EventBrite tickets) with and without a valid key in the site. This can be caused by a different reason. Do you see it failing consistently for all events with EventBrite tickets?
Please let me know about it,
Best,
NicoOctober 26, 2016 at 1:28 pm in reply to: insert ticket field set with ur snippet on email don’t work #1183385Nico
MemberHey Shaun,
Thanks for chiming in! Try this version, which should output the values:
foreach( $fieldset_meta AS $item => $value ) {foreach( $fieldset_meta[$item] AS $key => $value ) {
echo 'Attendee - '. $cnt .'
';
echo 'Name: ' . $value['name-of-attendee'] . '
';
echo 'Email: ' . $value['email-address-of-attendee'] . '
';$cnt++;
}
}
Please let me know if that works for you,
Best,
NicoNico
MemberHi there @sparxoo,
Thanks for getting in touch with us! I can help you on this π
I’m not 100% sure that I understand correctly what you are trying to do here, but I guess it’s just modifying the calendar main query. Take a look at the code sample below:
/* Tribe, limit posts just to a category */
add_action( 'pre_get_posts', 'limit_events_category' );
function limit_events_category( $query ) {
if ( $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) ) {$query->set( 'tax_query', array(
array(
'taxonomy' => TribeEvents::TAXONOMY,
'field' => 'slug',
'terms' => array('results'),
'operator' => 'IN'
)));
}
}
It’s just a starting point but I guess it will give you the base to craft your customization!
Please let me know about it,
Best,
NicoOctober 26, 2016 at 7:24 am in reply to: I pasted a code you gave me, my site is not working #1183155Nico
MemberThis reply is private.
Nico
MemberHi there Olayinka,
Thanks for getting in touch with us and for your interest in our products!
Regarding your inquire, yes this is possible with Community Events add-on π
Please make sure to checkout the product page where you’ll find a video demo and let me know if you have any doubts,
Best,
NicoOctober 25, 2016 at 7:15 pm in reply to: I pasted a code you gave me, my site is not working #1182926Nico
MemberHi Bruno,
Thanks for getting in touch with us once again and really sorry to hear about this issue in your site π
Most probably this issue was caused because the code was copied including the php opening tag (<?php) or maybe it was another similar formatting issue. The code itself doesn’t seem to be causing the error (unless the description is not indicating this).
Then I changed the theme, and the page started to work, but you know, horrible. The error was so big, we couldnβt find the function.php file in the CPanel. We ended up also deleting both plugin files from there. Then I activated the theme again, and I found the fuction.php file and I deleted the code. But the problem itβs still there.
I’m aware the article doesn’t mention this but it’s a WordPress good practice to not edit the theme files directly (unless it’s a theme you crafted) but use a child theme instead. Also, please note that to restore the site you just need to remove the code from the theme which can be tricky if you are doing this from the WordPress Admin (because the error will prevent the page from loading), but editing the file to remove the snippet with an FTP client or via cPanel file manager should be the way to go. As the snippet lives in the theme’s (or child theme’s) functions.php file removing the plugins won’t fix this as you noticed π
I need my site working well, and I spected the plugin also. I need your help becaause this plugin is causing me a lot of problems.
So from what you describe the site is working well right now that the snippet has been removed right? If that’s the case please share the content of your functions.php (you can do so with a Gist, PasteBin or any other code sharing service) and I can send you over the file contents with the snippet in. Hopefully this will activate the snippet without generating errors to the site!
Please let me know about it,
Best,
NicoPS: I noticed the site is in Spanish, if you want to continue the conversation is that language just reply en EspaΓ±ol π
Nico
MemberHowdy Gianluca,
Welcome to our support forums and thanks for reaching out to us!
Unfortunately this is not possible π You’ll need to create single events for this! You can use a post duplication plugin to save time, but you cannot have more than one venue per event.
You are welcome to suggest this feature request at The Events Calendar user voice page, where we gather feedback from our community.
Please let me know if there’s anything I can help you with,
Best,
NicoNico
MemberHi Steven,
Thanks for reaching out to us and for your interest in our products π
Your explanation does makes sense, thanks for the detailed description! But unfortunately I don’t think that Event Tickets Plus won’t server your needs at least not out of the box.
The client runs an event that is open for 1 week with timeslots on each day that the customer can purchase tickets for. Eg. Mon-Fri, slots everyday (every 15mins) from 11am β 5pm. Each timeslot has an allocation of 25 tickets. Child price β Β£6, Adult Price Β£5.
Our plugin doesn’t manage ‘timeslots’ so you’ll need to create a new ticket for each one manually (unless you automate this with a script). Variations (child/adult price for the same ticket) aren’t supported as well, so you’ll need to crate a ticket for each option with their own stock.
Although at first look I don’t think our plugins will be the right choice for your project, generally the best way to be sure about this is to actually make a test! If you decide to do so you can go ahead and purchase the products for testing. If you decide they are not what you are looking for, you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy. Also, please take a look at the Event Tickets Plus product page in where you’ll find a video demo of the basic usage of the plugin.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberThanks for clarifying Derek!
One more thing before I give this snippet a try: if no date is selected do you still want to limit the events shown to the current day? Or do you want this limit to take effect when a date is selected in the picker?
Please let me know about it,
Best,
Nico -
AuthorPosts
