Guest User

Untitled

a guest
Nov 5th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Sweetdate
  5. * @author SeventhQueen <[email protected]>
  6. * @since Sweetdate 1.0
  7. */
  8.  
  9. add_action('wp_footer','kleo_disable_profile_links', 11);
  10. function kleo_disable_profile_links() {
  11. ?>
  12. <script>
  13. jQuery(document).ready(function() {
  14. jQuery(".profile-thumbs a").attr("href","#");
  15. jQuery(".profile-thumbs a").on('click', function(e) {
  16. e.preventDefault();
  17. });
  18. });
  19. </script>
  20. <?php
  21. }
Advertisement
Add Comment
Please, Sign In to add comment