Viewing 1 replies (of 1 total)
  • Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,

    Add this code at your functions.php file at your theme.

    
    function rtcl_custom_type_filter($types){
        $types = array(
            "sell"     => __( "Sell", "classified-listing" ),
            "buy"      => __( "Buy", "classified-listing" ),
        );
    
        return $types;
    }
    
    add_filter('rtcl_ad_type', 'rtcl_custom_type_filter');
    

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘How to control the ad type use?’ is closed to new replies.