Page 45 of 48 FirstFirst ... 354344454647 ... LastLast
Results 441 to 450 of 477
  1. #441
    Join Date
    Apr 2005
    Location
    TN
    Posts
    94
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    I am having a very strange issue.
    I will try to explain but please forgive my ty peing as I have ALS and my typing is not the best :)

    here is a link to a cutomer's product

    http://www.rsessentials.com/personal...l#.UdDspjsm6b4

    please note UNDER the main image and BEFORE the Additional Images you will see a link to:

    - New Products -

    No idea where this came from.

    Does anyone have any idea how to get rid of it?

    I have used developer tool kit, Fire fox Developers thing-n-a-bob (no help)
    I have looked at tpl_product_info_display.php - language files... Pretty much everything that I could think of.

    Thanks for any help
    Dan (aka Bubba)
    Last edited by bubbadan; 1 Jul 2013 at 03:55 AM.
    Using version v1.5.7b

  2. #442
    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 bubbadan View Post
    I am having a very strange issue.
    I will try to explain but please forgive my ty peing as I have ALS and my typing is not the best :)

    here is a link to a cutomer's product

    http://www.rsessentials.com/personal...l#.UdDspjsm6b4

    please note UNDER the main image and BEFORE the Additional Images you will see a link to:

    - New Products -

    No idea where this came from.

    Does anyone have any idea how to get rid of it?

    I have used developer tool kit, Fire fox Developers thing-n-a-bob (no help)
    I have looked at tpl_product_info_display.php - language files... Pretty much everything that I could think of.

    Thanks for any help
    Dan (aka Bubba)
    This is not a problem with the template. It looks like this cart has been heavily modified. I would look to the modules you have added to find the culprit. I would also check your tpl_product_info_display.php file.

    Thanks,

    Anne

  3. #443
    Join Date
    Apr 2005
    Location
    TN
    Posts
    94
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    I did... guess I will hunt around in this mess of a forum to find out where to post this.
    Using version v1.5.7b

  4. #444
    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 bubbadan View Post
    I did... guess I will hunt around in this mess of a forum to find out where to post this.
    It's just a bandaid until you can remove the link, but you could hide the text by adding this to your stylesheet:

    #productAdditionalImages a{color:#fff;}

    Thanks,

    Anne

  5. #445
    Join Date
    Jun 2013
    Location
    UK
    Posts
    6
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Hello,

    Has anyone experienced this that when you change the text on the home page through the define pages editor, the slide images stop displaying? My under-construction site is www.c o r k p e o p l e.co.uk and since the problem first appeared, I have made sure I edit using plain text editor only. Yet even then, the images disappear. If I reinstate the original define_main_page.php, the images duly reappear in the slides.

  6. #446
    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 oliverm View Post
    Hello,

    Has anyone experienced this that when you change the text on the home page through the define pages editor, the slide images stop displaying? My under-construction site is www.c o r k p e o p l e.co.uk and since the problem first appeared, I have made sure I edit using plain text editor only. Yet even then, the images disappear. If I reinstate the original define_main_page.php, the images duly reappear in the slides.
    If you read the readme.html file included in the template package, you will see that you need to use the plain text editor when you edit the define_main_page.php file as it contains php code.

    Thanks,

    Anne

  7. #447
    Join Date
    Jun 2013
    Location
    UK
    Posts
    6
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Hello Anne,
    Yes, that's what I did. That's why I said above "I have made sure I edit using plain text editor only."

    <!--?php


    define(IMAGE1,'slide1.jpg');// default width 550px height 250px /
    define(IMAGE2,'slide2.jpg');
    define(IMAGE3,'slide3.jpg');
    define(IMAGE4,'slide4.jpg');
    define(IMAGE5,'slide5.jpg');

    define(URL1,'http://www.picaflor-azul.com');
    define(URL2,'http://www.picaflor-azul.com');
    define(URL3,'http://www.picaflor-azul.com');
    define(URL4,'http://www.picaflor-azul.com');
    define(URL5,'http://www.picaflor-azul.com');



    ?-->


    <script type="text/javascript">
    $(document).ready(function(){

    $("#slider").easySlider({
    auto: true,
    continuous: true,
    numeric: true
    });

    });
    </script>



    <div id="slider">
    <ul>
    <li><a href="<?php echo URL1 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image"></a></li>
    <li><a href="<?php echo URL2 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image"></a></li>
    <li><a href="<?php echo URL3 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image"></a></li>
    <li><a href="<?php echo URL4 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image"></a></li>
    <li><a href="<?php echo URL5 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image"></a></li>
    </ul>
    </div>

    <div id="home-text" align="center"><h3><u>
    Welcome to The Cork People</u></h3><h4>Home of Stylish, Sustainable Cork Products</h4><h4>Handbags</h4><h4>Accessories</h4><h4>Jewellery</h4><h4>For Him</h4></div>

  8. #448
    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 oliverm View Post
    Hello Anne,
    Yes, that's what I did. That's why I said above "I have made sure I edit using plain text editor only."

    <!--?php


    define(IMAGE1,'slide1.jpg');// default width 550px height 250px /
    define(IMAGE2,'slide2.jpg');
    define(IMAGE3,'slide3.jpg');
    define(IMAGE4,'slide4.jpg');
    define(IMAGE5,'slide5.jpg');

    define(URL1,'http://www.picaflor-azul.com');
    define(URL2,'http://www.picaflor-azul.com');
    define(URL3,'http://www.picaflor-azul.com');
    define(URL4,'http://www.picaflor-azul.com');
    define(URL5,'http://www.picaflor-azul.com');



    ?-->


    <script type="text/javascript">
    $(document).ready(function(){

    $("#slider").easySlider({
    auto: true,
    continuous: true,
    numeric: true
    });

    });
    </script>



    <div id="slider">
    <ul>
    <li><a href="<?php echo URL1 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image"></a></li>
    <li><a href="<?php echo URL2 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image"></a></li>
    <li><a href="<?php echo URL3 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image"></a></li>
    <li><a href="<?php echo URL4 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image"></a></li>
    <li><a href="<?php echo URL5 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image"></a></li>
    </ul>
    </div>

    <div id="home-text" align="center"><h3><u>
    Welcome to The Cork People</u></h3><h4>Home of Stylish, Sustainable Cork Products</h4><h4>Handbags</h4><h4>Accessories</h4><h4>Jewellery</h4><h4>For Him</h4></div>

    The php code at the top of the file does not look the same as the file included in the template package. You need to use a plain text editor like notepad++

    Thanks,

    Anne

  9. #449
    Join Date
    Jan 2012
    Posts
    18
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Hi

    i have uploaded this template doing exactly as you said and its not showing in the template selection place and all the files are in the correct place i have checked all that have you any ideas thanks mags

  10. #450
    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 knitcrazy View Post
    Hi

    i have uploaded this template doing exactly as you said and its not showing in the template selection place and all the files are in the correct place i have checked all that have you any ideas thanks mags
    It sounds like you have not uploaded the template files to the correct place on your server. The entire includes directory of the template needs to go in the root of your zen cart.

    Thanks,

    Anne

 

 
Page 45 of 48 FirstFirst ... 354344454647 ... 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