Forums › Forums › Search & Filter Pro › Elementor Pro
- This topic has 18 replies, 3 voices, and was last updated 6 years ago by Trevor.
-
Trevor(Private) October 30, 2018 at 5:27 pm #192196
Are you still working on a localhost install?
I think this might be an issue similar to this one:
https://support.searchandfilter.com/forums/search/elementor/
(many of the posts are private, but the solution was given publicly, albeit that the elementor identifiers for the html objects may be different in your case.
The key post is this one:
(It was the final solution. The following posts were trying to help the user implement it).
Anonymous(Private) October 30, 2018 at 7:51 pm #192224Looking good thanks for the info.
Just in case anyone else stumbles across this issue, I achieved it by doing the following:
I added my custom css only to relevant page in elementor.
body.sfajax .elementor-127 .elementor-element.elementor-element-a0f90c5 .elementor-posts-container .elementor-post__thumbnail { padding-bottom: 0 !important; }
Then I created my own function and placed this in my child themes function.php and linked it to my custom js which I placed in the root.
(function ( $ ) { "use strict"; $(document).on("sf:ajaxstart", ".searchandfilter", function(){ jQuery("body").addClass("sfajax"); }); }(jQuery));
-
AuthorPosts