hiromisf
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Athena] Title on Featured image of every postI have the same request…
Forum: Themes and Templates
In reply to: [Lovecraft] Reducing homepage articlesOh, I see. Thanks!!! I appreciate it.
Forum: Themes and Templates
In reply to: [Lovecraft] Reducing homepage articlesHello,
That’s not working for me… Did it work for you gischina?
Setting/reading/SummaryNo matter how long my blog content is, it shows the whole thing.
My contents are both in English and Japanese.
Thanks!
Forum: Themes and Templates
In reply to: [Lovecraft] Summary does not work for meI am having the same problem and now I know why…
So what do I edit in PHP file, so blog contents in archive page only shows an image and 10 lines?Thanks
Forum: Plugins
In reply to: eshop product listnow i have a different problem…
Forum: Themes and Templates
In reply to: want to show drop-down on mouse-over in moduality litei found a solution.
i changed “click” to “mouseover” in nav.js
/wp-content/themes/modularity-lite/js/nav.js
here is the nav.js after i fixed it.
====================================================function navigationArrow(path){ jQuery("#nav ul li ul").addClass("push"); // This is line 3 jQuery("#nav ul li.drop").addClass("enhanced"); jQuery("#nav ul li.drop").removeClass("drop"); jQuery("#nav ul li.enhanced span").after(' <img src="' + path + '" />'); jQuery("#nav ul li.enhanced img").wrap('<a class="arrow rest"></a>'); jQuery("#nav ul li a.arrow").hover(function(){ jQuery(this).removeClass("rest").addClass("hover"); }, function(){ jQuery(this).removeClass("hover").addClass("rest"); }); jQuery("#nav ul li a.arrow").mouseover(function(){ if (jQuery(this).hasClass("hover") == true) { jQuery("#nav ul li a.open").removeClass("open").addClass("rest"); jQuery("#nav ul li ul").hide(); jQuery(this).removeClass("hover").addClass("open"); jQuery(this).parent().find("ul").fadeIn(); } else { if (jQuery(this).hasClass("open") == true) { jQuery(this).removeClass("open").addClass("hover"); jQuery(this).parent().find("ul").hide(); } } }); jQuery(document).mouseover(function(event){ var target = jQuery(event.target); if (target.parents("#nav").length == 0) { jQuery("#nav ul li a.arrow").removeClass("open").addClass("rest"); jQuery("#nav ul li ul").hide(); } }); }=======================================
i moved to live site
http://candmphotography.comForum: Themes and Templates
In reply to: mouse-over for pull-down menuI am also wondering about the same thing…
Forum: Themes and Templates
In reply to: sub-page listes as parant page under nav in Modularity Lite 1.2i figured it out…
changed
<?php wp_list_pages(‘orderby=name&depth=-1&title_li=’); ?>to
<?php wp_list_pages(‘orderby=name&depth=1&title_li=’); ?>for menu, which got rid of sub page from the drop down list.
Forum: Plugins
In reply to: plug-in: Network Publisher – updating existing posts?i see. thanks!
Forum: Fixing WordPress
In reply to: calling wrong pagesi ended up deleting everything and re-installing wp.