I have a question regarding the Yahoo Map plugin thats on IndexUTemplates.com. Here is what is inside the plugin php file
I already have my custom fields created and each of them have data in it already. They are the following:PHP Code://add column to idx_link_temp
$dbConn->execute("alter table `idx_link_temp` add `address` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link_temp` add `city` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link_temp` add `zip_postal` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link_temp` add `state` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link_temp` add `country` varchar (255) default NULL");
//add column to idx_link
$dbConn->execute("alter table `idx_link` add `address` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link` add `city` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link` add `zip_postal` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link` add `state` varchar (255) default NULL");
$dbConn->execute("alter table `idx_link` add `country` varchar (255) default NULL");
//insert data to idx_custom_field
$dbConn->execute("insert into `idx_custom_field`(field_name,field_text,field_type,required,searchable) values ('address','Address','TEXT',1,1)");
$dbConn->execute("insert into `idx_custom_field`(field_name,field_text,field_type,required,searchable) values ('city','City','TEXT',1,1)");
$dbConn->execute("insert into `idx_custom_field`(field_name,field_text,field_type,required,searchable) values ('zip_postal','Zip Postal','TEXT',1,1)");
$dbConn->execute("insert into `idx_custom_field`(field_name,field_text,field_type,required,searchable) values ('state','State','TEXT',1,1)");
$dbConn->execute("insert into `idx_custom_field`(field_name,field_text,field_type,required,searchable) values ('country','Country','TEXT',1,1)");
address1
address2
city
state
zip
I currently do not have 'country' as one of them.
Do I need to make any changes to the plugin to work with what I already have??
I also what this plugin to display in a very specific place in my detail_links page. What do I need to do to make that happen?


