New Landing How can we help? Themeforest Theme Support Dante have a envelope icon and phone icon next to social icons in Team

Viewing 6 posts - 1 through 6 (of 6 total)
  • Posted in: Dante
  • #177471
    bpritzl
    Member
    Post count: 11

    I would like to add linked envelope icons and phone icons to be used in the team carousel and team gallery to be used throughout the site. Currently, there are social media icons/links–so right along those lines the same type of look for email and phone.

    Thanks!

    Great theme, btw!

    #177531
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please create a screenshot image mockup so i can get your change request exactly.
    Thanks
    Mohammad

    #177797
    bpritzl
    Member
    Post count: 11

    Here is the current display:

    #177798
    bpritzl
    Member
    Post count: 11

    Here is a mockup of what we would ideally like:

    Attachments:
    You must be logged in to view attached files.
    #177800
    bpritzl
    Member
    Post count: 11

    Im not sure why the first (current display) didn’t upload–Ill try again.

    Attachments:
    You must be logged in to view attached files.
    #178069
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please open to edit team.php file at /dante/swift-framework/page-builder/builder/shortcodes.

    1- Find this code:-
    if ($member_dribbble) {
    						$items .= '<li class="dribbble"><a href="http://www.dribbble.com/'.$member_dribbble.'" target="_blank"><i class="fa-dribbble"></i><i class="fa-dribbble"></i></a></li>';
    					}
    
    Replace with:-
    if ($member_dribbble) {
    $items .= '<li class="dribbble"><a href="http://www.dribbble.com/'.$member_dribbble.'" target="_blank"><i class="fa-dribbble"></i><i class="fa-dribbble"></i></a></li>';
    }
    
    if ($member_envelope) {
    $items .= '<li class="envelope"><a href="mailto:'.$member_envelope.'" target="_blank"><i class="fa-envelope"></i><i class="fa-envelope"></i></a></li>';
    }
    
    if ($member_phone) {
    $items .= '<li class="phone"><a href="#" target="_blank"><i class="fa-phone"></i><i class="fa-phone"></i></a></li>';
    }
    
    ----------------------------------------------------------------
    
    2- 
    Find this code:-
    if ($member_dribbble) {
    						$items .= '<li class="dribbble"><a href="http://www.dribbble.com/'.$member_dribbble.'" target="_blank"><i class="fa-dribbble"></i><i class="fa-dribbble"></i></a></li>';
    					}
    
    Replace with:-
    if ($member_dribbble) {
    $items .= '<li class="dribbble"><a href="http://www.dribbble.com/'.$member_dribbble.'" target="_blank"><i class="fa-dribbble"></i><i class="fa-dribbble"></i></a></li>';
    }
    $member_email = sf_get_post_meta($post->ID, 'sf_team_member_email', true);
    $member_phone = sf_get_post_meta($post->ID, 'sf_team_member_phone_number', true);
    if ($member_envelope) {
    $items .= '<li class="envelope"><a href="mailto:'.$member_envelope.'" target="_blank"><i class="fa-envelope"></i><i class="fa-envelope"></i></a></li>';
    }
    
    if ($member_phone) {
    $items .= '<li class="phone"><a href="#" target="_blank"><i class="fa-phone"></i><i class="fa-phone"></i></a></li>';
    }

    Thanks
    Mohammad

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.