jho1086
Forum Replies Created
-
I have same problem, the editor works fine before, I did not add plugin but I upgrade the site in wp 3.3.1 and the tiny MCE to v(3.4.5). I done all the suggestion above except downgrading, but still not work.
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;
}Forum: Fixing WordPress
In reply to: Can Page Title and Menu title be differenthow about at the other page?
I like dynamic. savable in database.
Forum: Fixing WordPress
In reply to: disable link for drop downusing this
<script type=”text/javascript”>
var $j = jQuery.noConflict();$j(document).ready(function () {
$j(“li:has(ul)”).hover(function () {
$j(this).children(“a”).click(function () {
return false;
});
});});
</script>Forum: Fixing WordPress
In reply to: Current_page_item@cais, your great.
But It not work on IE6…
#menu li.current_page_item.page-item-2 a {}
When I navigate in different page the current_page_item styles of page-item-2 are stayed…
Forum: Plugins
In reply to: Display “month name” instead of “month number” in permalinksI need this too…
They have option to do this or plugin instead…
please….