Results 1 to 10 of 477

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by brokenbird View Post
    Hi Anne,

    I actually had already done a search before posting. I found the code to use:

    if ($this_is_home_page) {
    $flag_disable_left = true;
    $flag_disable_right = true;
    }

    and they say to put it into:

    /includes/templates/your_template/common/tpl_main_page.php

    but this file does not exist in your template (or at least in a place I can't seem to find) so I was worried it could not be done with your template. Glad it should be no problem but could you point me to the specific file where I have to put in the code and I can take it from there?

    I had no problems getting the images to adjust. I also went over the read me file before posting and figured it out no problem.

    Thanks for your help.

    Will
    The file doesn't exist in the template package because I made no changes for it. If you need to edit this file you need to create an override for it.

    thanks,

    Anne

  2. #2
    Join Date
    Aug 2011
    Location
    Vancouver, Canada
    Posts
    11
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    The file doesn't exist in the template package because I made no changes for it. If you need to edit this file you need to create an override for it.

    thanks,

    Anne

    Hey that did the trick perfectly thanks! Like I said, I'm still pretty green to PHP. Didn't know all I had to do was copy the file.


    Thanks again! And ignore that Linux guy... Dunno what his problem is but he comes off like a tool anyway so no one will take him seriously.

  3. #3
    Join Date
    Aug 2011
    Location
    Vancouver, Canada
    Posts
    11
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    Hey,

    Sorry, I've got one more question that maybe you can help me with.

    Here is my site in progress: http://brokenbird.ca/cart/

    I'm trying to add a dropdown css menu where the red header info is: ie, the links to home/contact us/log in etc. So that it looks something like the one I designed here:

    www.brokenbird.ca

    I plan to leave the log in / shopping cart info but want to add my menu to it.

    I have already added the appropriate .js files and edited the stylesheet.css document with the right code but for some reason I can't find where this header menu information is located so I can't experiment with placing my own menu. Could you point me to the appropriate file so I can play with it a bit?

    I know this sounds like a bit of a lazy question but I really have been looking around for nearly an hour trying to find the right one.

    Thanks,

    Will

  4. #4
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by brokenbird View Post
    Hey,

    Sorry, I've got one more question that maybe you can help me with.

    Here is my site in progress: http://brokenbird.ca/cart/

    I'm trying to add a dropdown css menu where the red header info is: ie, the links to home/contact us/log in etc. So that it looks something like the one I designed here:

    www.brokenbird.ca

    I plan to leave the log in / shopping cart info but want to add my menu to it.

    I have already added the appropriate .js files and edited the stylesheet.css document with the right code but for some reason I can't find where this header menu information is located so I can't experiment with placing my own menu. Could you point me to the appropriate file so I can play with it a bit?

    I know this sounds like a bit of a lazy question but I really have been looking around for nearly an hour trying to find the right one.

    Thanks,

    Will
    I would strongly recommend not trying to code this yourself, but starting from one of the great css drop down menus already in the free software downloads section. Then you can add your links into it. Be sure to check for files that need to be merged (off the top of my head you will have to merge the tpl_header.php and maybe another).

    If you want to code from scratch you can edit the includes/templates/aberdeen_neutral/common/tpl_header.php file.

    Thanks,

    Anne

  5. #5
    Join Date
    May 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: Aberdeen Neutral Template Support Thread

    I have tried to use the easy slideshow.
    I have a problem with the slideshow.
    I want it to show only on the index-home page only
    Currently, my slideshow appear on all of my categories+subcategories. Please give me some advice how to fix this
    I have tried hard to change the codes in tpl_main_page
    but unsucessful
    ----------------------------

    if ($this_is_home_page) {
    $flag_disable_slider = false;
    } else {
    $flag_disable_slider = true;
    }
    //bof

  6. #6
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by louisstore View Post
    I have tried to use the easy slideshow.
    I have a problem with the slideshow.
    I want it to show only on the index-home page only
    Currently, my slideshow appear on all of my categories+subcategories. Please give me some advice how to fix this
    I have tried hard to change the codes in tpl_main_page
    but unsucessful
    ----------------------------

    if ($this_is_home_page) {
    $flag_disable_slider = false;
    } else {
    $flag_disable_slider = true;
    }
    //bof
    If you post a link to your site I can take a look.

    Thanks,

    Anne

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

    Default Re: Aberdeen Neutral Template Support Thread

    I am having this same problem - could someone answer the issue here for others that have this problem? :)

    Thanks


    Quote Originally Posted by louisstore View Post
    I have tried to use the easy slideshow.
    I have a problem with the slideshow.
    I want it to show only on the index-home page only
    Currently, my slideshow appear on all of my categories+subcategories. Please give me some advice how to fix this
    I have tried hard to change the codes in tpl_main_page
    but unsucessful
    ----------------------------

    if ($this_is_home_page) {
    $flag_disable_slider = false;
    } else {
    $flag_disable_slider = true;
    }
    //bof

  8. #8
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by bubbadan View Post
    I am having this same problem - could someone answer the issue here for others that have this problem? :)

    Thanks
    You shouldn't have to add any extra code to get the slider to behave correctly. It works out of the box. If you are having problems I would recommend re-installing the template package or looking to a modification that you made.

    Thanks,

    Anne

  9. #9
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Aberdeen Neutral Template Support Thread

    Quote Originally Posted by brokenbird View Post
    Hey that did the trick perfectly thanks! Like I said, I'm still pretty green to PHP. Didn't know all I had to do was copy the file.


    Thanks again! And ignore that Linux guy... Dunno what his problem is but he comes off like a tool anyway so no one will take him seriously.
    I am so happy that it worked

    Thanks,

    Anne

 

 

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

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