Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author websupporter

    (@websupporter)

    Hi erlandsson,
    can you try to alter your template and not use <div style=”float:left;”>. Maybe this helps already.

    Plugin Author websupporter

    (@websupporter)

    My mistake. Please have a look into the res/sf.js. You will find quite in the beginning the function sf_adjust_elements()

    Please try and add the following code at the beginning of the function:

    if( typeof( jQuery( '.sf-result' ).attr( 'sf-stop-adjust-elements' ) ) != 'undefined' )
    		return false;
    
    	jQuery( '.sf-result > li' ).css( {'height':'auto'} );

    So the beginning of the function would look like

    function sf_adjust_elements(){
    	if( typeof( jQuery( '.sf-result' ).attr( 'sf-stop-adjust-elements' ) ) != 'undefined' )
    		return false;
    
    	jQuery( '.sf-result > li' ).css( {'height':'auto'} );
    	var resultlist = jQuery( '.sf-result > li' );

    Tell me, if this works. If it does, it will be included in the next update.

    Thread Starter erlandsson

    (@erlandsson)

    Thanks for quick answer ?? I will try it!

    Thread Starter erlandsson

    (@erlandsson)

    Hi, it looks like it works now!! The results load a little bit slower, but i think its better it looks good from the beginning.

    Great work, thank you so much for your help ??

    Plugin Author websupporter

    (@websupporter)

    Glad to hear, its working ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problems to show many rearch results (loading problem?)’ is closed to new replies.