My goal was to use your plugin to display 2 columns each from 2 separate tables. then take that and code and display the output into the menu structure as a table. so when i change names of products or prices or a particular server becomes unavailable the tables through out the site change without double or triple entry. all automatic…
My Example I have 4 Column | name | description | Monthly | annually
SELECT monthly, annually FROM tblpricing UNION SELECT name, description FROM tblproducts
This put everything under just 2 columns BUT the union worked PERFECT it only displayed just a single instance of my products each.
NOW my second effort
SELECT DISTINCT a.monthly, a.annually, b.name, b.description FROM tblpricing a INNER JOIN tblproducts b
this works great as it puts everything where i want it but NOW i have multiple instances of products cause there are other values for these columns which i do not use. So i was hoping i could use some code and ur plugin to make this work….The above code is hard coded into a template i did not use the plugin as its not working for me at all.