-
AuthorPosts
-
June 18, 2021 at 4:59 pm #1306419
hello all
I have made 12 entries here in the portfolio
below is the link to the first entry
then below is also the CSS code for scrolling
at the first 3 entries I created a revolution slider
there the scrolling works without problems
with the rest I have a layerslider in the header
there the scrolling is no longer visible
what can I do herethanks
kind regards
FranzJune 21, 2021 at 4:43 am #1306637Hi Franz,
I can’t see any problem with scrolling on the page in private. Could you try to explain the problem a bit further, or post a screenshot highlighting it please?
Best regards,
RikardJune 21, 2021 at 7:05 am #1306661If you click in the menu on “Sortiment” on “Sekt”
opens the portfolio there you can scroll to the right
on the first page is a RevolutionSlider installed
also on the second and third page.
there i can scroll to the right and left
from the fourth page in the portfolio layerslider are installed
from there on the scroll buttons are no longer visiblethank you and kind regards Franz
June 22, 2021 at 4:27 am #1306839Hi,
The theme automatically disables the navigation when there is a full width element in the page such as the layer slider. To alter that behavior, try to add this filter in the functions.php file.
function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; } add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
Best regards,
IsmaelJune 22, 2021 at 7:14 am #1306875Hello Ismael
Thank you very much for your answer.I have now added the filter in the function.php
did this in the enfold child themebut nothing has changed
you can have a look here
thank you and kind regards
FranzJune 23, 2021 at 7:50 am #1307082Hi,
Thank you for the update.
We edited the functions.php file and adjusted the filter a bit. The navigations are now displaying correctly in the post with the layer slider.
/* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; return $settings; } add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
Best regards,
IsmaelJune 23, 2021 at 11:47 am #1307120Hello Ismael
Thank you very much
Now it works greatThanks for the imme again for the excellent support
This request can now be closed.
kind regards
FranzJune 24, 2021 at 10:00 am #1307271Hi Franz,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
- The topic ‘scrolling no longer visible with layerslider’ is closed to new replies.