Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Jan 2014
    Location
    Ontario, Canada
    Posts
    252
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    Absolutely :)

  2. #12
    Join Date
    Apr 2012
    Posts
    127
    Plugin Contributions
    0

    Default Re: Shopping Cart Steps Images [Support Thread]

    Quote Originally Posted by Trinity14 View Post
    Absolutely :)
    Thank you! I don't have a test cart, so I'm installing this raw on my live site... here's hoping I do it right. I'll come back here if I need help. Thank you for the really detailed instructions in the readme file, it's appreciated!

  3. #13
    Join Date
    Jan 2014
    Location
    Ontario, Canada
    Posts
    252
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    You're welcome, I'm certain you will install this right. I'm here to help if you need assistance. Let me know how it goes :)

  4. #14
    Join Date
    Apr 2012
    Posts
    127
    Plugin Contributions
    0

    Default Re: Shopping Cart Steps Images [Support Thread]

    Okay so I added the images folder for the shopping_cart, and I edited the first php file (languages for the //cart_steps) - then when I went to the next step for editing my tpl_login default file, that didn't exist for my template. I triple checked. To remedy this I went in to the default template folder, copied the login default file from there, and pasted it into my template's folder. Before making any edits to that file though, I double-checked my login page, and it looks like this:

    http://meljensdesigns.com/index.php?main_page=login

    I think I made a mistake in copying the login default file over, because the two login boxes there (new customers and existing customers) used to be side-by-side. I checked this in Chrome and in IE and they both look the same. I even deleted the copied file from my template's folder and it didn't change it back. Not sure how to fix this. :-(

    (Can you tell I am not that knowledgeable with coding? lol! I did my best to follow your steps so far, and I've installed other mods, not sure what I did wrong! Guessing copying that file was a BAD idea)

  5. #15
    Join Date
    Jan 2014
    Location
    Ontario, Canada
    Posts
    252
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    Meljen - I know making changes to a live site can be stressful. You are right to use the template overwrite system.

    I am not familiar with the ashley pink template. I believe if you continue with the installation, it could remedy the spacing issue you are experiencing.

    Your new customers box has shifted up and in doing so has made the returning customers unable to 'fit' where it should. Once you add the css styling (#cartsteps) in your template it should be successful.

    Thanks for letting me know your progress, you are on the right track :)

  6. #16
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: Shopping Cart Steps Images [Support Thread]

    Quote Originally Posted by meljen View Post
    Okay so I added the images folder for the shopping_cart, and I edited the first php file (languages for the //cart_steps) - then when I went to the next step for editing my tpl_login default file, that didn't exist for my template. I triple checked. To remedy this I went in to the default template folder, copied the login default file from there, and pasted it into my template's folder. Before making any edits to that file though, I double-checked my login page, and it looks like this:

    http://meljensdesigns.com/index.php?main_page=login

    I think I made a mistake in copying the login default file over, because the two login boxes there (new customers and existing customers) used to be side-by-side. I checked this in Chrome and in IE and they both look the same. I even deleted the copied file from my template's folder and it didn't change it back. Not sure how to fix this. :-(

    (Can you tell I am not that knowledgeable with coding? lol! I did my best to follow your steps so far, and I've installed other mods, not sure what I did wrong! Guessing copying that file was a BAD idea)
    The css .floatingbox is set for 47%, add the two together and they still don't have enough space withing the center column, especially if there are padding or margins set. Notice one is set for back the other forward - left justify the box or right justify the box.

    If you remove the float: left from #loginDefaultHeading you'll notice the two floating boxes will position correctly.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  7. #17
    Join Date
    Jan 2014
    Location
    Ontario, Canada
    Posts
    252
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    Good news... There aren't any changes to make to install this module in 1.5.3.

    Take care if you are doing a file comparison as two files have been changed with the upgrade but it won't effect this module's performance.

  8. #18
    Join Date
    Mar 2016
    Location
    Norcatur, Kansas, USA
    Posts
    80
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    Just to let you know, I installed this and had to make a change to the code you supplied for Includes/Languages/YOUR_TEMPLATE/English.php:

    Your supplied code:
    Code:
    Note: *** If you are using zen cart with regular shipping use this ***
    // cart_steps
    define('SHOPPING_CART_STEPS_0', '<img src="/images/shopping_cart/shopping_cart_steps_0.gif" alt="Login" />');
    define('SHOPPING_CART_STEPS_1', '<img src="/images/shopping_cart/shopping_cart_steps_1.gif" alt="Shopping" />');
    define('SHOPPING_CART_STEPS_2', '<img src="/images/shopping_cart/shopping_cart_steps_2.gif" alt="Shipping" />');
    define('SHOPPING_CART_STEPS_3', '<img src="/images/shopping_cart/shopping_cart_steps_3.gif" alt="Payment" />');
    define('SHOPPING_CART_STEPS_4', '<img src="/images/shopping_cart/shopping_cart_steps_4.gif" alt="Confirm" />');
    define('SHOPPING_CART_STEPS_5', '<img src="/images/shopping_cart/shopping_cart_steps_5.gif" alt="Thank You" />');
    Change I had to make:

    Code:
    Note: *** If you are using zen cart with regular shipping use this ***
    // cart_steps
    define('SHOPPING_CART_STEPS_0', '<img src="images/shopping_cart/shopping_cart_steps_0.gif" alt="Login" />');
    define('SHOPPING_CART_STEPS_1', '<img src="images/shopping_cart/shopping_cart_steps_1.gif" alt="Shopping" />');
    define('SHOPPING_CART_STEPS_2', '<img src="images/shopping_cart/shopping_cart_steps_2.gif" alt="Shipping" />');
    define('SHOPPING_CART_STEPS_3', '<img src="images/shopping_cart/shopping_cart_steps_3.gif" alt="Payment" />');
    define('SHOPPING_CART_STEPS_4', '<img src="images/shopping_cart/shopping_cart_steps_4.gif" alt="Confirm" />');
    define('SHOPPING_CART_STEPS_5', '<img src="images/shopping_cart/shopping_cart_steps_5.gif" alt="Thank You" />');
    This is because my store is not in the root of my server.

  9. #19
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: Shopping Cart Steps Images [Support Thread]

    I have this working for 1.54 and 155e any chance Trinity14 has a new package in the works?
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  10. #20
    Join Date
    Jan 2014
    Location
    Ontario, Canada
    Posts
    252
    Plugin Contributions
    3

    Default Re: Shopping Cart Steps Images [Support Thread]

    Quote Originally Posted by twitchtoo View Post
    I have this working for 1.54 and 155e any chance Trinity14 has a new package in the works?
    I recently installed Shopping Cart Steps Images in a v1.55e with some minor edits to the install instructions. I made a set of custom shopping_cart_steps_X.gif more mobile friendly. I've included the image below for display.

    Name:  mobile_shopping_cart_steps_complete.jpg
Views: 88
Size:  19.2 KB

    I will compile an updated plugin with the new responsive images and the solution Fjolsvith provided in post #18. Thanks for showing support!

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Best Seller's Scrolling Images - support thread
    By chaiavi in forum Addon Sideboxes
    Replies: 32
    Last Post: 25 Jun 2022, 03:23 AM
  2. Order Steps (tableless) support thread
    By miles in forum All Other Contributions/Addons
    Replies: 205
    Last Post: 27 Aug 2017, 04:37 PM
  3. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM
  4. Replies: 29
    Last Post: 24 Sep 2014, 09:59 PM
  5. Template support thread: Sliding Home Images
    By markz in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 29 Jul 2013, 07:49 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