• Resolved alcivez

    (@alcivez)


    Hi friends, I tried to contact you several weeks ago via Facebook regarding a minor tweak I need to make to the Control Listings to make it look according to my website needs. It’s actually under the CityKids theme, and I’m just trying to add more icons to the list to make it match my categories. Is there any way I can do that?

    Thanks in advance for your support!

Viewing 1 replies (of 1 total)
  • Plugin Author Habibur Rahman Razib

    (@razib_)

    Hi alcivez.

    You can override the plugin functions in your child theme functions.php

    if(!function_exists('control_listings_marker_icon_options')):
    
    /**
    
     *  
    
     * @return  array  
    
    */
    
    function control_listings_marker_icon_options(){
    
        return [
    
            'academics' => 'Academics',
    
            'afterschool' => 'After school care',
    
            'creative' => 'Creative arts',
    
            'dance' => 'Dance',
    
            'language' => 'Language',
    
            'literature' => 'Literature',
    
            'music' => 'Music',
    
            'travel' => 'Travel',
    
            'performing' => 'Performing Arts',
    
            'outdoor' => 'Play outdoor',
    
            'religious' => 'Religious',
    
            'science-technology' => 'Science & Technology',
    
            'special-needs' => 'Special Needs',
    
            'sports' => 'Sports',
    
            'child' => 'Child',
    
        ];
    
    }
    
    endif;

    You can filter icons too. For more details – https://controllistings.com/2023/06/23/replace-custom-svg-icons-in-control-listings/

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Update or Change Icons for Control Listings’ is closed to new replies.