Some Like this..
$('#psp-comments a.comment-reply-link').click(function(e) {
e.preventDefault();
var comment_parent = $(this).data( 'comment-parent' );
$(this).removeClass('comment-reply-link').addClass('comment-reply-link-cancelar');
$(this).css('display','none');
//var respond = $('#psp-comments #respond').detach();
var respond = jQuery('#psp-comments #respond').first().clone();
//$( this ).parent().parent().parent().append( respond );
$( this ).parent().parent().append( respond );
$('#respond #comment_parent').val( comment_parent );
});
-
This reply was modified 8 years, 11 months ago by
jaimezegpi. Reason: better design of post
Hi Jaime,
It’s probably a bit overkill, but you’d have to override the entire single template.
If you create a “panorama” folder in your wp-content/themes/yourtheme folder and then copy the single-lite.php template from /wp-content/plugins/project-panorama/lib/templates into that folder it will pull your themes version of the template.
You can then change the path of that JS file to your own customized version.
Hope this helps!