
Originally Posted by
derek.b
I have again read them over again, I understand the process involved but was hoping someone could shed some light on where exactly to put the <script> </script> code on the newly created PHP file as I think is where the confusion may lie.
Cheers
Derek
Hi Derek
Try the fix I posted here and see if that helps:
http://www.zen-cart.com/forum/showpo...&postcount=172
As far as your Twitter and Facebook link problems...
When looking at the coding, they are both referencing: <a href="blingthemes">
Your code:
Code:
<!--BOF footer menu display-->
<dl>
<span id="social-media">
<a href="blingthemes">
<img src="includes/templates/all_business/im ages/twitter.png" class="twitter-image" alt="twitter link"/>
</a>
<a href="blingthemes">
</span>
<br class="clearBoth"/>
<!--EOF footer menu display-->
Original Code:
Code:
<!--BOF footer menu display-->
<dl>
<span id="social-media">
<a href="http://www.twitter.com/picaflorazul">
<img src="includes/templates/all_business/im ages/twitter.png" class="twitter-image" alt="twitter link"/>
</a>
<a href="http://www.facebook.com/picaflor-azul#!/profile.php?id=100000413665171">
</span>
<br class="clearBoth"/>
<!--EOF footer menu display-->
The two files it should be pulling this info from are:
includes/languages/english/extra_definitions/all_business/footer_menu_defines.php (approx line 56)
Code:
define('TWITTER', 'http://www.twitter.com/picaflorazul');
define('FACEBOOK','http://www.facebook.com/picaflor-azul#!/profile.php?id=100000413665171');
includes/templates/all_business/common/tpl_footer_menu.php (approx line 24)
Code:
<span id="social-media">
<a href="<?php echo TWITTER; ?>"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image" alt="twitter link" /></a>
<a href="<?php echo FACEBOOK; ?>"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
</span>
<br class="clearBoth" />
Try doing a search with the Developers Took Kit for "blingthemes" and see if you can find where it's being referenced. I suspect that is the root of your problem.
Bookmarks