Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Change Link of Login/Register Button and Comment Login */
- (function($) {
- $(document).on('ready', function() {
- var accountLink = $('.jeg_accountlink').find('li')
- accountLink.find('.jeg_popuplink').off()
- $(accountLink[0]).find('a.jeg_popuplink').attr('href', 'https://yoursite.com/login/') /* Login */
- $(accountLink[1]).find('a.jeg_popuplink').attr('href', 'https://yoursite.com/register/') /* Register */
- var commentLink = $('.comment-login')
- commentLink.find('.jeg_popuplink').off()
- $(commentLink).find('a.jeg_popuplink').attr('href', 'https://yoursite.com/login/') /* Comment Login */
- })
- })(jQuery)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement