I realize this might be a long shot, but I was hopping someone out there has expertise to be able to assist me.
I am using the module "flexinode" to be able to submit a special type of "node". I am also using a custom "Themed" php template (node-flexinode-7.tpl.php) to modify the layout of the flexinode-7.
Now, all of this works fine and dandy, until I use a drop-down menu type field within the flexinode. (The purpose of the drop-down menu is to select Country) Now when I try and display the Country information by using:
print "Country" ;
print $node->flexinode_42;
I simply get a numerical value printed, which appears to be outputting the country location (within the long list. Ie, 13 equals Australia), but I cannot get it to display the “text value itself”.
Now the above works fine when I had the country field as a simple text field and not a drop down box.
Within this flexinode, I have managed to output weblinks, email address, images all fine, but for the life of me, I cannot get it to work for this drop down box.
* I have search all over the drupal site and it shows how to custom output all flexinode types, except dropdown menus. I have also read topics on country drop-down menu's, but I cannot see anything useful.