lessthanweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upload Media FailsOh, the file is actually uploaded in both ways however when using popup for uploading, the error message is shown, file not shown in Library popup but the file is uploaded.
Forum: Plugins
In reply to: [Theme Check] SVG & Title problemOh yeah, true, forgot about the hook. Hmm, if I think of something I’ll post it.
Forum: Plugins
In reply to: [Theme Check] SVG & Title problemThe first step would probably be to limit the
title
check to only within thehead
element? No point in checking the whole document.Rare might be but inline SVG is normal thing to do in todays world and yet because of this I cannot submit theme as it will be denied for invalid reason. Please fix this asap. ??
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 3.7.2 showing short code onlyFor me it works, jumped a bit too soon. The only problem is that it doesn’t work if the page is loaded via ajax. Then the result is shown shortcode instead of actual form.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 3.7.2 showing short code onlyCan confirm this, doesn’t work after upgrade to 3.8.2
Forum: Plugins
In reply to: [LTW Content Shortcodes] AccordionIt is planned yes for the next version.
Forum: Plugins
In reply to: [LTW Content Shortcodes] Tabs: Image LinksCurrently the only way is to use CSS to add image to the tab. Leave text and use text-indent to “hide” the text and then add background image in CSS for each tab. I think that should work just fine.
I’ll probably add the image support into the shortcode in next version.
Forum: Plugins
In reply to: [LTW Content Shortcodes] Link to Tabwp_hela, you have a space before the
tab title="Tab 3"
. Remove it and it should work.Forum: Plugins
In reply to: [LTW Content Shortcodes] Link to TabSorry for late reply..
Anyway, rickrussie, you can change tabs via a link by providing a hash value of the tab.
For example if you have 3 tabs and their IDs are: tab_0_0, tab_0_1 and tab_0_2.
In a link just set the href value to any of this tab IDs and it will switch.
<a href="#tab_0_0">link</a>
Hi,
Check if the file “ajax.php” is in the “pages” folder.
Forum: Requests and Feedback
In reply to: wp_nav_menu() 'menu_class' usage? (bug?)Ah, its because of the fallback to wp_page_menu function if there is no menu set.
Forum: Requests and Feedback
In reply to: wp_nav_menu() 'menu_class' usage? (bug?)Yup, having the same problem.
If the menu (WP admin area) is not set, then the “menu_class” is applied to “container”.
In other words, it overwrites the “container_class”.If the menu is set, then the “menu_class” is applied to “ul”.
I’m guessing this is a bug as it doesn’t make any sense at all.
Forum: Themes and Templates
In reply to: Page Template, sidebar problemswp_reset_query(); <— adding this line to sidebar.php before conditional makes it work.
wp_reset_query(); if (is_home() == TRUE)