views:

220

answers:

1

Most of my content is in a new table I have added to JOOMLA cms. I have to add a search plugin that can search this table.

Here is aq basic table search that I can't incorporate into a search plugin.

Select * FROM `jos_table` WHERE Abc = 'xyz'
+1  A: 

Do not modify the existing Joomla search plugin; create a new one to sit alongside the other search plugins: http://docs.joomla.org/How_to_create_a_search_plugin

jlleblanc
I looked at the Joomla documentation. The problem is I still can't figure out where to type in my table query.
ggg
Towards the bottom of that example is where the query gets built.
jlleblanc