CyberZorro0
Forum Replies Created
-
Forum: Plugins
In reply to: [Cartpauj PM] Use the default WordPress text editorSame question here, Is it possible?
Forum: Plugins
In reply to: [Etsy Importer] Products not publishingSame issue here!
Only 4 of my etsy items was imported out of 53
Where are the items going to be listed?
Do I need a specific page for the items to show?
What shortcode do we need to use?Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Lightbox Plus Video Frame@mike Padua, Thank you, your answer was exactly what I was looking for.
Forum: Plugins
In reply to: [Custom Dashboard Widget] [Plugin: Custom Dashboard Widget] Shortcodes?Hi,
Just would like to add my voice to the subject!
Please consider adding Shortcode feature on your next update.This feature would be very useful!
I searched on WordPress plugins directory and did not find this feature on any plugin listed.
Regards,
CyberZorro0Forum: Themes and Templates
In reply to: Links not working in search resultsI’m having the same issue. Would be nice to get some help ??
I searched on Google, Tech forums, WordPress but could not find the solution.
Here is a code that a lot of sites gave instructions to use:
-
Add this where you need the search form:
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>/"> <div><input type="text" size="put_a_size_here" name="s" id="s" value="Write your search and hit Enter" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;"/> <input type="submit" id="searchsubmit" value="Search" class="btn" /> </div> </form>
-
Add this in functions.php in your theme editor section:
add_filter('wp_nav_menu_items','add_search_box', 10, 2); function add_search_box($items, $args) { ob_start(); get_search_form(); $searchform = ob_get_contents(); ob_end_clean(); $items .= ' <li>' . $searchform . '</li> '; return $items; }
This did not help me resolve the issue but might help someone get closer to solution ??
Your help would be greatly appreciated!!!
-
Add this where you need the search form: