-
AuthorPosts
-
January 21, 2019 at 3:59 pm #1056743
Hi there,
I use the Events Calendar PRO pluginn. The mobile version does not work as i want. The ‘next’ and ‘previous’ link do not show up in the mobile version. In the pc version of the site these two links show up above the events.
Do you have any idea of solving this problem?
- This topic was modified 5 years, 10 months ago by hanssmeijsters.
January 22, 2019 at 1:39 am #1056980Hey hanssmeijsters,
The links seems to be hidden from the plugin on mobile.
You can contact the plugin author, I am sure they will be able to help further.Best regards,
BasilisJanuary 25, 2019 at 1:07 pm #1058681Hi there,
I contacted the plugin developer and they answered that the Enfold theme templates override the originals of the Events Calendar plugin.
Look the discussion on https://kriesi.at/support/topic/default-template-settings-missing-from-event-calendar-pro/ about this issue. I did add the suggested hook in the functions.php file. The ‘next’ and ‘previous’ link showed up on the mobile version, but a lott of the styling broke down. I only want to show up the ‘next’ and ‘previous’ link on the mobile version. I can not manage that on my own.
Help with achieving that would be highly appreciated.
January 27, 2019 at 7:54 pm #1059415Hi,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 770px) { #tribe-events-header .tribe-events-sub-nav li a { display: block !important; } }
Please see the screenshot in Private Content area of the expected results, and Please clear your browser cache and check.
Best regards,
MikeJanuary 28, 2019 at 11:35 am #1059580Hi Mike,
Thanks. This works fine!
Do you know if there is a way to change the position of these links. Ik would like to show them under the agenda.January 28, 2019 at 2:19 pm #1059631Hi,
To move the pre-next nav to the bottom, Try adding this code to the end of your functions.php file in Appearance > Editor:function move_event_header_nav(){ ?> <script> jQuery(window).load(function(){ jQuery( '#tribe-events-header:first' ).appendTo( '.tribe-events-loop' ); }); </script> <?php } add_action('wp_footer', 'move_event_header_nav');
Best regards,
Mike -
AuthorPosts
- You must be logged in to reply to this topic.