Page 42 of 48 FirstFirst ... 324041424344 ... LastLast
Results 411 to 420 of 477
  1. #411
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by Stingey View Post
    Started from scratch (backup)
    copied 'search.jpg' from /includes/templates/aberdeen_neutral/images to language buttons folders (/includes/templates/aberdeen_neutral/buttons/romanian)
    and renamed to 'button_header_search.jpg'
    added
    Code:
    define('BUTTON_IMAGE_HEADER_SEARCH', 'button_header_search.jpg');
    to both languages (/includes/languages/...../button_names.php)

    Before uploading from sheffield_blue template I changed code in 'tpl_search.php' line 21
    from
    Code:
    zen_image_submit(BUTTON_IMAGE_SEARCH_HEADER,HEADER_SEARCH_BUTTON);
    to
    Code:
    zen_image_submit(BUTTON_IMAGE_HEADER_SEARCH,HEADER_SEARCH_BUTTON);
    and changed code in 'tpl_search_header.php' line 19
    from
    Code:
     class="search-header-box"..................................... zen_image_submit (BUTTON_IMAGE_SEARCH_HEADER,HEADER_SEARCH_BUTTON);
    to
    Code:
     class="header-search-box" ..................................... zen_image_submit (BUTTON_IMAGE_HEADER_SEARCH,HEADER_SEARCH_BUTTON);
    First change to class brings the border back to the search box.
    (I feel almost clever)
    Almost there, compared to the demo on your site I have 1 minor difference:
    The search text box is aligned lower than the search button image.
    Any ideas?
    I do hope this is of use to someone else.
    Shaun the not so zenfully challenged any more.
    You can isolate the search box to adjust positioning by using the class .header-search-box in the stylesheet.css file.

    Thanks,

    Anne

  2. #412
    Join Date
    Mar 2012
    Posts
    54
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Hi there;

    I was wondering if you could help me out.
    I seem to have disabled my go to checkout button and for the life of me, I can't figure out how to put it back. (yes I'm an idiot)
    I've looked at the coding in /public_html/includes/templates/YOUR_TEMPLATE/templates/tpl_shopping_cart_default.php and nothing is commented out :

    <!--bof shopping cart buttons-->
    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_CONTINUE_SHOPPING, BUTTON_CONTINUE_SHOPPING_ALT) . '</a>'; ?></div>
    <?php
    // show update cart button
    if (SHOW_SHOPPING_CART_UPDATE == 2 or SHOW_SHOPPING_CART_UPDATE == 3) {
    ?>
    <div class="buttonRow back"><?php echo zen_image_submit(ICON_IMAGE_UPDATE, ICON_UPDATE_ALT); ?></div>
    <?php
    } else { // don't show update button below cart
    ?>
    <?php
    } // show update button
    ?>
    <!--eof shopping cart buttons-->

    Also gone to /public_html/includes/languages/english/YOUR_TEMPLATE/header.php Checkout is there :

    define('HEADER_TITLE_CHECKOUT', 'Checkout');

    Also checked in Admin/Config/MyStore and Display Cart after adding Product is set to true


    Could you possibly point me in the right direction for finding my lost button?

    Thanks,
    KJ

  3. #413
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by ladyk View Post
    Hi there;

    I was wondering if you could help me out.
    I seem to have disabled my go to checkout button and for the life of me, I can't figure out how to put it back. (yes I'm an idiot)
    I've looked at the coding in /public_html/includes/templates/YOUR_TEMPLATE/templates/tpl_shopping_cart_default.php and nothing is commented out :

    <!--bof shopping cart buttons-->
    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_CONTINUE_SHOPPING, BUTTON_CONTINUE_SHOPPING_ALT) . '</a>'; ?></div>
    <?php
    // show update cart button
    if (SHOW_SHOPPING_CART_UPDATE == 2 or SHOW_SHOPPING_CART_UPDATE == 3) {
    ?>
    <div class="buttonRow back"><?php echo zen_image_submit(ICON_IMAGE_UPDATE, ICON_UPDATE_ALT); ?></div>
    <?php
    } else { // don't show update button below cart
    ?>
    <?php
    } // show update button
    ?>
    <!--eof shopping cart buttons-->

    Also gone to /public_html/includes/languages/english/YOUR_TEMPLATE/header.php Checkout is there :

    define('HEADER_TITLE_CHECKOUT', 'Checkout');

    Also checked in Admin/Config/MyStore and Display Cart after adding Product is set to true


    Could you possibly point me in the right direction for finding my lost button?

    Thanks,
    KJ
    Can you post a link to the page that is supposed to have the "go to checkout" button?

    Thanks,

    Anne

  4. #414
    Join Date
    Mar 2012
    Posts
    54
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    Can you post a link to the page that is supposed to have the "go to checkout" button?

    Thanks,

    Anne

    Hi Anne;

    Thanks for getting back.

    http://bride-azzled.com/index.php?ma...r_of_uploads=0

  5. #415
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by ladyk View Post
    It looks like you probably made a mistake in the installation of the google checkout module. I would restore the backup from before the module installation and try installing again.

    Thanks,

    Anne

  6. #416
    Join Date
    Mar 2012
    Posts
    54
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    It looks like you probably made a mistake in the installation of the google checkout module. I would restore the backup from before the module installation and try installing again.

    Thanks,

    Anne

    Thanks for getting back Anne.
    I tried uninstalling Google Checkout in Admin and the button hasn't reappeared.
    Ideas? Help?

  7. #417
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by ladyk View Post
    Thanks for getting back Anne.
    I tried uninstalling Google Checkout in Admin and the button hasn't reappeared.
    Ideas? Help?
    No, you need to uninstall the actual module files. Just restoring your backup prior to the module installation should do it.

    Thanks,

    Anne

  8. #418
    Join Date
    Mar 2012
    Posts
    54
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    No, you need to uninstall the actual module files. Just restoring your backup prior to the module installation should do it.

    Thanks,

    Anne

    Ok, will give that a try. Thanks Anne

  9. #419
    Join Date
    Mar 2012
    Posts
    54
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by ladyk View Post
    Ok, will give that a try. Thanks Anne

    Hi Anne;

    Ok, I removed all of the Google Checkout mod and my button is still missing.
    I've not only lost my mind, worse yet, I've lost my button lol

    http://bride-azzled.com/index.php?ma...r_of_uploads=0

    Help?

  10. #420
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by ladyk View Post
    Hi Anne;

    Ok, I removed all of the Google Checkout mod and my button is still missing.
    I've not only lost my mind, worse yet, I've lost my button lol

    http://bride-azzled.com/index.php?ma...r_of_uploads=0

    Help?
    If you have a file in includes/templates/aberdeen_neutral/templates/tpl_shopping_cart_default.php, back it up, then remove it and see if the default functionality returns.

    Thanks,

    Anne

 

 
Page 42 of 48 FirstFirst ... 324041424344 ... LastLast

Similar Threads

  1. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  2. Replies: 6
    Last Post: 3 Sep 2015, 07:04 PM
  3. v153 Missing Box File Names in Layout Controller for Template Aberdeen Neutral
    By fribble in forum Customization from the Admin
    Replies: 2
    Last Post: 26 Feb 2015, 12:15 AM
  4. v151 Slideshow On Aberdeen Neutral
    By SilverHD in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 18 Dec 2014, 01:07 AM
  5. Aberdeen Neutral Template missing about us page
    By Minu in forum Addon Templates
    Replies: 3
    Last Post: 25 Nov 2012, 08:01 PM

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