BL Interactive

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 64 total)
  • Author
    Posts
  • in reply to: WPGeo Breaks wp bakery video aspect ratio #515419

    BL Interactive
    Expired Member
    Post count: 83

    this CSS fixes the issue.


    BL Interactive
    Expired Member
    Post count: 83

    I am having the same issue. What is the fix?

    Can the share script be completely disabled?

    in reply to: Search inconsistant and not smart #384237

    BL Interactive
    Expired Member
    Post count: 83

    So, having the tags “bicycle” and “rentals” AND having the description as “Pontoon boat, ski boat, bicycle, canoe and kayak rentals delivered to all area lakes and trails. No delivery charge for multiple day rentals. Home of the hassle free rental” is not enough to show up for “bicycle rentals” even though both words are as tags and in the description.

    That is pretty unacceptable search. Can this be addressed?

    in reply to: Search inconsistant and not smart #384201

    BL Interactive
    Expired Member
    Post count: 83

    If you look at my original post, the listing has rentals as a tag. so Why does it not show up?

    in reply to: Search inconsistant and not smart #382400

    BL Interactive
    Expired Member
    Post count: 83

    Does search not include the tags?

    in reply to: Search inconsistant and not smart #382360

    BL Interactive
    Expired Member
    Post count: 83

    My point is that there are tags and words in the description for both rental and rentals but a search for bike rentals doesn’t display this business.

    in reply to: Search inconsistant and not smart #381194

    BL Interactive
    Expired Member
    Post count: 83
    This reply has been marked as private.
    in reply to: Lodging Availability System #368914

    BL Interactive
    Expired Member
    Post count: 83

    Thanks. I looked into something like brolmo but by client whats it to be filterable.

    Ideally this would be able to be in the advance search dropdown. similar to how the events work.

    @justmark – I’d like to see this woo commerce thing you mentioned.

    in reply to: User and listing Spam Injections #362359

    BL Interactive
    Expired Member
    Post count: 83

    Better yet, Is there a way to turn all of this off? No submissions, no favorites, all managed by a single admin?

    All I want is listings. Do I still need the GeoDirectory Payment Manager installed to link events to places?

    in reply to: Missing listings when sorted by random #348314

    BL Interactive
    Expired Member
    Post count: 83

    Shit. After much fuss, my client has formally requested a Geodirectery replacement if I cannot resolve this issue in 1 week. I am willing to pay to get this sorted out (no pun intended).

    Caching aside, I can disable that.

    Can anyone shine some light on integrating this snippet?

    
    
    <?php
    session_start();
    add_filter( 'posts_orderby', 'randomise_with_pagination' );
    function randomise_with_pagination( $orderby ) {
    	if( is_front_page() ) {
    	  	// Reset seed on load of initial archive page
    		if( ! get_query_var( 'paged' ) || get_query_var( 'paged' ) == 0 || get_query_var( 'paged' ) == 1 ) {
    			if( isset( $_SESSION['seed'] ) ) {
    				unset( $_SESSION['seed'] );
    			}
    		}
    	
    		// Get seed from session variable if it exists
    		$seed = false;
    		if( isset( $_SESSION['seed'] ) ) {
    			$seed = $_SESSION['seed'];
    		}
    	
    	    	// Set new seed if none exists
    	    	if ( ! $seed ) {
    	      		$seed = rand();
    	      		$_SESSION['seed'] = $seed;
    	    	}
    	
    	    	// Update ORDER BY clause to use seed
    	    	$orderby = 'RAND(' . $seed . ')';
    	}
    	return $orderby;
    }
    ?>

    I’m not sure how to call GD posts to replace if( is_front_page() ) {

    Any help will be much appreciated.

    Though, the author of this script mentioned:

    Anyway – I thought I’d jump in here quickly to let you know that as of WordPress 4.5, that snippet in my post will be unnecessary (although it will still work of course). The reason for this is that in v4.5+ you will be able to specify a seed value for the random ordering from directly within the WP_Query args. So you can set your orderby parameter to look like this: rand(123) (where ‘123’ is your seed value) – that will achieve the same results as the solution in my post, but using much less code. You’ll still need to use the session to store the seed value, but you won’t need to use the posts_orderby filter anymore. Pretty neat!

    in reply to: Missing listings when sorted by random #336200

    BL Interactive
    Expired Member
    Post count: 83

    Multiple people have not been able to find it, on various computers. switching to A_Z and back, or being logged in helps. But this is a directory plug-in and if paying members are not showing up, that is a huge issue.

    As for random not being default, it is. When you change the sort, the URL is appended with ?sort_by=post_title_asc so simply refreshing the page keeps the sort order.

    in reply to: Missing listings when sorted by random #336008

    BL Interactive
    Expired Member
    Post count: 83
    This reply has been marked as private.
    in reply to: Random pagination broken #165844

    BL Interactive
    Expired Member
    Post count: 83

    What if infinite scrolling or load more was an option? Someway to use Ajax Load More – Infinite Scroll

    in reply to: event time dropdown broken #160205

    BL Interactive
    Expired Member
    Post count: 83

    GD core 1.5.9 and/or events 1.3.3 resolved this issue

    in reply to: calendar widget missing events #47136

    BL Interactive
    Expired Member
    Post count: 83

    That Did it. Thanks!

Viewing 15 posts - 1 through 15 (of 64 total)