
Originally Posted by
fraser coast
dual pricing 1.8 for zen cart 1.3.9
in the section it says if you want your wholesale customers to see both retail and wholesale,
then uncomment line 71#
can anyone tell me what line 71# looks like and what does uncomment mean exactly, i am only new to this, so im not really up on the terms
so any help would be appreciated
to uncomment or comment out a particular php code you simple add or remove // at the beginning of a line for example
PHP Code:
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class oFBLikeBox{
function getData(&$params ){
$oFlink = $params->get('olink', 'http://www.facebook.com/pages/Optimized-Sense/230549220294427?ref=ts');
$oFwidth = $params->get('owidth', '300');
$oFheight = $params->get('oheight', '500');
$oFborder = $params->get('oborder', '000000');
//$oFcolor = $params->get('ocolor');
$oFfaces = $params->get('ofaces');
$oFstream = $params->get('ostream');
$oFforce = $params->get('oforce');
$oFheader = $params->get('oheader');
$oFsource = $params->get('osource');
using // basically tells browsers - servers to disregard what is shown there - - essentially // is used for developer notes to describe sections for future reference
Really not trying to sound like an ###### here but if you are new to Zen and want your store to have a custom look or any modification really you should spend a few days brushing up on php coding skills - - A great place is youtube but there are tons of other web tutorials.. This will save you tons of time in the long run. btw there is other ways to uncomment or comment out // is just one of them
Hope this helps
Bookmarks