Page 11 of 17 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 168
  1. #101
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Glasgow Neat Template Support Thread

    Quote Originally Posted by landpepeland View Post
    Hi Anne,
    This is quite a good template and all the info that goes along with it it´s very helpfull.
    However I am stuck with one problema. I can edit the width of the dropdown menu size (submenú), however I cannot add more space for all the characters of categories to be displayed on the same row. It still goes to two different rows. I don´t know what do I have to edit.
    Could you help me?
    The webpage is www.nativitysceneshop.com/
    Thanks
    I am happy that you like the template and have found the readme.html file ;)

    I am a bit unclear about what you are trying to accomplish. I looked at the site and did not see any category names on 2 lines?


    Thanks,

    Anne

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

    Default Re: Glasgow Neat Template Support Thread

    Thanks for your answer.
    For example if you go to shop/Corcho/Corck river with water it is shown like
    corck river
    with water (in two lines)
    and I would like to know how to fix it so I can see it all into the same line like this
    corck river with water.

    What do I have to modify to be able to see the subcategory in one line?

    Awaiting for your prompt response,
    Arnau

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

    Default Re: Glasgow Neat Template Support Thread

    Quote Originally Posted by landpepeland View Post
    Thanks for your answer.
    For example if you go to shop/Corcho/Corck river with water it is shown like
    corck river
    with water (in two lines)
    and I would like to know how to fix it so I can see it all into the same line like this
    corck river with water.

    What do I have to modify to be able to see the subcategory in one line?

    Awaiting for your prompt response,
    Arnau
    Change the width on .mega-menu .levels a in the stylesheet_mega_menu.css

    Thanks,

    Anne

  4. #104
    Join Date
    May 2011
    Posts
    5
    Plugin Contributions
    0

    Default Re: Glasgow Neat Template Support Thread

    Thanks for the info. I have been able to make the changes.

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

    Default Re: Glasgow Neat Template Support Thread

    Quote Originally Posted by landpepeland View Post
    Thanks for the info. I have been able to make the changes.
    I am happy that you figured it out ;)

    Thanks,

    Anne

  6. #106
    Join Date
    Aug 2012
    Location
    North Carolina
    Posts
    28
    Plugin Contributions
    0

    Default Re: Glasgow Neat Template Support Thread

    Hi, Anne. Thank you for your work. glasgow_neat is great template and I'm using it on my live store now!

    I have something that might help other people.

    In the homeslider( Main flash image slider), you can show your new arrival items on the flash slider if you change some code.


    in /includes/templates/glasgow_neat/common/tpl_home_slider.php

    change line 15

    PHP Code:
    <li data-images="rm_container_1" data-rotation="-15"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE$current_page_base,'images').'/'.IMAGE1 ?>" onclick="myFunction('<?php echo URL1 ?>')" alt="" /></li>
    to

    PHP Code:
        <li data-images="rm_container_1" data-rotation="-15">
       
                   
          <?php $sql "  SELECT p.products_image, p.products_id, p.products_ordered, p.products_status, p.products_model, p.master_categories_id, p.products_date_added

                    FROM   " 
    TABLE_PRODUCTS " as p

                    WHERE p.products_status = '1' 
        
                    AND p.products_quantity > 0
                    
                    AND p.products_date_added BETWEEN DATE_SUB(NOW(), INTERVAL 30 DAY) AND NOW()
                    
                    ORDER BY RAND()
                    
                    LIMIT 1;
                    
                    "
    ;
                    
                
    $NewImageResult1 $db->Execute($sql);
                      
    $subject1 $NewImageResult1->fields['products_image'] ;
                      
    $search1 ".jpg" ;
                      
    $trimmed1 str_replace($search1"_500.jpg"$subject1);
                    
    ?>
                  
                  
                  
        <img src="http://pnytrading.net/images/large/<?php echo $trimmed1?>" width="260px" onclick="myFunction('<?php echo zen_href_link(zen_get_info_page($NewImageResult1->fields['products_id']) . '&cPath=' zen_get_product_path($NewImageResult1->fields['products_id']) , 'products_id=' . ($NewImageResult1->fields['products_id'])) ?>')" alt="" />
       
       </li>
    then this will allow you to take the pictures of new arrived items from "images/large" randomly. And every visit it will show another new arrived products on the flash to every customer. Also, if the customer click the products, it will bring the customer to the product info page.

    its Easy trick.

    my website is : http://pnytrading.net/ if you wanna see what difference can be made with this .

    If you have other recommendation for this... please let me know .

    Anyway Thanks Anne for your Great job!!
    Last edited by ahhs9162; 12 Jul 2013 at 06:52 PM.

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

    Default Re: Glasgow Neat Template Support Thread

    Quote Originally Posted by ahhs9162 View Post
    Hi, Anne. Thank you for your work. glasgow_neat is great template and I'm using it on my live store now!

    I have something that might help other people.

    In the homeslider( Main flash image slider), you can show your new arrival items on the flash slider if you change some code.


    in /includes/templates/glasgow_neat/common/tpl_home_slider.php

    change line 15

    PHP Code:
    <li data-images="rm_container_1" data-rotation="-15"><img src="<?php  echo $template->get_template_dir('',DIR_WS_TEMPLATE$current_page_base,'images').'/'.IMAGE1 ?>" onclick="myFunction('<?php echo URL1 ?>')" alt="" /></li>
    to

    PHP Code:
        <li data-images="rm_container_1" data-rotation="-15">
       
                   
          <?php $sql "  SELECT p.products_image, p.products_id, p.products_ordered, p.products_status, p.products_model, p.master_categories_id, p.products_date_added

                    FROM   " 
    TABLE_PRODUCTS " as p

                    WHERE p.products_status = '1' 
        
                    AND p.products_quantity > 0
                    
                    AND p.products_date_added BETWEEN DATE_SUB(NOW(), INTERVAL 30 DAY) AND NOW()
                    
                    ORDER BY RAND()
                    
                    LIMIT 1;
                    
                    "
    ;
                    
                
    $NewImageResult1 $db->Execute($sql);
                      
    $subject1 $NewImageResult1->fields['products_image'] ;
                      
    $search1 ".jpg" ;
                      
    $trimmed1 str_replace($search1"_500.jpg"$subject1);
                    
    ?>
                  
                  
                  
        <img src="http://pnytrading.net/images/large/<?php echo $trimmed1?>" width="260px" onclick="myFunction('<?php echo zen_href_link(zen_get_info_page($NewImageResult1->fields['products_id']) . '&cPath=' zen_get_product_path($NewImageResult1->fields['products_id']) , 'products_id=' . ($NewImageResult1->fields['products_id'])) ?>')" alt="" />
       
       </li>
    then this will allow you to take the pictures of new arrived items from "images/large" randomly. And every visit it will show another new arrived products on the flash to every customer. Also, if the customer click the products, it will bring the customer to the product info page.

    its Easy trick.

    my website is : http://pnytrading.net/ if you wanna see what difference can be made with this .

    If you have other recommendation for this... please let me know .

    Anyway Thanks Anne for your Great job!!

    I am happy that you are using the template for your live site ;) Thank you so much for posting your code so that the whole community can benefit.

    Thanks,

    Anne

  8. #108
    Join Date
    Feb 2013
    Posts
    51
    Plugin Contributions
    0

    Default Re: Glasgow Neat Template Support Thread

    Hi there,
    Don't know why the product image can not Show again?
    Here's the link
    www.carousel301.com
    Appreciate anyone can help thanks!

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

    Default Re: Glasgow Neat Template Support Thread

    Quote Originally Posted by carousel1 View Post
    Hi there,
    Don't know why the product image can not Show again?
    Here's the link
    www.carousel301.com
    Appreciate anyone can help thanks!
    When I try to view one of the images it gives an error saying:

    The image "http://www.carousel301.com/images/3.jpg" cannot be displayed because it contains errors.

    I would recommend doing google research to find out the cause.

    Thanks,

    Anne

  10. #110
    Join Date
    Jul 2012
    Posts
    10
    Plugin Contributions
    0

    Default Re: Glasgow Neat Template Support Thread

    What directory is the

    rotating_image_slider.php file

    i am trying to remove "our newest arrivals"

    thanks


    art

 

 
Page 11 of 17 FirstFirst ... 910111213 ... LastLast

Similar Threads

  1. BecaBerry Template [Support Thread]
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 14 Jun 2015, 09:35 AM
  2. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  3. v139d remove blog from glasgow neat?
    By WEBDUDE in forum General Questions
    Replies: 3
    Last Post: 18 May 2013, 02:21 PM
  4. Watermelon Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 22
    Last Post: 14 Oct 2011, 04:03 AM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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