Hi folks
- Using Seblod, I create entries in my free table (#__cck_store_free_map)
- #_cck_core records these entries appropriately (i.e. id and pk)
- When creating a list, I have a query that produces results, but displays no data...
- ... but there are results from the query (debug confirms this) and I do have the pagination indicative of the results.
...
- I tried adding SEARCH QUERY FIELD to the Search Form, in APPEND mode
t1.one_id, t1.one_name, t1.many_id, t1.many_name<br>
t1.one_id AS one_id, t1.one_name AS one_name, t1.many_id AS many_id, t1.many_name AS many_name
...
- I did change query to STANDALONE and used this:
SELECT *
FROM #__cck_store_free_map
- and I got results...
- ...but filtering would not apply
- The template choice or list or item view had no bearing on the output of the results.
...
- I change SEARCH QUERY FIELD back to APPEND and...
- ... no results displayed, but...
- ... INTERESTINGLY, if I fill a search form field with a value, then I do see results
Any ideas?