Page 4 of 70 FirstFirst ... 234561454 ... LastLast
Results 31 to 40 of 691
  1. #31
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hi Clyde,

    On the layout boxes control, the document_categories.php sidebox is under the cold_steel template and the document_categories on the template default is not found. When I try to have the document_category appear by creating a document_general product, it does not show up on the sidebox.

    How do I make this appear? Thanks

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

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by Decostyle View Post
    Hi Clyde,

    On the layout boxes control, the document_categories.php sidebox is under the cold_steel template and the document_categories on the template default is not found. When I try to have the document_category appear by creating a document_general product, it does not show up on the sidebox.

    How do I make this appear? Thanks
    just delete this file from your server
    includes/modules/sideboxes/cold_steel/document_categories.php

    After doing this things should revert to the default handling of this particular sidebox.

  3. #33
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hello again!

    Thanks for all your help. I have another question. On the lower left side of the template, the store name and address appears. I would like to change this to something else, a logo of an organization we are part of, and some information about this.

    I know I can "fake" the logo by just creating an image file and adding the logo to it however how do I remove the Store address and replace it with some other text or else just disable it all together?

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

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by Decostyle View Post
    Hello again!

    Thanks for all your help. I have another question. On the lower left side of the template, the store name and address appears. I would like to change this to something else, a logo of an organization we are part of, and some information about this.

    I know I can "fake" the logo by just creating an image file and adding the logo to it however how do I remove the Store address and replace it with some other text or else just disable it all together?
    open includes/templates/cold_steel/common/tpl_footer.php

    find the following section of code and delete the highlighted portion.

    <div id="footerLogo"><address><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
    </div>

  5. #35
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hello Clyde,

    I am using the bettercategories file on my documents category and ezpages sidebox.

    On firefox it looks fine but on internet explorer, it is looking for the image files that came with it.

    I noticed on your version of the categories, all you had was a dot instead of an image and it looks okay on i.e too. Would you please let me know how I can do the same for my documents category and ez pages sidebox? Thanks again for all your help!!


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

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by Decostyle View Post
    Hello Clyde,

    I am using the bettercategories file on my documents category and ezpages sidebox.

    On firefox it looks fine but on internet explorer, it is looking for the image files that came with it.

    I noticed on your version of the categories, all you had was a dot instead of an image and it looks okay on i.e too. Would you please let me know how I can do the same for my documents category and ez pages sidebox? Thanks again for all your help!!

    open the file inludes/templates/cold_steel/sideboxes/tpl_document_categories.php
    Code:
    find the following section of code
      	//picking the appropriate pointer image:
      	switch ($categoryType) {
      		case "down":
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_doc_pointer_down.gif');
       			break;
      		case "right":
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_doc_pointer_right.gif');
      			break;
      		default:
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_doc_no_sub.gif');
      	}
    Code:
    And change it as follows:
      	//picking the appropriate pointer image:
      	switch ($categoryType) {
      		case "down":
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_cat_pointer_down.gif');
       			break;
      		case "right":
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_cat_pointer_right.gif');
      			break;
      		default:
      			$pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_cat_no_sub.gif');
      	}
    Open the file inludes/templates/cold_steel/sideboxes/tpl_expages.php

    find the following section of code:
    Code:
      $pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_ezpages.gif');
    and change it as follows:
    Code:
      $pointer = zen_image(DIR_WS_TEMPLATE_IMAGES . 'bc_cat_no_sub.gif');

  7. #37
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Thank you!!!!!

  8. #38
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hello Clyde,

    We are currently using a GODaddy SSL and their site seal is slow to load. So what happens is everytime, anything is clicked on the main page the whole site reloads without the middle portion showing waiting for the sidebox godaddy seal to load (Btw, I used a banner ad to sidebox for this.) Once it is loaded the main page is shown.

    On the other website I made, I prevented this by putting the seal site on the right hand bottom side so the loading flow would go from left sidebox, to mainpage and the right sidebox is last.

    Is there a way to manipulate the flow of page load to make the sidebox godaddy seal be last?

    Thanks again!! Your expertise is much appreciated!

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

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by Decostyle View Post
    Hello Clyde,

    We are currently using a GODaddy SSL and their site seal is slow to load. So what happens is everytime, anything is clicked on the main page the whole site reloads without the middle portion showing waiting for the sidebox godaddy seal to load (Btw, I used a banner ad to sidebox for this.) Once it is loaded the main page is shown.

    On the other website I made, I prevented this by putting the seal site on the right hand bottom side so the loading flow would go from left sidebox, to mainpage and the right sidebox is last.

    Is there a way to manipulate the flow of page load to make the sidebox godaddy seal be last?

    Thanks again!! Your expertise is much appreciated!
    Without a URL I wouldn't be able to tell.

  10. #40
    Join Date
    Jun 2008
    Location
    Canada
    Posts
    274
    Plugin Contributions
    0

    Default Date displayed in the header

    Re: Date displayed in the header


    Hello Clyde,

    How did you add the date in the header? I love that!

    P.S. Great template
    Pre-Owned Books and Second Hand Stuff: http://www.onlineyardsale.ca

 

 
Page 4 of 70 FirstFirst ... 234561454 ... LastLast

Similar Threads

  1. Responsive Cold Steel Template for v1.5.x
    By rbarbour in forum Addon Templates
    Replies: 38
    Last Post: 29 May 2017, 03:12 AM
  2. v150 Cold Steel Template
    By Sniper in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 11 Aug 2012, 06:25 PM
  3. v150 Ice Cold Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 5
    Last Post: 23 Jun 2012, 08:02 PM
  4. Cold Steel Template - fatal error
    By itseemedsosimple in forum Addon Templates
    Replies: 2
    Last Post: 1 Mar 2011, 12:46 AM
  5. Attribute Alignment Problem Cold Steel Template
    By CascianoLtd in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Sep 2009, 05:54 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