saurabhr
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajax WP Query Search Filter] Search box not respondingHi TC.K,
I am a newbie to php and plugin development.
I looked up ‘apply filters’ in the codex but do not see how to do this. Can you please send me a link to where it explains how to pass the second argument or a code snippet example. Do I need to use this in the funtions.php ?
Thanks for responding.
SaurabhForum: Plugins
In reply to: [Ajax WP Query Search Filter] Search box not respondingI would also like to know does the plugin use the search page from the theme or is there a way to change the search page settings.
Thanks a lot again!!
SaurabhForum: Plugins
In reply to: [Ajax WP Query Search Filter] Search box not respondingHi TC.K,
It works for me. But I get this error now upon clicking on the Search box
Undefined index: taxo on localhost\wordpress\wp-content\plugins\ajax-wp-query-search-filter\classes\process.php on line 161.
Forum: Fixing WordPress
In reply to: Drop Down Menu Not workingThis works ! Sorry !
Forum: Plugins
In reply to: [Really Simple Events] Customizing the TableHi Huntlys,
Thanks a lot for your immediate feedback. I tried inserting the lines in my css file but unfortunately it does not work.
Upon inspecting the table in above link I am able to see all the individual parts (of a row as in the date and title) but while inspecting element on my site (local) I see the complete row as a unit.
I guess that is somewhere I am going wrong. Still trying to fix this, any clues about the problem.Forum: Themes and Templates
In reply to: Error during Installing ThemeOk so I resolved the error by replacing $text_domain by ‘text_domain’.
Forum: Themes and Templates
In reply to: Error during Installing Theme//Content for the left part of the front-page quick & dirty
register_sidebar( array(
‘id’ => ‘front-page’,
‘name’ => __( ‘Front Page’, $text_domain ),
‘description’ => __( ‘This sidebar is for the content on the frontpage’, $text_domain ),
‘before_widget’ => ‘<div class=”left-box”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h4>’,
‘after_title’ => ‘</h4>’,
) );The above are lines 19-28 of my functions.php file. The error refers to the use of text_domain. But I have no idea what do i fix this.
Can you help me on this.Thank You