Anyone use Biz Directory?

Discussion in 'WordPress' started by vanessat, Aug 13, 2010.

  1. #1
    I installed this last night and am pretty damn impressed with how easy it is to use. Of course, I haven't loaded any content to create the directory but will be doing that this weekend.

    I have a few questions about customization. There seems to be NO support out there. Boo. My submit form says "Org. info" "Org. address" etc. I need it to say "Store info." I can't, for the life of me figure out how to change that or the explanation in the form field.

    Any ideas? How customizable is this really?
     
    vanessat, Aug 13, 2010 IP
  2. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #2
    They are in business-directory/functions.php. Try editing these lines:
    		
    "bizdir_name"=>array("title"=>"$adjective Name *","autofill"=>"YourInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_category_id"=>array("title"=>"Category*", 'type'=>"select", "autofill"=>"CategoryInfo"),
    "bizdir_email"=>array("title"=>"$adjective Email *","autofill"=>"YourInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_cName"=>array("title"=>"Organization Name *","autofill"=>"CompanyInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_description"=>array("title"=>"Org. Description *","autofill"=>"Description","maxlength"=>NULL, "type"=>"textarea"),
    "bizdir_keywords"=>array("title"=>"Keywords","autofill"=>"Keywords","maxlength"=>100, "type"=>"text"),
    "bizdir_website"=>array("title"=>"Org. Website","autofill"=>"CompanyInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_phone"=>array("title"=>"Org. Phone","autofill"=>"CompanyInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_cEmail"=>array("title"=>"Org. Email","autofill"=>"CompanyInfo","maxlength"=>100, "type"=>"text", 'hint'=>'* Provide at least one form of contact.'	),
    "bizdir_street1"=>array("title"=>"Org. Address","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_street2"=>array("title"=>" ","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_city"=>array("title"=>"Org. City","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_state"=>array("title"=>"Org. State/Province","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_zip"=>array("title"=>"Org. Zip Code","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text"),
    "bizdir_country"=>array("title"=>"Org. Country","autofill"=>"GeoInfo","maxlength"=>100, "type"=>"text")
    Code (markup):
    If you don't get any help from the authors, you can always try the Wordpress forums
     
    Last edited: Aug 15, 2010
    Cash Nebula, Aug 14, 2010 IP