Insert category count

This topic contains 3 replies, has 3 voices, and was last updated by  Kiran 5 years, 7 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #505048

    Scott Harris
    Lifetime Member
    Post count: 74

    Is there a short code or snippet that we can used in v2 to insert the category count by category. I would like to achieve something like this. https://www.sonoma.com/wineries/

    #505058

    Alex Rollin
    Moderator
    Post count: 27815

    Hello,

    that would require some customization but you can use these functions:

    
    
    
    $total = GeoDir_Location_Country::count_posts_by_name( $item->country );
    $total = GeoDir_Location_Region::count_posts_by_name( $item->region, $item->country );
    $total = GeoDir_Location_City::count_posts_by_name( $item['city'], $item['region'], $item['country'] );
    

    An example, untested:

    
    
    
    /**
     * Count listing by city, region, country.
     *
     * CITY:
     * PHP : echo do_shortcode( '[gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"]' );
     * HTML: [gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"]
     *
     * REGION:
     * PHP : echo do_shortcode( '[gd_snippet_listings_count type="region" region="Gujarat" country="India"]' );
     * HTML: [gd_snippet_listings_count type="region" region="Gujarat" country="India"]
     *
     * COUNTRY:
     * PHP : echo do_shortcode( '[gd_snippet_listings_count type="country" country="India"]' );
     * HTML: [gd_snippet_listings_count type="country" country="India"]
     */
    function gd_snippet_listings_count_sc( $atts, $content = '' ) {
    	$defaults = array(
    		'type' => 'city', // country, region, city
    		'country' => '',
    		'region' => '',
    		'city' => ''
    	);
    ​
    	$args = wp_parse_args( $atts, $defaults );
    ​
    	$content = 0;
    	
    	switch( $args['type'] ) {
    		case 'country':
    			if ( ! empty( $args['country'] ) ) {
    				$content = GeoDir_Location_Country::count_posts_by_name( $args['country'] );
    			}
    			break;
    		case 'region':
    			if ( ! empty( $args['region'] ) ) {
    				$content = (int) GeoDir_Location_Region::count_posts_by_name( $args['region'], $args['country'] );
    			}
    			break;
    		default:
    		case 'city':
    			if ( ! empty( $args['city'] ) ) {
    				$content = GeoDir_Location_City::count_posts_by_name( $args['city'], $args['region'], $args['country'] );
    			}
    			break;
    	}
    	
    	return $content;
    }
    add_shortcode( 'gd_snippet_listings_count', 'gd_snippet_listings_count_sc' );
    

    For more help with this customization you can find support here: https://geodirectoryexperts.com/

    #505168

    Scott Harris
    Lifetime Member
    Post count: 74

    Thanks for this. I’ll try it out. Is there a similar snippet to display specifically category count? I use categories to group listings by region since the wine region names are not city/state-based.

    I know that GD has the [gd_categories] shortcode to display categories and counts, but I don’t think we can add custom images with that.

    #506192

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
Viewing 4 posts - 1 through 4 (of 4 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount