Smooth Scrolling (PHP snippet) not working for bbpress
-
I’ve implemented a smooth-scrolling snippet from GeneratePress as documented here: https://docs.generatepress.com/article/generate_smooth_scroll_elements/
The exact snippet code I use is this:
add_filter( 'generate_smooth_scroll_elements', function( $elements ) { $elements[] = 'a[href*="#"]:not(.wp-show-posts-read-more)'; return $elements; } );
This works for everything on my main site (blog) but does not seem to work for my bbpress forum. I’ve reached out to GeneratePress and got this response:
Hmm I’m not sure why that’s not working unfortunately.
You will need to check with bbPress’ support to see if there is anything from their plugin that’s blocking the code from being executed.
Do you have any ideas on how to solve this? Many thanks in advance!
An example URL: https://300hours.com/forum/cfa/level-2/
- You must be logged in to reply to this topic.