Page 67 of 68 FirstFirst ... 175765666768 LastLast
Results 661 to 670 of 672
  1. #661
    Join Date
    Jan 2009
    Posts
    7
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by leman View Post
    hi,

    i have recently downloaded and installed the acadmeme v1.1. It's a great template and works fine except for the currency header.
    When another currency is selected at the drop-down box, it does not load the selected currency, and still uses the default us dollar.

    In the admin, i have properly inserted 4 other currencies and also set the switch to default language currency to "false".

    Is there something else i need to set to make the currency box works just like the default temmplate version.

    Thanks.

    got my answer!
    Must use the acadame v1.2
    thank you

  2. #662
    Join Date
    Sep 2006
    Posts
    17
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    How do I setup ez pages to show login/logoff/account depending on if the customer is already logged in or not?
    At the moment i just have My Account showing, but would like it to automatically change depending on the situation?

    Tony

  3. #663
    Join Date
    Dec 2008
    Posts
    81
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by tonyrobbo View Post
    How do I setup ez pages to show login/logoff/account depending on if the customer is already logged in or not?
    At the moment i just have My Account showing, but would like it to automatically change depending on the situation?

    Tony
    I assume you are talking about the header nav links. I did something similar. I butchered up the header file with some conventional HTML. It abandons the EZpages Bar Template system and uses direct links to each page instead. You can tweak it to your taste if you know the basics of html links.

    Now my store header shows these links when not logged in...
    ##################################################__
    Welcome to My_Domain_Here.com

    Home | Products | Login | Register | Shopping Cart | Site Map
    ######################################################################___



    And it shows these links when logged in...
    ##################################################__
    [Logged In] Welcome Bob.

    Home | Products | Logout | Shopping Cart | My Account | Site Map
    ######################################################################___


    Edit this page...includes/templates/iC_AcadameV1.2/common/tpl_header.php

    FIND:
    Code:
    <div id="topLinks">
    	<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { 
    	require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); 
    	 } ?>
    </div><br class="clearBoth" />
    REPLACE WITH:
    Code:
    <div id="topLinks">
    	<span id="navEZPagesTop">
    		<?php
    		if (isset($_SESSION['customer_id']))
    			{
    			echo '[Logged In] Welcome ';
    			echo $_SESSION['customer_first_name'];
    			echo '.<br /><br />';
    			echo '<a href="http://www.My_Domain.com/index.php"> Home </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=products_all"> Products </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=logoff"> Logout </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=shopping_cart"> Shopping Cart </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=account"> My Account </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=site_map"> Site Map </a>';
    			}
    		else
    			{
    			echo '<strong>Welcome to My_Domain.com</strong>';
    			echo '<br /><br />';
    			echo '<a href="http://www.My_Domain.com/index.php"> Home </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=products_all"> Products </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=login"> Login </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=create_account"> Register </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=shopping_cart"> Shopping Cart </a>|';
    			echo '<a href="http://www.My_Domain.com/index.php?main_page=site_map"> Site Map </a>';
    			}
    		?>
    	</span>
    </div><br class="clearBoth" />
    Of course, you should replace all of the "My_Domain" with your store domain name. Also you can edit the link for "Register" to make it use ssl if you want.

    I also had to make a few tweaks to /includes/templates/iC_AcadameV1.2/css/stylesheet.css to make it fit/display correctly. I forget, but I think I changed items in the #topLinks area.

    I suppose you could do something similar in the footer file. I hope this is what you had in mind.

  4. #664
    Join Date
    Sep 2006
    Posts
    17
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    That's exactly what i wanted, thank you for taking time to reply.

  5. #665
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    I love your template, thanks for all the hard work!

    I am having a small problem - I am trying to figure out how to have a link from the shopping cart icon in the red header bar to the checkout page.

    My site is at www.redskyltd.co.uk/taff

    Any idea how to do this?

  6. #666
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by redsky View Post
    I love your template, thanks for all the hard work!

    I am having a small problem - I am trying to figure out how to have a link from the shopping cart icon in the red header bar to the checkout page.

    My site is at www.redskyltd.co.uk/taff

    Any idea how to do this?
    You may have to eliminate one of your other EZ-Page links (just because of space limitations) and replace it with
    HTML Code:
    http://www.redskyltd.co.uk/taff/index.php?main_page=checkout_shipping
    Newest Site: ChargerPros - Stuff4Toys

  7. #667
    Join Date
    Dec 2006
    Posts
    107
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Anyone know if the author of this template is still around? The downloads on his site are broken and loads of the links redirect to some spam site, growingvertical. Looks like he may have been hacked or something...

    Could do with the latest version if it's still available

  8. #668
    Join Date
    May 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Hi i have this problem:
    When i try to put Meta tags in Cirylic (Bulgarian) or to write in the Main Page - it's showing only some symbolst and squares. I changed all files from en_US.ISO_8859-1 to bg_BG.UTF-8 but with no results, what is wrong?

    I will be glad for some help please

    Thanks

  9. #669
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    I see no one has posted here since 24th January 2009, are we still gettin support on this template, if we are I need help to add space between the images on the product listings images are running together. @bargainsonlinesite.com click New Releases, or Music Bestsellers

  10. #670
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template


 

 
Page 67 of 68 FirstFirst ... 175765666768 LastLast

Similar Threads

  1. New to Zencart, using Acadame template
    By bellabel in forum Addon Templates
    Replies: 5
    Last Post: 27 Jun 2011, 07:52 PM
  2. Replies: 2
    Last Post: 16 Dec 2008, 03:44 AM
  3. Installing Acadame Template
    By jbreezy in forum Addon Templates
    Replies: 2
    Last Post: 19 Nov 2008, 11:29 AM
  4. Acadame Template Help
    By trisha1581 in forum Addon Templates
    Replies: 0
    Last Post: 13 May 2008, 08:44 PM
  5. Plz help me! Acadame Template
    By wardah15 in forum Templates, Stylesheets, Page Layout
    Replies: 14
    Last Post: 12 Feb 2008, 10:26 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