Team Member Carousel Links & Hover

  • Resolved
    Posted in: Highend WP Theme  
  • Customer
    cmel
    May 12, 2015 at 10:58 am #38965

    Hi, I would like to remove the team member name link and hover-over for each member. I was able to remove the “read more” button. I basically want to remove all links connected to the team member carousel for that specific page (or team member carousel links for all pages if necessary to achieve).

    I tried both of the following css but it would not remove either; name link or hover.

    Thank you.

    jQuery( function ( $ ) {

    $(“.shortcode-team-carousel .team-member-name > a”).each( function() {
    $(this).parent().text($(this).text());
    $(this).remove();
    });

    });

    and

    (from other forum post) Thanks. I needed to add one last parentheses at the end, then it worked.

    $(“.shortcode-team-carousel .team-member-name > a”).each( function() {
    $(this).parent().text($(this).text());
    $(this).remove();
    });

    })

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.