Page 8 of 12 FirstFirst ... 678910 ... LastLast
Results 71 to 80 of 111
  1. #71
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Has anyone successfully implemented this updated version of CJ Loader? https://github.com/yellow1912/cjloader

  2. #72
    Join Date
    Nov 2005
    Posts
    86
    Plugin Contributions
    1

    Default Re: css javascript loader addon problems

    I'm having trouble with the latest version,

    the html_header.php can see the css files on my site (i've echo them out as strings) but the code below does not seem to output them to the header as css/js files paths.


    Code:
     foreach($files['css'] as $file)
      	if($file['include']) include($file['string']);
      	else echo $file['string'];
    
      foreach($files['js'] as $file)
      	if($file['include']) include($file['string']);
      	else echo $file['string'];

    I've got IH3 but no other public side mods.

    Anyone else struggling?

  3. #73
    Join Date
    Sep 2011
    Posts
    6
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    What if we dont have a html header file in our cart directory and instead have a tpl_main_page.php

    Would we insert the code there?

  4. #74
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Quote Originally Posted by FlawedPorcelain View Post
    What if we dont have a html header file in our cart directory and instead have a tpl_main_page.php

    Would we insert the code there?
    That's impossible because it's a file required by Zen Cart to work. You might have it in the default template (in which case you'll want to move it to your custom template). By default the file is located in: /includes/templates/template_default/common

  5. #75
    Join Date
    Oct 2006
    Location
    UK
    Posts
    27
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Hi guys, I installed the latest version of this mod about a month ago and it has really helped to reduce my cpu usage but I have found that a possible compatibility issue with the css code of order_steps__tableless. This other mod displays correctly if I disable CSS/JS Loader but when enabled it doesn't display as intended.


    Reading the instructions on the readme it says takes advantage of the per page stylesheet system introduced in Zen Cart version 1.3+. Could this be the area of the problem. All other formatting works as intended otherwise. It's probably something I've missed but I would like to get to the bottom of it.

    Thanks in advance
    When the going gets tough, the tough take a coffee break.

    visit my store at: http://www.mysticminds.co.uk/store

  6. #76
    Join Date
    Jun 2011
    Posts
    63
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    i want to load the js and css file to popup_search_help page,
    $loaders[] = array('conditions' => array('pages' => array('popup_search_help') doesn't work
    what do i load them ?

  7. #77
    Join Date
    Dec 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Quote Originally Posted by inception View Post
    i want to load the js and css file to popup_search_help page,
    PHP Code:
    $loaders[] = array('conditions' => array('pages' => array('popup_search_help'
    doesn't work
    what do i load them ?
    I guess the question is are the css/js files needed only for the popup_search_help page or for all pages?

    If it is for all pages then just put '*' in the pages array like
    PHP Code:
    $loaders[] = array(
        
    'conditions' => 
            array(
                
    'pages' => pages' => array('*') 
    This will put the css/js files on every page for zencart.

    Quote Originally Posted by DickTurpin View Post
    Hi guys, I installed the latest version of this mod about a month ago and it has really helped to reduce my cpu usage but I have found that a possible compatibility issue with the css code of order_steps__tableless. This other mod displays correctly if I disable CSS/JS Loader but when enabled it doesn't display as intended.
    If this is the same as contribution. The only problem I can see is that the contribution doesn't use yellow's autoloader file. You can make your own autoloader for the checkout pages just replace the '*' with 'checkout' for the pages array. This makes it easier to manage the css/js files for your site IMHO.


    Quote Originally Posted by RedBaron
    I do have one question about the new Zen Cart v1.5, and hopefully some of those working on it can answer. The new html_header.php in ZCv1.5 uses a bit of code from this contribution ( I hope with blessings ), but is this better than using a require call or the way it is done in the latest version of yellow's work? My main reason for the question is because of file size. It is a major bit of php code that was just kind of dumped into the file it does no minification, but does load all css/js files needed for the page. Thanks in advance.
    Red Baron
    Happy to be Zenning today

  8. #78
    Join Date
    Jun 2011
    Posts
    63
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Quote Originally Posted by Redbaron2 View Post
    I guess the question is are the css/js files needed only for the popup_search_help page or for all pages?

    If it is for all pages then just put '*' in the pages array like
    PHP Code:
    $loaders[] = array(
        
    'conditions' => 
            array(
                
    'pages' => pages' => array('*') 
    This will put the css/js files on every page for zencart.



    If this is the same as contribution. The only problem I can see is that the contribution doesn't use yellow's autoloader file. You can make your own autoloader for the checkout pages just replace the '*' with 'checkout' for the pages array. This makes it easier to manage the css/js files for your site IMHO.
    some js and css are needed only for popup_search_help page and product_info page, i wanna add my own function to these two pages.

    i've tried adding $loaders[] = array('conditions' => array('pages' => pages' => array('*'),
    then i found the js and css files are loaded by the other pages such as product_info, shopping_cart ... except popup_search_help, this page is a bit special, not like the other pages

    any ideas?

  9. #79
    Join Date
    Dec 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Quote Originally Posted by inception View Post
    some js and css are needed only for popup_search_help page and product_info page, i wanna add my own function to these two pages.

    i've tried adding $loaders[] = array('conditions' => array('pages' => pages' => array('*'),
    then i found the js and css files are loaded by the other pages such as product_info, shopping_cart ... except popup_search_help, this page is a bit special, not like the other pages

    any ideas?
    inception in that case I would use something like this in the autoloader.
    PHP Code:
    $pages = ($_GET['main_page'] == 'popup_search_help') ? '*' '' ;
    $loaders[] = array( 
        
    'conditions' =>  
            array( 
                
    'pages' => pages' => array($pages) 
    This could be a slight bug in the program, but the above code will work to only load the loader css/js files on that page. This is a quick and dirty way of getting the css/js files only for said page.
    Red Baron
    Happy to be Zenning today

  10. #80
    Join Date
    Aug 2007
    Posts
    77
    Plugin Contributions
    0

    Default Re: css javascript loader addon problems

    Really need help. Downloaded newest version of FEC and the newest version of JCLOADER along with the newest version of zencart and my easyslide does not work anymore!!! How can I fix this? Thanks!!! Here is my header:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
    <head>
    <title>New World Treasure, The Art of Custom Jewelry</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" content="Bracelets Necklaces Lipstick Compacts ecommerce, open source, shop, online shopping " />
    <meta name="description" content="New World Treasure :  - Bracelets Necklaces Lipstick Compacts ecommerce, open source, shop, online shopping" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="author" content="The Zen Cart&trade; Team and others" />
    <meta name="generator" content="shopping cart program by Zen Cart&trade;, http://www.zen-cart.com eCommerce" />
    <link rel="icon" href="favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    
    <base href="https://newworldtreasure.com/" />
    
    <link rel="stylesheet" type="text/css" media="print" href="includes/templates/ashley_pink/css/print_stylesheet.css" />
    <link rel="stylesheet" type="text/css" href="min/?f=/includes/templates/ashley_pink/css/stylesheet.css,/includes/templates/ashley_pink/css/stylesheet_betterCategoriesEzInfo.css,/includes/templates/ashley_pink/css/stylesheet_css_buttons.css,/includes/templates/ashley_pink/css/stylesheet_dotline.css,/includes/templates/ashley_pink/css/stylesheet_footer_menu.css&amp;1332479333" />
    <script type="text/javascript" src="min/?f=/includes/templates/ashley_pink/jscript/jscript_googleanalytics.js,/includes/templates/ashley_pink/jscript/jscript_jquery.js&amp;1332479333"></script>
    <script type="text/javascript">
    <!--
    /*
     * 	Easy Slider 1.7 - jQuery plugin
     *	written by Alen Grakalic	
     *	http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
     *
     *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
     *	Dual licensed under the MIT (MIT-LICENSE.txt)
     *	and GPL (GPL-LICENSE.txt) licenses.
     *
     *	Built for jQuery library
     *	http://jquery.com
     *
     */
     
    /*
     *	markup example for $("#slider").easySlider();
     *	
     * 	<div id="slider">
     *		<ul>
     *			<li><img src="images/01.jpg" alt="" /></li>
     *			<li><img src="images/02.jpg" alt="" /></li>
     *			<li><img src="images/03.jpg" alt="" /></li>
     *			<li><img src="images/04.jpg" alt="" /></li>
     *			<li><img src="images/05.jpg" alt="" /></li>
     *		</ul>
     *	</div>
     *
     */
    
    
    (function($) {
    
    	$.fn.easySlider = function(options){
    	  
    		// default configuration properties
    		var defaults = {			
    			prevId: 		'prevBtn',
    			prevText: 		'Previous',
    			nextId: 		'nextBtn',	
    			nextText: 		'Next',
    			controlsShow:	true,
    			controlsBefore:	'',
    			controlsAfter:	'',	
    			controlsFade:	true,
    			firstId: 		'firstBtn',
    			firstText: 		'First',
    			firstShow:		false,
    			lastId: 		'lastBtn',	
    			lastText: 		'Last',
    			lastShow:		false,				
    			vertical:		false,
    			speed: 			2000,
    			auto:			false,
    			pause:			3000,
    			continuous:		false, 
    			numeric: 		false,
    			numericId: 		'controls'
    		}; 
    		
    		var options = $.extend(defaults, options);  
    				
    		this.each(function() {  
    			var obj = $(this); 				
    			var s = $("li", obj).length;
    			var w = $("li", obj).width(); 
    			var h = $("li", obj).height(); 
    			var clickable = true;
    			obj.width(w); 
    			obj.height(h); 
    			obj.css("overflow","hidden");
    			var ts = s-1;
    			var t = 0;
    			$("ul", obj).css('width',s*w);			
    			
    			if(options.continuous){
    				$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));
    				$("ul", obj).append($("ul li:nth-child(2)", obj).clone());
    				$("ul", obj).css('width',(s+1)*w);
    			};				
    			
    			if(!options.vertical) $("li", obj).css('float','left');
    								
    			if(options.controlsShow){
    				var html = options.controlsBefore;				
    				if(options.numeric){
    					html += '<div id="control_div"><ol id="'+ options.numericId +'"></div></ol>';
    				} else {
    					if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';
    					html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';
    					html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';
    					if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';				
    				};
    				
    				html += options.controlsAfter;						
    				$(obj).after(html);										
    			};
    			
    			if(options.numeric){									
    				for(var i=0;i<s;i++){						
    					$(document.createElement("li"))
    						.attr('id',options.numericId + (i+1))
    						.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')
    						.appendTo($("#"+ options.numericId))
    						.click(function(){							
    							animate($("a",$(this)).attr('rel'),true);
    						}); 												
    				};							
    			} else {
    				$("a","#"+options.nextId).click(function(){		
    					animate("next",true);
    				});
    				$("a","#"+options.prevId).click(function(){		
    					animate("prev",true);				
    				});	
    				$("a","#"+options.firstId).click(function(){		
    					animate("first",true);
    				});				
    				$("a","#"+options.lastId).click(function(){		
    					animate("last",true);				
    				});				
    			};
    			
    			function setCurrent(i){
    				i = parseInt(i)+1;
    				$("li", "#" + options.numericId).removeClass("current");
    				$("li#" + options.numericId + i).addClass("current");
    			};
    			
    			function adjust(){
    				if(t>ts) t=0;		
    				if(t<0) t=ts;	
    				if(!options.vertical) {
    					$("ul",obj).css("margin-left",(t*w*-1));
    				} else {
    					$("ul",obj).css("margin-left",(t*h*-1));
    				}
    				clickable = true;
    				if(options.numeric) setCurrent(t);
    			};
    			
    			function animate(dir,clicked){
    				if (clickable){
    					clickable = false;
    					var ot = t;				
    					switch(dir){
    						case "next":
    							t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;						
    							break; 
    						case "prev":
    							t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
    							break; 
    						case "first":
    							t = 0;
    							break; 
    						case "last":
    							t = ts;
    							break; 
    						default:
    							t = dir;
    							break; 
    					};	
    					var diff = Math.abs(ot-t);
    					var speed = diff*options.speed;						
    					if(!options.vertical) {
    						p = (t*w*-1);
    						$("ul",obj).animate(
    							{ marginLeft: p }, 
    							{ queue:false, duration:speed, complete:adjust }
    						);				
    					} else {
    						p = (t*h*-1);
    						$("ul",obj).animate(
    							{ marginTop: p }, 
    							{ queue:false, duration:speed, complete:adjust }
    						);					
    					};
    					
    					if(!options.continuous && options.controlsFade){					
    						if(t==ts){
    							$("a","#"+options.nextId).hide();
    							$("a","#"+options.lastId).hide();
    						} else {
    							$("a","#"+options.nextId).show();
    							$("a","#"+options.lastId).show();					
    						};
    						if(t==0){
    							$("a","#"+options.prevId).hide();
    							$("a","#"+options.firstId).hide();
    						} else {
    							$("a","#"+options.prevId).show();
    							$("a","#"+options.firstId).show();
    						};					
    					};				
    					
    					if(clicked) clearTimeout(timeout);
    					if(options.auto && dir=="next" && !clicked){;
    						timeout = setTimeout(function(){
    							animate("next",false);
    						},diff*options.speed+options.pause);
    					};
    			
    				};
    				
    			};
    			// init
    			var timeout;
    			if(options.auto){;
    				timeout = setTimeout(function(){
    					animate("next",false);
    				},options.pause);
    			};		
    			
    			if(options.numeric) setCurrent(0);
    		
    			if(!options.continuous && options.controlsFade){					
    				$("a","#"+options.prevId).hide();
    				$("a","#"+options.firstId).hide();				
    			};				
    			
    		});
    	  
    	};
    
    })(jQuery);
    
    -->
    
    </script>
    
    
    </head>
    <body id="indexHomeBody">
    
    <div id="mainWrapper">
    
    
    
    <!--bof-header logo and navigation display-->
    
    
    <div id="header-curr-lang">
    <div id="lang_header" class="topBox centeredContent">Languages:&nbsp;&nbsp;<a href="https://newworldtreasure.com/index.php?main_page=index&amp;language=en"><img src="includes/languages/english/images/icon.gif" alt="English" title=" English " width="22" height="24" /></a>&nbsp;&nbsp;</div><div id="currency_header" class="topBox"><form name="currencies_form_header" action="https://newworldtreasure.com/index.php?main_page=index" method="get">Currencies:&nbsp;&nbsp;<select name="currency" onchange="this.form.submit();" class="header">
      <option value="USD" selected="selected">US Dollar</option>
      <option value="EUR">Euro</option>
      <option value="GBP">GB Pound</option>
      <option value="CAD">Canadian Dollar</option>
      <option value="AUD">Australian Dollar</option>
    </select>
    <input type="hidden" name="main_page" value="index" /></form></div><div class="clearBoth"></div>
    </div>
    <div id="headerWrapper">
    
    
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><a href="https://newworldtreasure.com/"><img src="includes/templates/ashley_pink/images/logo.gif" alt="New World Treasure" title=" New World Treasure " width="405" height="191" /></a>      <div id="tagline"></div>
    
    </div>
    
    <br class="clearBoth" />
    <!--eof-branding display-->
    
    <!--eof-header logo and navigation display-->
    
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
       <li><a href="https://newworldtreasure.com/">Home</a> | </li>                                                                        
        <li><a href="https://newworldtreasure.com/index.php?main_page=contact_us">Contact Us</a> | </li>
            <li><a href="https://newworldtreasure.com/index.php?main_page=login">Log In</a> | </li>
    	  <li><img src="includes/templates/ashley_pink/images/cart.jpg" class="cart-image" alt="the shopping cart" /><a href="https://newworldtreasure.com/index.php?main_page=shopping_cart">Shopping Cart - 0 item(s) - $0.00</a> | </li>
    	<li><a href="https://newworldtreasure.com/index.php?main_page=checkout_shipping"><span class="header-checkout">Checkout</span></a></li>
    	
    </ul>
    </div>
    <div id="navMainSearch"><form name="quick_find_header" action="https://newworldtreasure.com/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" class="search-header-box" maxlength="30" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" />&nbsp;<input type="image" src="includes/templates/ashley_pink/buttons/english/button_search_header.gif" value="" class="search-header-button" style="width: 70px" /></form></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->
    
    
    
    <!--bof-optional categories tabs navigation display-->
    <div id="navCatTabsWrapper">
    <div id="navCatTabs">
    <ul>
      <li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=1">Bracelets</a> </li>
      <li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=12">Lipstick Compacts</a> </li>
      <li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=8">Necklaces</a> </li>
    </ul>
    </div>
    </div>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <!--eof-header ezpage links-->
    </div>
    
    <table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
      <tr>
    
     <td id="navColumnOne" class="columnLeft" style="width: 150px">
    <div id="navColumnOneWrapper" style="width: 180px"><!--// bof: categories //-->
    <div class="leftBoxContainer" id="categories" style="width: 180px">
    <h3 class="leftBoxHeading" id="categoriesHeading">Categories</h3>
    <div id="categoriesContent" class="sideBoxContent">
    <div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=1"><img src="includes/templates/ashley_pink/images/bc_cat_pointer_right.gif" alt="" width="9" height="5" />Bracelets-&gt;&nbsp;(26)</a></div><div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=12"><img src="includes/templates/ashley_pink/images/bc_cat_no_sub.gif" alt="" width="9" height="5" />Lipstick Compacts&nbsp;(5)</a></div><div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&amp;cPath=8"><img src="includes/templates/ashley_pink/images/bc_cat_pointer_right.gif" alt="" width="9" height="5" />Necklaces-&gt;&nbsp;(3)</a></div><br style="line-height: 0;" /><hr id="catBoxDivider" /><br style="line-height: 0;" /><div class="betterCategories"><a class="category-links" href="https://newworldtreasure.com/index.php?main_page=products_new"><img src="includes/templates/ashley_pink/images/bc_cat_boxes.gif" alt="" width="9" height="5" />New Products ...</a></div><div class="betterCategories"><a class="category-links" href="https://newworldtreasure.com/index.php?main_page=products_all"><img src="includes/templates/ashley_pink/images/bc_cat_boxes.gif" alt="" width="9" height="5" />All Products ...</a></div></div></div>
    <!--// eof: categories //-->
    
    <!--// bof: whatsnew //-->
    <div class="leftBoxContainer" id="whatsnew" style="width: 180px">
    <h3 class="leftBoxHeading" id="whatsnewHeading"><a href="https://newworldtreasure.com/index.php?main_page=products_new">What's New&nbsp;&nbsp;[more]</a></h3>
    <div class="sideBoxContent centeredContent">
      <div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&amp;cPath=1_11_14&amp;products_id=14"><img src="images/turquoise.JPG" alt="Fashion Jewelry - Turquoise/Brown/Scorpion" title=" Fashion Jewelry - Turquoise/Brown/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Turquoise/Brown/Scorpion</a><div>$6.00</div></div>
      <div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&amp;cPath=1_11_14&amp;products_id=15"><img src="images/amber.JPG" alt="Fashion Jewelry - Amber/Scorpion" title=" Fashion Jewelry - Amber/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Amber/Scorpion</a><div>$6.00</div></div>
      <div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&amp;cPath=1_11_14&amp;products_id=16"><img src="images/burntorange.JPG" alt="Fashion Jewelry - Burnt Orange/Brown/Scorpion" title=" Fashion Jewelry - Burnt Orange/Brown/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Burnt Orange/Brown/Scorpion</a><div>$6.00</div></div></div>
    </div>
    <!--// eof: whatsnew //-->
    
    <!--// bof: reviews //-->
    <div class="leftBoxContainer" id="reviews" style="width: 180px">
    <h3 class="leftBoxHeading" id="reviewsHeading"><a href="https://newworldtreasure.com/index.php?main_page=reviews">Reviews&nbsp;&nbsp;[more]</a></h3>
    <div id="reviewsContent" class="sideBoxContent centeredContent">There are currently no product reviews.</div></div>
    <!--// eof: reviews //-->
    
    <!--// bof: information //-->
    <div class="leftBoxContainer" id="information" style="width: 180px">
    <h3 class="leftBoxHeading" id="informationHeading">Information</h3>
    <div id="informationContent" class="sideBoxContent">
    <ul style="margin: 0; padding: 0; list-style-type: none;">
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=about_us">About Us</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=shippinginfo">Shipping &amp; Returns</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=privacy">Privacy Notice</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=conditions">Conditions of Use</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=contact_us">Contact Us</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=site_map">Site Map</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=gv_faq">Gift Certificate FAQ</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=discount_coupon">Discount Coupons</a></div></li>
    <li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=unsubscribe">Newsletter Unsubscribe</a></div></li>
    </ul>
    </div></div>
    <!--// eof: information //-->
    
    
    </div></td>
        <td valign="top">
    <!-- bof  breadcrumb -->
        <div id="navBreadCrumb">Home
    </div>
    <!-- eof breadcrumb -->
    
    
    <!-- bof upload alerts -->
    <!-- eof upload alerts -->
    
    <div class="centerColumn" id="indexDefault">
    <h1 id="indexDefaultHeading"></h1>
    
    <h2 class="greeting">Welcome <span class="greetUser">Guest!</span> Would you like to <a href="https://newworldtreasure.com/index.php?main_page=login">log yourself in</a>?</h2>
    
    <!-- deprecated - to use uncomment this section
    <div id="" class="content">This is the main define statement for the page for english when no template defined file exists. It is located in: <strong>/includes/languages/english/index.php</strong></div>
    -->
    
    <!-- deprecated - to use uncomment this section
    <div id="" class="content">Define your main Index page copy here.</div>
    -->
    
    <div id="indexDefaultMainContent" class="content">	
    
    	<script type="text/javascript">
    		$(document).ready(function(){	
    		    
    			$("#slider").easySlider({
    				auto: true, 
    				continuous: true,
    				numeric: true
    			});
    			
    		});	
    	</script>
      
    
    	
    		<div id="slider">
    			<ul>				
    				<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide1.jpg"   alt="first slide image" /></a></li>
    				<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide2.jpg"   alt="second slide image" /></a></li>
    				<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide3.jpg"   alt="third slide image" /></a></li> 
    				<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide4.jpg"   alt="fourth slide image" /></a></li>
    				<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide5.jpg"   alt="fifth slide image" /></a></li>			
    			</ul>
    		</div>
    			
    <div id="home-text">
    <!-- <p>
    <a href="http://www.youtube.com/user/ZenCartEasyHelp" target="_blank"><img src="http://www.picaflor-azul.com/pica/images/subscribe-sm.png" class="subscribe-sm" alt="subscribe to Zen Cart Easy Help Youtube Channel" /></a>
    </p> -->
    <!-- <p>
    Read the ashley_pink_readme.html for full, step by step detailed installation instructions with links to videos for each step.
    </p> -->
    <!-- <p>
    Once your site is ready to go live, please feel free to promote your site by uploading a screen shot of your store to our facebook fan gallery (you can do this via the wall).  Be sure to include your store url and what you sell in the comments so that our huge fan base can find you.
    </p> -->
    <!-- <p>
    <a href="http://www.facebook.com/Custom.Zen.Cart.Design" target="blank"><img src="http://www.picaflor-azul.com/pica/images/promote.png" class="promote" alt="Promote your site on our Facebook Page" /></a>
    </p> -->
    <!-- <p>
    This content is located in the file at: /languages/english/html_includes/ashley_pink/define_main_page.php
    </p> -->
    <!-- <p>
    You can quickly edit this content via Admin->Tools->Define Pages Editor, and select define_main_page from the pulldown.
    </p> -->
    </div>		
    </div>
    Last edited by pityocamptes; 19 Apr 2012 at 07:09 AM.

 

 
Page 8 of 12 FirstFirst ... 678910 ... LastLast

Similar Threads

  1. Replies: 8
    Last Post: 26 Feb 2016, 12:41 AM
  2. css/js loader !!
    By Miff in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 28 Nov 2011, 01:19 PM
  3. CJ Loader (CSS/Javascript Loader) plugin function is not loaded by zen cart?
    By tripflex in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 11 Jul 2011, 03:55 PM
  4. Yellow1912's css javascript loader breaks Ajax EasySlider
    By dutchy in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 27 Oct 2010, 11:23 AM
  5. [support thread] Javascript loader
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 7 Nov 2009, 12:11 AM

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