Page 2 of 21 FirstFirst 123412 ... LastLast
Results 11 to 20 of 208
  1. #11
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by marketingspartan View Post
    I installed it and it is gorgeous. But, it isn't responsive for me. It just scales the full screen to tiny on a mobile device, not responsive. I've gone back through the installation instructions and combed the settings thinking maybe I did something wrong, but cannot figure it out.
    This template package is indeed responsive. I have no idea what you have done wrong during the installation process.

    Thanks,

    Anne

  2. #12
    Join Date
    Nov 2011
    Posts
    9
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Zen Cart 1.50
    http://www.lightevolution.co.uk
    Just spent the weekend updating to this awesome template.

    I am very impressed with this template, I have just one issue that I have not been able to figure out namely on

    On iPhones/Android Phones

    Categories are fine but the following
    Specials
    Upcoming products
    Featured Products

    all have the following issue product images are too large and the price and the details CSS button are partly covered by product images.

    I realise I could change all my product images to a smaller size images but I am not sure what size they should actually be to work as designed.

    Could this be resolved by placing the button and pricing in front of the image or is there a way to change the images automatically to the right size.

    The images are fine in the normal product view.

    Thanks

    David

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by brave1314 View Post
    Zen Cart 1.50
    http://www.lightevolution.co.uk
    Just spent the weekend updating to this awesome template.

    I am very impressed with this template, I have just one issue that I have not been able to figure out namely on

    On iPhones/Android Phones

    Categories are fine but the following
    Specials
    Upcoming products
    Featured Products

    all have the following issue product images are too large and the price and the details CSS button are partly covered by product images.

    I realise I could change all my product images to a smaller size images but I am not sure what size they should actually be to work as designed.

    Could this be resolved by placing the button and pricing in front of the image or is there a way to change the images automatically to the right size.

    The images are fine in the normal product view.

    Thanks

    David
    If you want to make changes that will effect only certain devices, edit the appropriate media queries in the responsive.css file.

    Thanks,

    Anne

  4. #14
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Love this template! :) I need to display the categories on the index page. When I activate that setting, the new/featured/special tab section disappears. Do you know of any way to have both options?

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by abcisme View Post
    Love this template! :) I need to display the categories on the index page. When I activate that setting, the new/featured/special tab section disappears. Do you know of any way to have both options?
    You will need to merge the code for the tabbed home page modules into the includes/templates/responsive_avonlee_contempo/templates/tpl_index_categories.php file.

    Thanks,

    Anne

  6. #16
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Got it! Thanks!

    Code:
    <?php
    
    /**
    
     * Page Template
    
     *
    
     * Loaded by main_page=index<br />
    
     * Displays category/sub-category listing<br />
    
     * Uses tpl_index_category_row.php to render individual items
    
     *
    
     * @package templateSystem
    
     * @copyright Copyright 2003-2006 Zen Cart Development Team
    
     * @copyright Portions Copyright 2003 osCommerce
    
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    
     * @version $Id: tpl_index_categories.php 4678 2006-10-05 21:02:50Z ajeh $
    
     */
    
    ?>
    
    <script type="text/javascript">
      $(document).ready(function() {
        $('a.moduleBox').click(function() { // show selected module(s)
        // variables
          var popID = $(this).attr('rel');
          var popNAV = $(this).attr('class');
        // hide all wrappers and display the one selected
          $('.centerBoxWrapper').hide();
          // check if all or single selection
          if (popID != 'viewAll') {
            $('#' + popID).fadeIn();
          } else {
           $('.centerBoxWrapper').fadeIn();
          }
        });
      });
    </script>
    
    
    <div class="centerColumn" id="indexCategories">
    
    <?php if ($show_welcome == true) { ?>
    
    <h1 id="indexCategoriesHeading"><?php echo HEADING_TITLE; ?></h1>
    
    
    
    <?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
    
    <h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
    
    <?php } ?>
    
    
    
    <!-- deprecated - to use - uncomment
    
    <?php if (TEXT_MAIN) { ?>
    
    <div id="" class="content"><?php echo TEXT_MAIN; ?></div>
    
    <?php } ?>-->
    
    
    
    <!-- deprecated - to use - uncomment
    
    <?php if (TEXT_INFORMATION) { ?>
    
    <div id="" class="content"><?php echo TEXT_INFORMATION; ?></div>
    
    <?php } ?>-->
    
    
    
    <?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    
    <div id="indexCategoriesMainContent" class="content"><?php
    
    /**
    
     * require the html_define for the index/categories page
    
     */
    
      include($define_page);
    
    ?></div>
    
    <?php } ?>
    
    
    <?php } else { ?>
    
    <h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1>
    
    <?php } ?>
    
    
    
    <?php
    
    if (PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP == 'true') {
    
    // categories_image
    
      if ($categories_image = zen_get_categories_image($current_category_id)) {
    
    ?>
    
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>
    
    <?php
    
      }
    
    } // categories_image
    
    ?>
    
    
    
    <?php
    
    // categories_description
    
        if ($current_categories_description != '') {
    
    ?>
    
    <div id="categoryDescription" class="catDescContent"><?php echo $current_categories_description;  ?></div>
    
    <?php } // categories_description ?>
    
    <!-- BOF: Display grid of available sub-categories, if any -->
    
    <?php
    
      if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
    
        // do nothing
    
      } else {
    
        // display subcategories
    
    /**
    
     * require the code to display the sub-categories-grid, if any exist
    
     */
    
       require($template->get_template_dir('tpl_modules_category_row.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_category_row.php');
    
      }
    
    ?>
    
    <!-- EOF: Display grid of available sub-categories -->
    
    <div id="moduleMenu-wrapper">
    
    <?php
    // bof module navigation
    $show_display_nav = $db->Execute(SQL_SHOW_PRODUCT_INFO_MAIN);
    if ($this_is_home_page) {
      echo '';
    }
    echo '<div id="moduleMenu">';
    while (!$show_display_nav->EOF) {
      switch ($show_display_nav->fields['configuration_key']) {
        case 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS':
          echo '<span class="navOne moduleSpan"><a href="javascript:void(0)" rel="featuredProducts" class="navOne moduleBox">' . MODULE_TABS_FEATURED . '</a></span>';
        break;
        case 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
          echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox">' . MODULE_TABS_SPECIALS . '</a></span>';
        break;
        case 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS':
          echo '<span class="navTwo moduleSpan"><a href="javascript:void(0)" rel="whatsNew" class="navTwo moduleBox">' . MODULE_TABS_NEW . '</a></span>';
        break;
      }
      $show_display_nav->MoveNext();
    }
    //echo '<span class="navFour moduleSpan"><a href="javascript:void(0)" rel="viewAll" class="navFour moduleBox">' . MODULE_TABS_ALL . '</a></span>';
    echo '<br class="clearBoth" />';
    echo '</div>';
    // eof module navigation
    ?>
    
    <?php
    
    $show_display_category = $db->Execute(SQL_SHOW_PRODUCT_INFO_CATEGORY);
    
    
    
    while (!$show_display_category->EOF) {
    
      // //  echo 'I found ' . zen_get_module_directory(FILENAME_UPCOMING_PRODUCTS);
    
    
    
    ?>
    
    
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS') { ?>
    
    <?php
    
    /**
    
     * display the Featured Products Center Box
    
     */
    
    ?>
    
    <?php require($template->get_template_dir('tpl_modules_featured_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_featured_products.php'); ?>
    
    <?php } ?>
    
    
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS') { ?>
    
    <?php
    
    /**
    
     * display the Special Products Center Box
    
     */
    
    ?>
    
    <?php require($template->get_template_dir('tpl_modules_specials_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_specials_default.php'); ?>
    
    <?php } ?>
    
    
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS') { ?>
    
    <?php
    
    /**
    
     * display the New Products Center Box
    
     */
    
    ?>
    
    <?php require($template->get_template_dir('tpl_modules_whats_new.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_whats_new.php'); ?>
    
    <?php } ?>
    
    
    
    <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_CATEGORY_UPCOMING') { ?>
    
    <?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_UPCOMING_PRODUCTS)); ?><?php } ?>
    
    <?php
    
      $show_display_category->MoveNext();
    
    } // !EOF
    
    ?>
    </div>
    </div>
    Last edited by abcisme; 3 Jan 2014 at 11:16 PM.

  7. #17
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    Grr. Ok, I am close. I have the tabs showing up, but the products are not showing up on the tabs.

    Figured it out. Had to adjust settings.

    Show New Products on Main Page - Category with SubCategories 1
    Show Featured Products on Main Page - Category with SubCategories 1
    Show Special Products on Main Page - Category with SubCategories 1
    Show Upcoming Products on Main Page - Category with SubCategories 1
    Last edited by abcisme; 3 Jan 2014 at 11:20 PM.

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by abcisme View Post
    Grr. Ok, I am close. I have the tabs showing up, but the products are not showing up on the tabs.

    Figured it out. Had to adjust settings.

    Show New Products on Main Page - Category with SubCategories 1
    Show Featured Products on Main Page - Category with SubCategories 1
    Show Special Products on Main Page - Category with SubCategories 1
    Show Upcoming Products on Main Page - Category with SubCategories 1
    Thank you so much for posting your solution. I will include your code in a future template update and the instructions in the readme.html file ;)

    Thanks,

    Anne

  9. #19
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Responsive Avonlee Contempo

    One more quick question - when there are no new/featured/special products, there's no notice that says there are no products and no empty box. It's just blank under the tab. Is this supposed to be this way? Should there be a notice that says "There are no new products at this time."? I'm concerned people might think the tab is not working properly if there is nothing at all showing there.

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

    Default Re: Responsive Avonlee Contempo

    Quote Originally Posted by abcisme View Post
    One more quick question - when there are no new/featured/special products, there's no notice that says there are no products and no empty box. It's just blank under the tab. Is this supposed to be this way? Should there be a notice that says "There are no new products at this time."? I'm concerned people might think the tab is not working properly if there is nothing at all showing there.
    Yes, that is the correct behaviour. You can certainly add the message if you like or just turn off the tabs you are not using in admin--configuration--index listing.

    Thanks,

    Anne

 

 
Page 2 of 21 FirstFirst 123412 ... LastLast

Similar Threads

  1. Avonlee Contempo Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 542
    Last Post: 1 Feb 2018, 05:55 PM
  2. Avonlee Contempo - Center column width
    By Forum5 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 7 Feb 2014, 03:54 AM
  3. v152 Slide Show - Avonlee Contempo
    By Forum5 in forum Addon Templates
    Replies: 2
    Last Post: 3 Feb 2014, 06:11 PM
  4. V1.51 Responsive Avonlee left column margin
    By satello in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 22 Jan 2014, 04:51 PM
  5. Avonlee Contempo template
    By nothingnuaghty in forum Addon Templates
    Replies: 2
    Last Post: 15 Dec 2010, 08:05 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