Page 1 of 2 12 LastLast
Results 1 to 10 of 1017

Hybrid View

  1. #1
    Join Date
    Oct 2012
    Posts
    4
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    Dear Anne,

    How are you. I am a new Zen-Cart user. If you have time, can you help me to take a look my website: http://parts.onlineds.com , I installed your template, but the shopping cart looks like different. I am very appreciate your help.

  2. #2
    Join Date
    Sep 2006
    Location
    USA
    Posts
    291
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by usausaok View Post
    Dear Anne,

    How are you. I am a new Zen-Cart user. If you have time, can you help me to take a look my website: http://parts.onlineds.com , I installed your template, but the shopping cart looks like different. I am very appreciate your help.
    Whats wrong with it? I'm not Anne but it looks like the same template on her site, you need to remove her stuff and add your stuff
    Signature not needed

  3. #3
    Join Date
    Oct 2012
    Posts
    4
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    Dear Uswebworx,

    Thank you very much for repond quickly. Yes, I will remove her stuff. After I installed the template, the shopping cart shows the php code, did you see that?

    I am very appreciate your help.

  4. #4
    Join Date
    Sep 2006
    Location
    USA
    Posts
    291
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by usausaok View Post
    Dear Uswebworx,

    Thank you very much for repond quickly. Yes, I will remove her stuff. After I installed the template, the shopping cart shows the php code, did you see that?

    I am very appreciate your help.
    This?


    Try reinstalling the template, make sure it unzipped properly.
    Signature not needed

  5. #5
    Join Date
    Oct 2012
    Posts
    4
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    ok, ok, I have reinstalled 2 times. I will reinstall again.
    Thank you very much.

  6. #6
    Join Date
    Sep 2006
    Location
    USA
    Posts
    291
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by usausaok View Post
    ok, ok, I have reinstalled 2 times. I will reinstall again.
    Thank you very much.
    Oh ok. If that doesn't work make sure you manually delete each file associated with her template. I have her older style of this and am not upgrading
    Signature not needed

  7. #7
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by usausaok View Post
    After I installed the template, the shopping cart shows the php code, did you see that?

    I am very appreciate your help.
    This isn't an installation error.. There are PHP short tags are being used in some of the code header.. Most servers ignore them lending to the issue you are seeing..


    in the common/tpl_header.php file find this section:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART ?>" alt="cart icon" class="cart-icon"  /><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CHECKOUT ?>" alt="checkout icon" class="checkout-icon"  /><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    replace it with this:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART ?>" alt="cart icon" class="cart-icon"  /><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CHECKOUT ?>" alt="checkout icon" class="checkout-icon"  /><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    Note that I replaced the "<?" shorttag with "<?php". Do the same and the issue goes away..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #8
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by DivaVocals View Post
    This isn't an installation error.. There are PHP short tags are being used in some of the code header.. Most servers ignore them lending to the issue you are seeing..


    in the common/tpl_header.php file find this section:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART ?>" alt="cart icon" class="cart-icon"  /><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CHECKOUT ?>" alt="checkout icon" class="checkout-icon"  /><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    replace it with this:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CART ?>" alt="cart icon" class="cart-icon"  /><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.HEADER_ICON_CHECKOUT ?>" alt="checkout icon" class="checkout-icon"  /><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    Note that I replaced the "<?" shorttag with "<?php". Do the same and the issue goes away..
    Yes, this is correct. I have this bug on a list for fixing in a future update.

    Thanks,

    Anne

  9. #9
    Join Date
    Feb 2010
    Posts
    63
    Plugin Contributions
    0

    Default Re: New! Template Package Update with Admin Interface!

    My website doesnt load on some computers as of 8pm CST today. I am sure it is some sort of April fools prank some group is playing.

    The script that is locking me up is the gsgd one. At least I think so. The site shows it is loading cdnjs.cloudflare.com but it just never loads.


    Can I remove this? What does it do?

    Thank you

  10. #10
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: New! Template Package Update with Admin Interface!

    Quote Originally Posted by AZComp View Post
    My website doesnt load on some computers as of 8pm CST today. I am sure it is some sort of April fools prank some group is playing.

    The script that is locking me up is the gsgd one. At least I think so. The site shows it is loading cdnjs.cloudflare.com but it just never loads.


    Can I remove this? What does it do?

    Thank you
    Anne can correct me if I am wrong, but I don't think her template is using any of the Cloudflare libraries.. Something else you've installed may be making calls to that library.. You need to figure out which add-on you've installed which does this..

    What is Cloudflare you ask??? if you Google "what is cdnjs.cloudflare.com", you might get some insight.. see if this site will help: http://blog.cloudflare.com/cdnjs-com...cript-librarie
    Last edited by DivaVocals; 2 Apr 2013 at 03:40 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  2. v154 Abbington Mega 5.3 template not displaying properly
    By irishshopper in forum Addon Templates
    Replies: 1
    Last Post: 6 Mar 2015, 04:56 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Turpy Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 3
    Last Post: 20 Feb 2012, 07:36 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg