-
AuthorPosts
-
May 20, 2019 at 10:35 pm #1102622
Hello,
I’ve just installed the Events Calendar Pro plugin. Are there any options to adjust the design of the calendar page? I cannot find any options to do so.I have got three main concerns:
1. Is it possible to put a color-section with an image behind that calendar?
2. Is it possible to change the font of the “Upcoming Events” headline?
3. Is it possible to add a text-section above the whole calendar design?To put it differently: it seems as if the plugin determines the whole design of the page by overwriting any pagedesign made in the ALB before. If possible, I’d like to be more free in designing the eventpage.
If any of this is not possible, can you tell me how to “move” the socket to the bottom of the page so that it’s not in the middle of the page?
Thank you very much!! If you need any further information, please let me know!
Niklas
- This topic was modified 5 years, 5 months ago by fairerocknroll.
May 23, 2019 at 5:32 am #1103546Hey Niklas,
Thank you for using Enfold.
1.) You cannot modify the calendar page using the advance layout builder, so you can’t add a color section. It’s possible but you have to modify the calendar template file manually, which is not something we can help you with.
2.) Use the following css code to change the style of the headline.
h1.tribe-events-page-title { /* styles here */ }
3.) Yes, it’s possible. You have to modify the theme’s \config-events-calendar\views\default-template.php file. Place the text right after this container. Or utilize the “tribe_events_before_html” filter.
Example:
/* * The Events Calendar - Add Content to Month View Only * @version 1.0 */ add_filter( 'tribe_events_before_html', 'tribe_events_before_html_mod', 10 ); function tribe_events_before_html_mod( $tribe_events_before_html ) { if ( tribe_is_month() ) { $tribe_events_before_html .= 'Add your custom text here.'; } return $tribe_events_before_html; }
Best regards,
IsmaelMay 23, 2019 at 1:02 pm #1103651Thank you very much! That works!
Is it possible to move the “Find Events”-button to the left and the “Events – From” and “Search – Keywords” to the right?
I’ve attached a screenshot!https://beyond-limitation.com/screenshot/
And is there a code that fixes the socket on the events page to the bottom, if there is not enough content in the middle? I’ve found some posts on that topic, but they don’t seem to help in this case. If I click on an event (e.g. https://beyond-limitation.com/event/treffen/) there is the same problem.
Can you help me with that?
Blessed by your great support,
Niklas- This reply was modified 5 years, 5 months ago by fairerocknroll.
May 27, 2019 at 10:17 pm #1104605Hi,
Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.