• Resolved m4verick

    (@m4verick)


    Hello,
    Is there a way to add more social media profiles to the drop-down list with a custom name and icon?

Viewing 1 replies (of 1 total)
  • Plugin Support Ali Akbar Reyad

    (@alireyad)

    Hi,
    Yes, you can do it. Add following hook in child theme functions.php file to add more in list –

    add_filter('rtcl_social_profiles_list', function($profiles) {
    $profiles['dribbble'] = esc_html__( 'Dribbble', 'classified-listing' );
    return $profiles;
    });

    Then override the listing details template to display it with icon.

    Thank you

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.