Page 18 of 27 FirstFirst ... 81617181920 ... LastLast
Results 171 to 180 of 270
  1. #171
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Ocean Front Template Support Thread

    Quote Originally Posted by CaliforniaKinship View Post
    Hi! Ok, so i'm having some trouble.

    How do I get rid of the estimate shipping button on this page?

    http://californiakinshipcaregivers.c...r_of_uploads=0

    my product is a file ... no shipping.

    Thanks!

    OH and also if you know... i've been chatting a lot with people about my product and i cant get it fixed.

    The customer should only be allowed to hit the DOWNLOAD button once and they save it to their computer and they cannot hit that button again.

    How do I get it so that button disappears after they've already received the file? Thank you!!

    I already have these set in my attribute settings:

    Download Expiration (Number of Days) 0
    Number of Downloads Allowed - Per Product 1

    THey can download it whenever...but only ONCE.. how do i do that?

    and these are in the attribute controller:

    Expiry days: 0

    Max Download: 1
    turn it off:

    admin -> Shipping/Packaging -> Shipping Estimator Display Settings for Shopping Cart (set to 0)

    I'm not sure but it may have something to do with the update status settings.

  2. #172
    Join Date
    Aug 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Ocean Front Template Support Thread

    Thank you!

    One more thing if you have time.

    http://californiakinshipcaregivers.c...r_of_uploads=0

    The same page ... how do I add more to the shopping cart contents page? Like more written info ?

    I didnt see it in the define pages editor in the admin. is it through the backend? FTP ?

    DO you know where that location is? thank you! I just want to add some more instruction to that page! Thanks so much!

  3. #173
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Ocean Front Template Support Thread

    Quote Originally Posted by CaliforniaKinship View Post
    Thank you!

    One more thing if you have time.

    http://californiakinshipcaregivers.c...r_of_uploads=0

    The same page ... how do I add more to the shopping cart contents page? Like more written info ?

    I didnt see it in the define pages editor in the admin. is it through the backend? FTP ?

    DO you know where that location is? thank you! I just want to add some more instruction to that page! Thanks so much!
    includes/languages/english/shopping_cart.php

    edit the following define statement

    define('TEXT_CART_EMPTY', 'Your Shopping Cart is empty.');

  4. #174
    Join Date
    Aug 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Ocean Front Template Support Thread

    Hi! Ok thank you for directing me to the right place.

    This is the information I want on that page.. while the shopping cart has an item in it....

    so I put it under the TEXT INFORMATION LIKE SO:


    define('NAVBAR_TITLE', 'The Shopping Cart');
    define('HEADING_TITLE', 'Your Shopping Cart Contents');
    define('HEADING_TITLE_EMPTY', 'Your Shopping Cart');
    define('TEXT_INFORMATION', 'Don't have a PayPal Account? NO PROBLEM! Just click CHECKOUT below and when you are redirected to our PayPal Web site, simply click the link on the left of the screen that says DON'T HAVE A PAYPAL ACCOUNT? NO PROBLEM!
    You will be able to continue checkout without an account!
    If you do have a PayPal Account, click the PayPal checkout for a faster, easier checkout!');
    define('TABLE_HEADING_REMOVE', 'Remove');
    define('TABLE_HEADING_QUANTITY', 'Qty.');
    define('TABLE_HEADING_MODEL', 'Model');
    define('TABLE_HEADING_PRICE','Unit');
    define('TEXT_CART_EMPTY', 'Your Shopping Cart is empty.');
    define('SUB_TITLE_SUB_TOTAL', 'Sub-Total:');
    define('SUB_TITLE_TOTAL', 'Total:');




    WHAT did I do wrong? I have a white page now? Thanks!

  5. #175
    Join Date
    Aug 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Ocean Front Template Support Thread

    This is what the entire shoping cart PHP looks like

    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: shopping_cart.php 3183 2006-03-14 07:58:59Z birdbrain $
    */

    define('NAVBAR_TITLE', 'The Shopping Cart');
    define('HEADING_TITLE', 'Your Shopping Cart Contents');
    define('HEADING_TITLE_EMPTY', 'Your Shopping Cart');
    define('TEXT_INFORMATION', 'Don't have a PayPal Account? NO PROBLEM! Just click CHECKOUT below and when you are redirected to our PayPal Web site, simply click the link on the left of the screen that says DON'T HAVE A PAYPAL ACCOUNT? NO PROBLEM!
    You will be able to continue checkout without an account!
    If you do have a PayPal Account, click the PayPal checkout for a faster, easier checkout!');
    define('TABLE_HEADING_REMOVE', 'Remove');
    define('TABLE_HEADING_QUANTITY', 'Qty.');
    define('TABLE_HEADING_MODEL', 'Model');
    define('TABLE_HEADING_PRICE','Unit');
    define('TEXT_CART_EMPTY', 'Your Shopping Cart is empty.');
    define('SUB_TITLE_SUB_TOTAL', 'Sub-Total:');
    define('SUB_TITLE_TOTAL', 'Total:');

    define('OUT_OF_STOCK_CANT_CHECKOUT', 'Products marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' are out of stock or there are not enough in stock to fill your order.<br />Please change the quantity of products marked with (' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '). Thank you');
    define('OUT_OF_STOCK_CAN_CHECKOUT', 'Products marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' are out of stock. Items not in stock will be placed on backorder.');

    define('TEXT_TOTAL_ITEMS', 'Total Items: ');
    define('TEXT_TOTAL_WEIGHT', '&nbsp;&nbsp: ');
    define('TEXT_TOTAL_AMOUNT', '&nbsp;&nbsp;Amount: ');

    define('TEXT_VISITORS_CART', '<a href="javascript:session_win();">[help (?)]</a>');
    define('TEXT_OPTION_DIVIDER', '&nbsp;-&nbsp;');
    ?>





    I just want the content on that page to have about a paragraph of instruction... the information to help people. before they checkout!

    Thanks so much!

  6. #176
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Ocean Front Template Support Thread

    Quote Originally Posted by CaliforniaKinship View Post
    This is what the entire shoping cart PHP looks like

    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: shopping_cart.php 3183 2006-03-14 07:58:59Z birdbrain $
    */

    define('NAVBAR_TITLE', 'The Shopping Cart');
    define('HEADING_TITLE', 'Your Shopping Cart Contents');
    define('HEADING_TITLE_EMPTY', 'Your Shopping Cart');
    define('TEXT_INFORMATION', 'Don't have a PayPal Account? NO PROBLEM! Just click CHECKOUT below and when you are redirected to our PayPal Web site, simply click the link on the left of the screen that says DON'T HAVE A PAYPAL ACCOUNT? NO PROBLEM!
    You will be able to continue checkout without an account!
    If you do have a PayPal Account, click the PayPal checkout for a faster, easier checkout!');
    define('TABLE_HEADING_REMOVE', 'Remove');
    define('TABLE_HEADING_QUANTITY', 'Qty.');
    define('TABLE_HEADING_MODEL', 'Model');
    define('TABLE_HEADING_PRICE','Unit');
    define('TEXT_CART_EMPTY', 'Your Shopping Cart is empty.');
    define('SUB_TITLE_SUB_TOTAL', 'Sub-Total:');
    define('SUB_TITLE_TOTAL', 'Total:');

    define('OUT_OF_STOCK_CANT_CHECKOUT', 'Products marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' are out of stock or there are not enough in stock to fill your order.<br />Please change the quantity of products marked with (' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '). Thank you');
    define('OUT_OF_STOCK_CAN_CHECKOUT', 'Products marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' are out of stock. Items not in stock will be placed on backorder.');

    define('TEXT_TOTAL_ITEMS', 'Total Items: ');
    define('TEXT_TOTAL_WEIGHT', '&nbsp;&nbsp: ');
    define('TEXT_TOTAL_AMOUNT', '&nbsp;&nbsp;Amount: ');

    define('TEXT_VISITORS_CART', '<a href="javascript:session_win();">[help (?)]</a>');
    define('TEXT_OPTION_DIVIDER', '&nbsp;-&nbsp;');
    ?>





    I just want the content on that page to have about a paragraph of instruction... the information to help people. before they checkout!

    Thanks so much!
    Make the following corrections as indicated by the highlights:

    define('TEXT_INFORMATION', 'Don\'t have a PayPal Account? NO PROBLEM! Just click CHECKOUT below and when you are redirected to our PayPal Web site, simply click the link on the left of the screen that says DON\'T HAVE A PAYPAL ACCOUNT? NO PROBLEM!
    You will be able to continue checkout without an account!
    If you do have a PayPal Account, click the PayPal checkout for a faster, easier checkout!');

  7. #177
    Join Date
    Sep 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ocean Front Template Support Thread

    Another newbie here. I changed the color scheme in ocean but am having a hard time guessing where all of the font colors are located. In particular I need to change the hover font color in the categories box. I want all of the side boxe display fonts to be one color and hover font the default brown. I also need to change the product font display back to brown.
    http://grindersgourmet.com Thanks, Clyde

  8. #178
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Ocean Front Template Support Thread

    Quote Originally Posted by new ocean View Post
    Another newbie here. I changed the color scheme in ocean but am having a hard time guessing where all of the font colors are located. In particular I need to change the hover font color in the categories box. I want all of the side boxe display fonts to be one color and hover font the default brown. I also need to change the product font display back to brown.
    http://grindersgourmet.com Thanks, Clyde
    The easiest way would be to open the stylesheet.css and do a search for ( a:hover )

    make changes as necessary.

  9. #179
    Join Date
    Sep 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ocean Front Template Support Thread

    Thanks, I found it. The list and hover were classed together so was able to change when I separated them. What are the names for the product fonts and product headings in the center column and the name for the sidebox titled reviews. I am looking for them on the stylesheet.css

  10. #180
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Ocean Front Template Support Thread

    Quote Originally Posted by new ocean View Post
    Thanks, I found it. The list and hover were classed together so was able to change when I separated them. What are the names for the product fonts and product headings in the center column and the name for the sidebox titled reviews. I am looking for them on the stylesheet.css
    The fonts for the entire template are fund in the stylesheet.css ( body ) declaration.

    body {
    margin: 5px 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #000000;
    background-color: #F5F5DC;
    }

 

 
Page 18 of 27 FirstFirst ... 81617181920 ... 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. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Watermelon Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 22
    Last Post: 14 Oct 2011, 04:03 AM
  5. strange characters displayingn using ocean front template
    By bishop999 in forum General Questions
    Replies: 1
    Last Post: 28 Jul 2008, 07:43 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR