wpdebug
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wordpress navigation not working in mobile modeI check files…Every thing is ok. javascript files are also available.
- This reply was modified 7 years, 12 months ago by wpdebug.
Forum: Fixing WordPress
In reply to: wordpress navigation not working in mobile modehi steven,
so what i do… where from install or set path of java for menu click events.
thanksForum: Fixing WordPress
In reply to: Search Plugin Developmentsryy, I will wait
Forum: Fixing WordPress
In reply to: Search Plugin Developmentyes you are right. but if not found then store that keyword in new table
Forum: Fixing WordPress
In reply to: Search Plugin DevelopmentI can manage further if search box connect to tables.
Forum: Fixing WordPress
In reply to: Search Plugin Developmenti’ve read all this and generate codes for auto generate tables. I only stuck here how i attach created tables to search box.
action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>
what i assign in action i don’t know!!!
Forum: Fixing WordPress
In reply to: Search Plugin Developmentcould you help how develop this plugins
Forum: Fixing WordPress
In reply to: Search Plugin Developmentwhen user search any keyword in search box. If article available in WP-ARTICLE table then display other wise new keyword store in second table WP-NEWKEYWORD table or in admin dashboard admin can watch how many search come in day, week or month. how many successful.
Forum: Fixing WordPress
In reply to: Search Plugin Developmenti create wp-article table and search box search data from it if not found then store data in wp-newsearch table
Forum: Fixing WordPress
In reply to: Search Plugin Developmentmy form codes
<form role=”search” method=”get” class=”search-form” action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>”>
<label>
<span class=”screen-reader-text”><?php echo _x( ‘Search for:’, ‘label’, ‘twentysixteen’ ); ?></span>
<input type=”search” class=”search-field” placeholder=”<?php echo esc_attr_x( ‘Search …’, ‘placeholder’, ‘twentysixteen’ ); ?>” value=”<?php echo get_search_query(); ?>” name=”s” title=”<?php echo esc_attr_x( ‘Search for:’, ‘label’, ‘twentysixteen’ ); ?>” />
</label>
<button type=”submit” class=”search-submit”><span class=”screen-reader-text”><?php echo _x( ‘Search’, ‘submit button’, ‘twentysixteen’ ); ?></span></button>
</form>Forum: Fixing WordPress
In reply to: Search Plugin Development@amapeu and @v123shine thanks to help me. I know basic template for plugin development. My actually problem is connect theme search box with table wp-article. in form action i could not understand meaning codes.
<?php echo esc_url( home_url( ‘/’ ) ); ?>
Forum: Fixing WordPress
In reply to: Custom Search Box connect with tablemy form codes
<form role=”search” method=”get” class=”search-form” action=”<?php echo esc_url( home_url( ‘/’ ) ); ?>”>
<label>cxcczcxzcczcxz
<span class=”screen-reader-text”><?php echo _x( ‘Search for:’, ‘label’, ‘twentysixteen’ ); ?></span>
<input type=”search” class=”search-field” placeholder=”<?php echo esc_attr_x( ‘Search …’, ‘placeholder’, ‘twentysixteen’ ); ?>” value=”<?php echo get_search_query(); ?>” name=”s” title=”<?php echo esc_attr_x( ‘Search for:’, ‘label’, ‘twentysixteen’ ); ?>” />
</label>
<button type=”submit” class=”search-submit”><span class=”screen-reader-text”><?php echo _x( ‘Search’, ‘submit button’, ‘twentysixteen’ ); ?></span></button>
</form>Forum: Hacks
In reply to: How Generate table under databaseThanks @jan for reply, Sorry I’m Newbie here