-
AuthorPosts
-
January 10, 2021 at 12:16 pm #1271338
Dear Team Kriesi,
I am unfortunately struggling to get the recommended events calender plugin to work.
The list view of the calender seems to look like in the demonstrated video.
However, after clicking on the event itself, it seems kinda bugged and too boxed.
Is there any setting I missed to change or what can I do, to make it look like in the video?
Thanks in advanve.
- This topic was modified 3 years, 11 months ago by alexanderfiegl.
January 10, 2021 at 2:04 pm #1271357Update:
Is there any chance to change the Button Color of “Finde” in the top right to my theme color #58d0f5?
Thanks in advance
January 11, 2021 at 11:19 pm #1271705Alright.
Ive just searched for answer within the forum and got to the following point.
Add the following to the style css:
.main_color #tribe-events-bar, .main_color #tribe-events-bar:before, .main_color #tribe-events-bar:after {
background: transparent;
}This helped out the whole formatting of the events view.
before:
after:However, it added the google maps view twice and completely screwed my whole footer.
google maps:
footer:Is there anything wrong within the added code?
Please help. Thanks in advance
January 16, 2021 at 9:21 am #1272898Hi alexanderfiegl,
I’m very sorry for the late reply. I tried checking your site, but the example you posted leads me to a 404 page, could you check the URL and post it again please? Your screenshots are not working either, please upload them to somewhere where we can access them.
Best regards,
RikardJanuary 16, 2021 at 1:35 pm #1272926Dear Rikard,
sorry that the link and provided pictures didn’t work – ill try again.
As u can see in this video – the individual events page looks different to the one on my page:
Standard look: The Events Calender
My Look: –> check private link
I did already try to add some coding to the ccs, but that didn’t work either.
Maybe you have an idea?
January 20, 2021 at 2:58 pm #1274066Hi,
Sorry for the late reply!
I went to Events > Settings > Display and unchecked “Use updated calendar designs”. Then I added following code to bottom of Quick CSS field in Enfold theme options > General Styling tab
.main_color #tribe-events-bar, #tribe-bar-form{ background: transparent; }
Could you please review your website? :)
Best regards,
YigitJanuary 20, 2021 at 3:17 pm #1274074Dear Yigit,
thanks for your help. Seems to work now!
I kinda have to fix the language now, since some pages are still in english. I do hope that I can solve this issue myself…
Once again, thanks for your help.
January 20, 2021 at 3:34 pm #1274082Hi,
You are welcome!
I just checked all your pages and it seems like there are only English parts in your content so you can simply edit your page and translate those, such as “Get in touch.” :)
If you need further assistance, please let us know!
Best regards,
YigitJanuary 22, 2021 at 2:07 pm #1274715One more thing:
The event itself seems to still not work properly.
Please check the attached screenshots.
The left sided box seems to be to narrow for the ticket service etc.
Last question: How can I change the text of “RSPV jetzt!” to something like “Nimm teil!” and change the color of the whole box as well?
Can not find any option to change it…
Thanks again.
January 30, 2021 at 7:43 pm #1276536Hi,
Sorry for the very late reply. To change the text “RSPV jetzt!” to “Nimm teil!” please add this function to your functions.php, please note to not add the opening<?php
from the gist page and adjust the custom text to suit.
I found this solution from this The Events Calendar theme support page.Best regards,
MikeJanuary 30, 2021 at 10:40 pm #1276547Dear Mike,
thanks for the reply. However, after trying different methods of applying this code, nothing has changed?
I guess I am applying this code to the wrong code sheet?
How can I find the right functions.php for this plugin?
January 31, 2021 at 1:00 am #1276551Hi,
Thank you, I see a test page, linked below, but I don’t see “RSPV jetzt!”, on your page is it “Teilnehmen”?
I added the code to the end of your Enfold > functions.php and adjusted it to look for “Teilnehmen” and change it to “Registration” and now your button says: “Registration”
Please clear your browser cache and check.Best regards,
MikeJanuary 31, 2021 at 10:45 am #1276577Dear Mike,
thanks again for your feedback.
The problem didnt occur at the single event view. “Teilnehmen” would have been correct, but I can change it after.
The problem is that “Teilnehmen” or “Registration” seems to not be correctly shown. The button is not fully shown, as you probably have seen as well.
The problem of “RSPV jetzt!” should be changed at the normal “event list view”.
Here you can see that it says “RSPV now!” in the blue button. That we would like to have changed, since most of our customers won’t now what RSVP stands for.
Thanks again!
January 31, 2021 at 10:51 am #1276578Update: I did find your added code in the functions.php and changed the adjusted text back.
We would only need to get the box “Teilnehmen” to be adjusted to the correct brightness, so that it’s been shown correctly.
Additionally, the button RSPV now at the events list overview needs to be changed to “Anmelden” or something else. We just don’t know which code to put where. Once we know where its at, we can fix all the text by ourselves.Thanks
January 31, 2021 at 4:15 pm #1276592Hi,
To correct the text position of “Teilnehmen” on your single event view please try this css:.single-tribe_events .tribe-common .tribe-common-c-btn,.single-tribe_events .tribe-common a.tribe-common-c-btn { padding: 11px 0 !important; }
For the “RSPV jetzt!” on your event list view I ended up using this function:
function custom_anmelden_script() { ?> <script> (function($){ $(document).ready(function(){ $( ".tribe-events-event-cost a.tribe-common-c-btn" ) .text( "Anmelden" ); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_anmelden_script');
For some reason on that page the Kostenlos button text can be changed with the tribe function but not the RSVP Jetzt!, anyways the new function is working.
I found a Tribe Events knowledgebase article: Custom Wording in the Calendar that explains their function further, if you want to check.
Another option if you have many texts to change is the plugin Say what?Best regards,
MikeJanuary 31, 2021 at 10:55 pm #1276615Dear Mike,
what can I say! Great support and thanks for all the info.
However, after just checking your added code and trying to learn, what I might have done wrong, it suddenly stopped working.
The button “Anmelden” went back to “RSPV jetzt!”.
Maybe you can change the button “RSPV jetzt!” to “Anmelden” again und by any chance, add the second code for the box issue as well?
Tried to do it myself by adding the css but it also didnt seem to work. To be completly honest, I have no idea what I am doing wrong.
A big thanks once again for the support and all the help!
February 1, 2021 at 1:30 am #1276629Hi,
Glad this helped, for the last code block it looks like this line was missing:add_action('wp_footer', 'custom_anmelden_script');
I added it back and now it is working again.
So on the Events page the RSPV jetzt! is now Anmelden, I also added the css, please clear your browser cache and check.Best regards,
Mike -
AuthorPosts
- You must be logged in to reply to this topic.