Hello,
WP: 3.2.1
LTW T: 1.3.0
On the Testimonial Overview page, the checkbox for "Show in Widget" is not saving, you have to actually edit each widget to make the update save.
I have not had a chance to look into fixing this myself yet. If I make time to do so and find a solution, I will share it here.
Thank you for a great plugin.
=-)
http://wordpress.org/extend/plugins/ltw-testimonials/
jho1086
Member
Posted 7 months ago #
hello,
I fixed by changing this line in /wp-content/plugins/ltw-testimonials/js/ajax.js
if ($(this).attr("checked") == true) {
item_checked = true;
}
with this one
if ($(this).attr("checked") == 'checked') {
item_checked = true;
}
Ooooo... and just like magic, that fixed it!
Thank you!
=-)
Note to Author on fix
http://www.lessthanweb.com/products/wp-plugin-ltw-testimonials#comment-2457