Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * @package WordPress
- * @subpackage Sweetdate
- * @author SeventhQueen <[email protected]>
- * @since Sweetdate 1.0
- */
- add_action('wp_footer','kleo_disable_profile_links', 11);
- function kleo_disable_profile_links() {
- ?>
- <script>
- jQuery(document).ready(function() {
- jQuery(".profile-thumbs a").attr("href","#");
- jQuery(".profile-thumbs a").on('click', function(e) {
- e.preventDefault();
- });
- });
- </script>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment