Popular Categories Widget Alphabetize

This topic contains 4 replies, has 3 voices, and was last updated by  Giri 7 years, 9 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #385769

    stargeoteam
    Expired Member
    Post count: 33

    Hi,

    1. I’m we’re SUPREME DIRECTORY theme.
    2. We need a function like the POPULAR CATEGORIES WIDGET that displays categories but we need it in Alphabetical order?

    Can you help us achieve this?

    3. Also how to modify the Popular Categories on the SUPREME directory Homepage. (Maybe which file to customize and look for.)

    Thanks,
    Marco

    #385826

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    that will require a customization of the widget functions, basically you should duplicate it and modify its code.

    geodirectory-widgets/geodirectory_popular_widget.php

    Once you have the customized widget, to change the content you would need to use the following hook to replace the whole function with your own:

    add_action('sd_homepage_content','sd_homepage_featured_content');

    Let us know how it goes,

    Thanks

    #385867

    stargeoteam
    Expired Member
    Post count: 33

    Hi @paolo,

    add_action(‘sd_homepage_content’,’sd_homepage_featured_content’); this code doesn’t make sense. Even if I delete it the homepage still shows the featured categories.

    I even deleted the whole function(sd_homepage_featured_content) and action hook on geodirectory-compatibility and still the POPULAR CATEGORIES still display on the homepage.

    I’m using Supreme Directory. Used a static page as a homepage.

    1. I haven’t solved yet how to make a widget that displays categories in alphabetical order.
    2. I need to MODIFY ASAP how to change the NUMBER OF POPULAR CATEGORIES in the HOMEPAGE of SUPREME DIRECTORY. Can you tell me which file exactly and what line should I modify? I need to do this ASAP as a quick FIX.

    Let us know.

    Thanks

    #385875

    stargeoteam
    Expired Member
    Post count: 33

    Hi,

    I found it now:

    It is under supreme-directory/inc/geodirectory-compatibility.php.

    function sd_feature_area_gd()

    1. In my case I selected a static page as my homepage
    2. sd_homepage_content action hook doesn’t work if this is the case. WHY?
    3. Does it mean that in order for sd_homepage_content work is that I need to use/set the GD HOME PAGE page as my static homepage?

    4. Making a Categories widget sort alphabetically is still in progress.

    Thanks

    #385901

    Giri
    Expired Member
    Post count: 3155

    Follow these steps for alphabetical order.

    File: wp-content/plugins/geodirectory/geodirectory-functions/general_functions.php

    Function: geodir_popular_post_category_output()

    Inside that function replace the following part

    
    
    foreach ( $a_terms as $b_key => $b_val ) {
    	$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count');
    }

    with

    
    
    $sort_by = apply_filters('geodir_pp_category_sort', 'count');
    foreach ( $a_terms as $b_key => $b_val ) {
    	$b_terms[ $b_key ] = geodir_sort_terms( $b_val, $sort_by );
    }

    On the same file find this function geodir_sort_terms

    Replace this code

    
    
    function geodir_sort_terms( $terms, $sort = 'count' ) {
    	if ( $sort == 'count' ) {
    		return geodir_sort_terms_by_count( $terms );
    	}
    	if ( $sort == 'review_count' ) {
    		return geodir_sort_terms_by_review_count( $terms );
    	}
    }

    with

    
    
    function geodir_sort_terms( $terms, $sort = 'count' ) {
    	if ( $sort == 'count' ) {
    		return geodir_sort_terms_by_count( $terms );
    	}
    	if ( $sort == 'review_count' ) {
    		return geodir_sort_terms_by_review_count( $terms );
    	}
    	return $terms;
    }

    Once thats done, add the following code in code snippet plugin.

    
    
    add_filter("geodir_pp_category_sort", "modify_geodir_pp_category_sort");
    function modify_geodir_pp_category_sort() {
        return "alpha";
    }

    Thats all.

Viewing 5 posts - 1 through 5 (of 5 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