Forum Replies Created
-
AuthorPosts
-
Andras
KeymasterHi,
This looks like a duplicate of this thread, so I’m going to close this down to keep things clean.
We’ll handle your request in the other thread.
Cheers,
AndrasFebruary 14, 2018 at 1:16 am in reply to: Add Event and Attendee Information to WooCommerce Order Details #1452560Andras
KeymasterHi Thomas,
Thanks for using our plugins!
The extension will only add the additional data to the WooCommerce order page. At the moment that is the only functionality it has. The data will not appear neither on the dashboard order page, nor on the invoice generated by other plugins.
Let me know if you have further questions.
Cheers,
AndrasAndras
KeymasterThe snippet that is on GitHubGist goes into your theme’s functions.php file.
The css snippets go into the styles.css file or whereever you do css adjustments. (There is also an option to do that under Appearance > Customize > Custom CSS)
A.
February 14, 2018 at 12:53 am in reply to: How can I include a ticket from a different event on an existing event page? #1452543Andras
KeymasterHi Daniel,
It would be beneficial for the community if you could (and are willing to) share your solution. Would be much appreciated!
Thanks and cheers,
AndrasAndras
KeymasterHi,
My hunch is that for the other venues the long and lat was automatically retrieved and it is saved in the database, even if the checkbox is not ticked. That is the way it should go.
If I remember correctly we had a bug not long ago, where the long and lat were not generated automatically. Might be that your venue was created then.
If you are still getting this issue with newly created events, then let me know.
A.
Andras
KeymasterAt the beginning of the code there is this line:
if ( !tribe_is_list_view() ) return;This basically means if it is not list view, then don’t do anything. You could extend that to
if ( !tribe_is_list_view() && !tribe_is_view( 'photo' ) ) return;Andras
February 14, 2018 at 12:44 am in reply to: WooCommerce Memberships discounts for event classes #1452528Andras
KeymasterGreat, happy to hear that helped to move things forward.
Regarding the product image, that is not a feature yet. I would suggest to cast your vote here if you’d like to see that as a feature.
Both for the image and categories, I believe it could be doable if you hook into this action:
wootickets_after_save_ticketYou can find that here: wp-content/plugins/wootickets/src/Tribe/Main.php
Hope this helps you get started.
Andras
Andras
KeymasterSure thing bro.
February 13, 2018 at 11:59 pm in reply to: Event tickets – Capacity – Available calculation wrong #1452507Andras
KeymasterThat is indeed weird.
You can create a database export either manually through phpMyAdmin (if you have access), or you can use a plugin like this or this. If the size is too big you will not be able to upload it here, then you can share it through some cloud service.
Shared capacity:
Let say you have a conference room which can seat 100 people, and you want to sell regular and premium tickets. You don’t care how much you sell of each, it can be 100 regular, or 100 premium, or 70-30, but in total it cannot be more than 100.
Independent capacity:
This lists the capacities of the tickets that don’t utilize the shared capacity.
If we stick to the 100 person conference room:
You want to save 10 VIP places, so you will have that ticket with a non-shared capacity of 10.
Then you want to save 20 Gold places, again, non-shared. (If these don’t sell out, then you will have empty places left.)
And to make sure you can sell the most places, you would set the shared capacity (of Regular and Premium) to 70.
That gives 10 + 20 + 70 = 100. (screenshot)
I hope this clarifies.
The independent capacity is calculated automatically.
Andras
Andras
KeymasterHi Paula,
Thanks for getting in touch.
How are you collecting the t-shirt sizes? Are you using the additional attendee meta form of Event Tickets Plus or you do it via WooCommerce ?
Can you share a URL to an event / page like this?
Thanks,
AndrasAndras
KeymasterNikolas, if you need further help, please share your system information with me. Thanks! A.
Andras
KeymasterHi Nicolas, Grüss Dich
I’d be happy to help you out with your questions.
In the calendar you see a serial event without pic:
I checked the URL but lead me to a totally blank page.
This one “https://kiez-eltville.de/kurs/test/” showed me an event that had a pic. Did you manage to get it working?
this is the event i can´t update
By update you mean you cannot change the featured image?
Can you change it in steps?
- Remove featured image -> update
- Add new featured image -> update
If I post a event URL on Facebook there is no post pic just text.
Can you share with me a URL that works when adding to Facebook and one that doesn’t work? I’d like to test it as well and check if I can find something.
I have a hunch an probably an SEO plugin like Yoast or All-in-One Seo will help you with this.
Can I put some free space between the starting point and the heading from the event
Yes you can and it looks like you already managed. 🙂 If not, then again please share with me a URL and / or a screenshot where you would like this to happen.
Freundliche Grüsse,
AndrasAndras
KeymasterHey alliances,
Thanks for your question.
I can try to help you out here, but please note that customizations are beyond the scope of our support.
How can I make the boxes larger so that they show more nicely?
This is tricky as the layout generation is driven partially by javascript. I will need some time to look into it if it’s possible.
How can I set the entire frame to start at 8 am?
Try this snippet:
https://gist.github.com/andrasguseo/2f54569869dd2e1556af4537e00b34ce
How can I remove the all day row?
This css snippet should do that.
.tribe-grid-allday {
display: none;
}Alternatively you can create a template override for this file:
wp-content/plugins/events-calendar-pro/src/views/pro/week/loop-grid-allday.php
The override file should be empty.
How can I expand the overall wrapper box to show all events without scrolling
You can use this:
.tribe-week-grid-wrapper.tribe-scroller.has-scrollbar {
height: 660px;
}Depending on the timeframe you want to show the height needs to be the shown hours times 60px.
If you make the rows higher than 60px then of course you need to multiply that.
Widen the time column
Like this:
.column.tribe-week-grid-hours, .tribe-events-grid .column.first, .tribe-week-grid-hours {
width: 100px;
}
.tribe-grid-content-wrap {
width: 98%;
}You will need to play around with the values here as the 2nd depends very much on the 1st.
I want to add background colors
Where do you want to add background colors?
If for events then I can recommend The Events Calendar Category Colors.
Cheers,
AndrasFebruary 13, 2018 at 4:37 am in reply to: WooCommerce Memberships discounts for event classes #1451496Andras
KeymasterHi steamfablab,
Thanks for reaching out and for using our plugins.
It should be possible to achieve what you described.
The way to go about it is to assign a specific category to the WooCommerce ticket product and use that in the membership discounts setup, and not the category of the event itself.
Check and let me know if this helps.
Cheers,
AndrasAndras
KeymasterHi moonsrarebooks,
Thanks for reaching out!
That should be possible and the events should have a different url. I tested this and could re-create, it looks like we are facing a bug here.
I filed a high priority bugticket on this and will definitely flag it to the development team to get it fixed fast. Meanwhile please hang in there.
I am going to set the status of this ticket to “pending fix” and we will update it once the fix is released.
If you have any new questions or issues please create a new ticket and we’ll help you out.
Thanks and cheers,
Andras -
AuthorPosts
