Forum Replies Created
-
AuthorPosts
-
June 27, 2016 at 9:03 am in reply to: Bypass Cart page – Buy tickets and go straight to checkout #1132379
Andras
KeymasterHello Oliver,
Thanks for reaching out and welcome to the forums!
If you are using WooCommerce then for your first question I believe this plugin would give you a solution:
For your second one check out this:
Let me know if these help you with your questions.
Cheers,
AndrasAndras
KeymasterHello kadavila and welcome to the forums!
Thanks for submitting your system info and doing the test for conflicts. That’s much appreciated, not all do that upfront.
I’m sorry you are experiencing still that problem. Are you getting that error also when you only have The Events Calendar activated and EC Pro in deactivated? Or only when both are active?
Meanwhile I wait for your answer I will also try to investigate / recreate the issue.
Thanks and cheers,
AndrasAndras
KeymasterHey Malcolm,
I’m super happy that solution works for you! 🙂 Glad I could help!
I guess creating different forms could be possible, but that would require customization which is well beyond our support.
I can share with a list of freelancers who should be able to help you develop what you need, and who are not affiliated with us in any way:
https://theeventscalendar.com/knowledgebase/find-a-customizer/
Let me know if you have any followup questions regarding this topic.
Cheers,
AndrasAndras
KeymasterHello,
The AM / PM error doesn’t come from the code, but from how the event timings are set up. Please check if your event timings are set properly to the PM time.
As for start and end date, you would need to modify your custom code and add somewhere a line that checks this.
If start and end time are same, then only echo out start time (or end time). Otherwise echo as usual.
Something like this in the end:
else{
if ($start == $ end) {
$this_event_date = $end_date;
}
else {
$this_event_date = date_format($start, ‘F d Y @ g:H’) . ‘ – ‘ . $end_date;
}
}
Let me know if this solves it for you.Cheers,
AndrasJune 27, 2016 at 5:58 am in reply to: Text not wrapped around image on main events page since update 4.2.1 #1132239Andras
KeymasterHi Nicolas,
I’m sooooo happy it helped, so let’s try to take it a step further. I’ll start with your 1st reply from 11:31.
If you want to rearrange the looks only on desktop, then you can add a so-called media query, like this:
@media screen and (min-device-width: 1200px) {
.tribe-events-list .tribe-events-event-image {
width: 30%;
}
.tribe-events-list .tribe-events-event-image + div.tribe-events-content {
width: 67%;
}
}
This basically says, that if the screen resolution is at least 1200 px, then it should use the css defined. Otherwise leave the original. That should leave the original looks on mobile.You can, of course, adjust the 1200px to your liking, but wouldn’t recommend to go too low. Some mobile devices have 1024px width when in landscape.
You can search around more on the topic typing css media queries in google.
Let me know if this solution works for you.
Now on the second one:
When the above snippet is implemented in the theme’s CSS, theme breaks on some pages
Hmmmm… I checked your 2 links, but didn’t see any difference. Anyway, yes, it is possible to limit it to certain pages or page templates. Though implementation might be different based on the theme you are using.
If you open the developer tools of your browser (usually via pressing F12), then you will be able to see the HTML code of your site. In the < body > tag you will see lots of classes listed. There are usually specific classes used for different templates or the Events Calendar pages. There might also be a unique identifier for a page, e.g. for your listings page there is page-id-8 in the class list.
So starting from that, you need to add the specific class to your definition. Let’s say you want the css to be applied to only your listing page, then do this:
.page-id-8 .entry-content {
max-width: 1080px; /* this will define the width */
}
If you only want the asia page like that, then you can use:
.tax-job_listing_region .entry-content {
max-width: 1080px; /* this will define the width */
}
If you want both, then:
.page-listings .entry-content {
max-width: 1080px; /* this will define the width */
}
because the page-listings class will be present on all pages that do the listing.I’m sure you get the idea. 🙂
I hope this helps you move forward. Let me know if you have any followup questions in this topic. I’ll be happy to help.
(If you would have questions regarding another issue, then I kindly ask you to open a new thread 1) to keep things clean; 2) easier for us to manage; 3) you most probably will get faster reply.)
Cheers,
AndrasJune 24, 2016 at 2:11 pm in reply to: Hide Google Maps in the overview, settings are not saved/ buttons too small #1131741Andras
KeymasterHallo Mirko,
Dang, I’m sorry about that snippet. The functions.php file of your theme should start with an opening php tag, like this:
<?php
And the snippet should be before the closing php tag like this:
?>
Is it like that?
(I just did a test, copy-pasted the code from here to my local install and it works fine. So the code itself should be OK.)
#Widget bar
This single-event.php is in the child theme folder, but I can not find the php in the main theme folder is that right?
The file should be both in it’s original folder (wp-content\plugins\events-calendar-pro\src\views\pro\widgets\modules\single-event.php) and in the child theme folder as well. To be sure. No need to remove it from its original place.
Can you test if it does the change when you modify the original file and leave it there?
#post code
That can be done with some customization work, which we have limited support for. I recommend the following 2 articles, these should get you started.
https://theeventscalendar.com/knowledgebase/themers-guide/
https://theeventscalendar.com/knowledgebase/template-overview/
#8 the event weblinks are very long and…
At the moment there is no option of doing that unfortunately. If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there. http://tribe.uservoice.com/
Or, which is a simpler solution you can use a link shortener service like https://goo.gl/ or https://bitly.com/
Let me know if these are of any help.
Cheers,
AndrasJune 24, 2016 at 1:23 pm in reply to: Layout crossing, events not showing and link, footer and translation issues #1131729Andras
KeymasterHi Christine,
I’m happy to hear we got #2 fixed. And I’m sure the template creators will help you fix #1 and #3, shouldn’t be too big of a work.
On #4, there are still some options we can try.
Is the calendar page using the same template as the other 3 pages?
Did you try the other settings? Different combination of the settings (on the page and in Events > Settings)?
I’m not familiar with the theme you are using, but I see a Theme options section when you are editing the page. Is there maybe an option to disable the footer part where the widgets are?
As for #5, the guys are working on it.
Meanwhile, please, feel free to add / correct translations on our translation site. At the moment we don’t have a Danish speaker on our team, who could do that, so any help is appreciated.
Cheers,
AndrasJune 24, 2016 at 1:06 pm in reply to: Location based search / Sorting of event closest to the location #1131726Andras
KeymasterHey Catalina,
Welcome to the forums and thanks for chiming in.
For the sake of keeping things clean – as your issue seems a bit different than the original – I would kindly like to ask you to open a separate topic. We will be here to help you out, you will get your own personal consultant who will be focusing on your issue. 🙂
When you are opening a new topic please also include the exact address of the page where this happens. (I couldn’t find it, and if I put Paris in the top right corner in the Recherche box, it does list events in Paris.)
Thanks and cheers,
AndrasAndras
KeymasterHello again Jason,
I’m sorry to hear you are experiencing more problems after the update. I will investigate the additional fields behavior and will get back to you if I find something.
Meanwhile can you confirm you did also test with having all plugins – except for the Modern Tribe ones – deactivated, and the issue still exists?
Thanks,
AndrasAndras
KeymasterHello funinjerusalem,
I can try to help out here, but I am limited in supporting customizations.
I think in the first two lines and the last line you are displaying the hour twice: g:H
Instead try: g:i
Here is the reference guide for date formatting:
http://php.net/manual/en/function.date.php
Let me know if this fixes your issue.
Cheers,
AndrasJune 23, 2016 at 2:40 pm in reply to: Layout crossing, events not showing and link, footer and translation issues #1131227Andras
KeymasterHi Christine,
Thanks for going Pro! We are stoked to hear that you like our plugins.
I’m sorry you are having some issues. Let me try to help you solve them, so you will like our plugins even more. 😉
1 – At the top of the page the “Vis som” (“Show as”) button is crossing the line of the filter bar. How can I change this?
I believe this comes from the theme you are using. Can you try with a default theme like twentysixteen if you are experiencing the same?
2 – When I search for events, the calendar only shows upcoming events for the chosen date.
I checked your site and when I click on ‘Tilbud’ in the menu, then it properly takes me to the calendar and shows the ‘Day view’ with today’s date as a default. You can change that setting under Events > Settings > Display tab > Default view (Begivenheder > Indstillinger > Vis > Standardvisning). Try list view, I think that is the one you are looking for. 😉
3 – I have added a custom field in the event description called “Tilmelding”. The field type is a link. When I write the URL, I write it for instance like this: “https://playmaker.nemtilmeld.dk/328/” Instead of making it a link, the event calendar turns it into a piece of code, that I can’t click. Screenshot: https://drive.google.com/open?id=0B09lyBqL_pARU1pRa0hucU9JMlU
Is this a known issue in the calendar?It’s not a known issue yet. Could you please test if this happens with a default theme?
4 – How can I remove the meta data footer (the grey box) under the calendar?
As a first, please check your widget areas how they are set up. The meta widget might be still hiding in one of them.
Other option is, you are using different page templates for the other pages. You can try changing this setting:
Events > Settings > Display > Events template
5 – Some of the words in the event overview are not being translated into Danish.
We are aware of some translation issues. I’m sorry for this. Some of those might be the victim of that. Our team is working on a fix, though I cannot commit to any date yet.
Meanwhile you can check our translation site, whether they are included or not, and you can propose / add new translations as well.
Let me know how these work out for you.
Cheers,
AndrasJune 23, 2016 at 1:32 pm in reply to: Text not wrapped around image on main events page since update 4.2.1 #1131195Andras
KeymasterHi Nicolas,
I’m sorry you are having this issue since the update. Let me help you with that.
The image is displayed in bigger size than it was before, so you might want to make that smaller too.
Try using this css snippet as a sample, I’ll put some notes below:
.tribe-events-list .tribe-events-event-image {
width: 30%;
}
.tribe-events-list .tribe-events-event-image + div.tribe-events-content {
width: 67%;
}
You can adjust the sizes to your liking, just make sure they add up to 97%, because the image has a 3% right margin that also needs to be included.If you would like to make the whole content wider, then add this as well, adjust as needed:
.page .entry-content {
max-width: 1080px; /* this will define the width */
}
.events-list .tribe-events-loop {
max-width: 100% !important;
}
Let me know if this helps.
Cheers,
AndrasAndras
KeymasterHey Malcolm,
I am glad to see you were able to find a solution for that.
As for limiting the community form, what you can do is hide the specific parts you don’t need and limit the input. However, note, that the new community event form can only be submitted if the required fields (Event Title, Event Description) have a value, so you will need to somehow pre-fill those.
For hiding the specific sections you can paste this snippet in your theme’s styles.css file:
.tribe_community_edit #event_taxonomy, /* Hides Events Categories section */
.tribe_community_edit #event_image_uploader, /* hides Event Image */
.tribe_community_edit #event_datepickers, /* hides Event Time & Date */
.tribe_community_edit #event_tribe_venue, /* hides Venue Details */
.tribe_community_edit #event_tribe_organizer, /* hides Organizer Details */
.tribe_community_edit #event_website, /* hides Event Website*/
.tribe_community_edit #event_cost /* hides Event Cost */
{ display: none; }.tribe_community_edit #event_taxonomy input,
.tribe_community_edit #event_image_uploader input,
.tribe_community_edit #event_datepickers input, .tribe_community_edit #event_datepickers select,
.tribe_community_edit #event_tribe_venue input, .tribe_community_edit #event_tribe_venue select,
.tribe_community_edit #event_tribe_organizer input, .tribe_community_edit #event_tribe_organizer select,
.tribe_community_edit #event_website input,
.tribe_community_edit #event_cost input, .tribe_community_edit #event_cost select
{ pointer-events: none; }
Note: this will hide the elements but they will still be visible in the code.Let me know if this helps.
Cheers,
AndrasAndras
KeymasterHallo nochmal Dominik,
Thanks for sharing your system info. No worries about the local server, we will figure it out and solve it.
There are couple of things which I would like you to check. I will put them here in order, trying with the least time consuming and then we work our way down to more detailed tests.
1. I see you are using different versions of our plugins. We have just released 4.2.1 from each. I would recommend to update all of them. (I also reco making a full backup before updating, just in case. Man kann ja nie wissen…) I see you have personal editions. You can use your license key on your dev site, then when done, you can move it to your live site. Here‘s a nice article about that.
2. Try re-saving your permalinks under Settings > Permalinks
3. Is this happening with other recurring events as well? Is it happening with a newly created recurring event?
If it’s not happening with new ones, then you just might need to delete this and recreate it.4. Are you using any redirection plugins? Those can cause issues like this. Deactivate it, and check if it helps.
5. There might be a redirection set up in your .htaccess file. Give it a check.
6. If the above points didn’t yet provide a positive result, then please do a test for conflicting plugins and themes based on this guide.
Let me know where you get with these.
MfG
AndrasJune 23, 2016 at 12:25 pm in reply to: Hide Google Maps in the overview, settings are not saved/ buttons too small #1131153Andras
KeymasterHi Mirko,
Google maps thing:
If you paste this snippet in your theme’s functions.php file, then you will see the required checkboxes when editing an event:
/**
* Enable Google Maps settings for existing events
* This snippet makes the checkboxes 'Show Google Maps' and 'Show Google Maps Links' visible
* when editing existing events.
* Just paste it in your child theme's functions.php file.
* Created by: Andras Guseo
*/
function enable_google_maps_checkboxes() {
echo '<style type="text/css">
.events-cal.post-php #google_map_toggle, .events-cal.post-php #google_map_link_toggle {display:table-row !important;}
</style>';
}
add_action('admin_head', 'enable_google_maps_checkboxes');
#5 Widget bar:
I appreciate the offer! However, our current policy is not to accept logins or to log in to customer servers/WordPress installations.
I see on your screenshot that the file is right. Do you have any caching plugins enabled? Did you try emptying the browser cache?
You can try simply replacing the file, but it will be overwritten with the next plugin update.
#6 I also need to put the postcode infront of the town (german way of writing an adress)
Can you please specify what exactly you are referring to?
#7 can I blend out the catagories in the single event view?
Try adding this to your theme’s styles.css file:
.single-tribe_events .tribe-events-meta-group-details dl dd:nth-child(6), .single-tribe_events .tribe-events-meta-group-details dl dt:nth-child(5) {
display: none;
}
#8 the event weblinks are very long and…
I saw the error in Edge. Try this in styles.css. It will allow to break the URLs wherever the line reaches the edge of the containing box.
.tribe-events-event-url {
word-wrap: break-word;
}
Do these help?
Cheers,
Andras -
AuthorPosts
