vapvarun

Issue fixes with BuddyPress Learndash Addon

Oct 13th, 2018
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function( $ ){
  2.     jQuery( '#buddypress #learndash_profile #course_list .learndash-course-link a' ).click( function( event ) {
  3.         event.preventDefault();
  4.         event.stopPropagation();
  5.         var href = jQuery( this ).attr( 'href' );
  6.         window.location.href = href;
  7.     } );
  8. });
Add Comment
Please, Sign In to add comment