mcWade
Forum Replies Created
-
Forum: Plugins
In reply to: [wp-comment-master] [Plugin: wp-comment-master] Next or page clickFigured out the issue here with the page repositioning during pagination. The plugin is hiding the comment list then fading it back in when paging. This removes the height of the comment list, which changes the height of the page.
On the cm.js file on line #74 there is this code: $list.hide().slice(currentPage*comPerPage,(currentPage+1)*comPerPage).fadeIn();
Change this to: $list.hide().slice(currentPage*comPerPage,(currentPage+1)*comPerPage).show();
That will get a simple hide and show with no fading animation and no page re-positioning. To fade the comment list out and in add this code underneath: $(‘ol.commentlist’).animate({ opacity: 0 },0).animate({ opacity: 1 });
Will new code should read like this:
$list.hide().slice(currentPage*comPerPage,(currentPage+1)*comPerPage).show();
$(‘ol.commentlist’).animate({ opacity: 0 },0).animate({ opacity: 1 });Forum: Plugins
In reply to: [wp-comment-master] [Plugin: wp-comment-master] Next or page clickHi American2020, did you figure this one out? I am looking at the same problem and can’t find any repositioning script.
Yes, I know that one but this client is using 3.0.5 which it doesn’t work on. I just found a way altering this code to make it work for logged in users only, which is what I needed to do.
Thanks Dana for getting back to me on this.
Hi Dana, did you figure this one out? I would like to do the same thing fo a site I am working on.
Thanks,
WadeHi Vrefr. Did you figure this out by chance, I am wanting to do the same thing? Place the registration form on a specific page with out redirecting to the wp-login.phplogin.php?action=register page.
Thanks,
WadeForum: Plugins
In reply to: [Next Page] Possible to restrict to sibling pages?I am curious about this same thing. Is it possible to only loop navigate through pages that have the same parent?
Thanks,
wadeForum: Plugins
In reply to: [Flexo Archives] [Plugin: Flexo Archives] Category OptoinHi Heith. I figured out what I wanted, it was not actually altering your code but on the results page I display the archives for that specific category. I have that functioning now. You can see it here https://www.avistar.com/blog.
Thanks for getting back to me on this. Have a great sunday.
Wade
Forum: Plugins
In reply to: [Comment Rating] [Plugin: Comment Rating] Incompatible with Thesis theme?An issue I was getting was this error, function ckratingKarma not defined. All you need to do is call the ck-karma.js file to fix that. Now the rating system worked.
Call this in the footer.php:
<script type=”text/javascript” src=”/wp-content/plugins/comment-rating/ck-karma.js” charset=”utf-8″></script>Wade
Forum: Hacks
In reply to: Display Comment by Karma valueI got the Comment Ratings Plugin to work. After activating the plug in I was getting an error, function ckratingKarma not defined. All you need to do is call the ck-karma.js file to fix that. Now the rating system worked.
Call this in the footer.php:
<script type=”text/javascript” src=”/wp-content/plugins/comment-rating/ck-karma.js” charset=”utf-8″></script>Wade
Forum: Plugins
In reply to: [Comment Rating] [Plugin: Comment Rating] Doesn't Do AnythingAfter activating the plug in I was getting an error, function ckratingKarma not defined. All you need to do is call the ck-karma.js file to fix that. Now the rating system worked.
Call this in the footer.php:
<script type=”text/javascript” src=”/wp-content/plugins/comment-rating/ck-karma.js” charset=”utf-8″></script>Resolved issue. PHP Version wasn’t up to date.
Closed