The business address as entered on the theme options page includes a zip code, however, that zip code isn't being shown in the footer. The rest of the address and contact information displays correctly, but no zip code.
http://www.saltsolutionsinc.com/
Can someone help me correct this?
Thanks
Footer doe not display zip code
Started by
Guest_James Broome_*
, Mar 17 2011 10:06 AM
2 replies to this topic
#1 Guest_James Broome_*
Posted 17 March 2011 - 10:06 AM
#2
Posted 17 March 2011 - 03:19 PM
Hi,
this is a typo in the theme code, you can fix this by editing the footer file. To do so, go to wp-dashboard > Appearance > Editor and open footer.php. Locate the following code and change:
to
(note lowercase z on the second $bb_zip)
Ronald
this is a typo in the theme code, you can fix this by editing the footer file. To do so, go to wp-dashboard > Appearance > Editor and open footer.php. Locate the following code and change:
<?php if($bb_zip) { echo $bb_Zip; } else { echo "Zip"; } ?>to
<?php if($bb_zip) { echo $bb_zip; } else { echo "Zip"; } ?>(note lowercase z on the second $bb_zip)
Ronald
Join the iThemes Builder Community on Google+.
To ensure that we can process your support request efficiently, ALWAYS include a link to your site, and/or the page your request is related to. Please also read the forum guidelines.
When asking your question/posting your request on the forum, please be as concise and specific as possible. The shorter your request, the more to the point, the more specific, the easier it will be for us to try and help out.
#3 Guest_James Broome_*
Posted 20 March 2011 - 02:30 PM
Thank you - that fixed it.




