Forums Forums Search & Filter Pro Result is misshapen

Viewing 8 posts - 1 through 8 (of 8 total)
  • Anonymous
    #183853

    Hello,
    I have a problem with Search And Filters. When doing a search by theme for example, the result appears but the layout is misshapen.
    In addition I can not update the plug-in from WordPress. Thank you for your help.
    cordially

    Trevor
    #183862

    Thanks for contacting us. What version of our Pro plugin do you have installed? If you have v2.4.3 (or some earlier versions), this thread will be applicable:

    https://support.searchandfilter.com/forums/topic/problem-with-updating/

    With regard to the appearance of the results, what theme are you using (and are you using a child theme), and are you able to send me a live link/URL to your search page so I can take a look?

    Anonymous
    #183878

    Hello
    I just put the last version and the problem persists. Here is the link : https://e2bse.fr/enseignements-audios.
    It is a search by authors that the result on the page is curious.

    The theme is Vantage
    I do not have a child theme
    Thanks

    Trevor
    #183901

    You are using the Shortcode method. Did you modify the results.php, and what is wrong with the appearance of the results? I notice that the column widths change. Is that the issue?

    Anonymous
    #183927

    In fact I created a result.php page that I put in my theme. Actually, I modified the result page so that it is to my taste.
    By doing a search in theme for example, the first two results are good but the following does not respect the widths of the columns actually.

    It may be related to another plug-in …

    Anonymous
    #183933

    in fact it is necessary to reactualize the page so that everything returns in the order.

    Trevor
    #183967

    I can see what the issue is. Something (a plugin or your theme) is placing custom classes on the columns for each posts and making CSS to set the width of them. When the posts are refreshed using our Ajax, the CSS is not being made. That means the CSS is being made using javascript, and that javascript is from wither your theme or the plugin, and needs to be re-triggered after our Ajax has run. We have a sample script for this, but I do not know what needs to be run. That would come from whoever wrote the code that makes that CSS. The necessary script would look like this:

    <script>(function ( $ ) {
      "use strict";
      $(document).on("sf:ajaxfinish", ".searchandfilter", function(){
        console.log("ajax complete");
    
    // call your function(s) here
    
      });
    }(jQuery));</script>
    Anonymous
    #184027

    Hello
    I found the solution. In fact I use ACF with variables. I also use Black Studio TinyMCE Widget for the layout. In the box where the scrolling text is located, I noticed that the css (overflow-y: scroll;) was not applied in some results. I unchecked “Load results using Ajax” from Search and Filters and now it works. So there is a conflict with Black Studio TinyMCE Widget and its css. The main thing is that it works. Thanks for your help.
    cordially

Viewing 8 posts - 1 through 8 (of 8 total)