Hi guys,
I can't figure out why my footer suddenly disapeared on my product-info-page.
See here: http://nyshop.utkast.org/index.php?m...roducts_id=228
Anyone know what the problem could be?
Best regards, JDahlbom
Hi guys,
I can't figure out why my footer suddenly disapeared on my product-info-page.
See here: http://nyshop.utkast.org/index.php?m...roducts_id=228
Anyone know what the problem could be?
Best regards, JDahlbom
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
I've been through that one now.
If I remove the following code it all works great:
<?php
if (SOCIAL_MEDIA_STATUS == 1) {
if (SOCIAL_POSITION == 'bottom' || SOCIAL_POSITION == 'both') {
echo '<div id="socialIcons" class="fright">';
echo social_media($products_id_current, $products_name);
echo '</div>';
}
}
?>
It sais in the log that this line get an error:
echo social_media($products_id_current, $products_name);
What could be the problem with that?
Thnx
Evidently that social_media() function you're calling in your template is apparently undefined ... as in, there is no actual function statement/definition in your site for it.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.