Page 5 of 5 FirstFirst ... 345
Results 41 to 47 of 47
  1. #41
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    165
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Hi,

    What is the slider you refer to? I think Hope template doesn't come with slider, but if you can give your URL maybe I can help you out

    Thanks
    Responsive ZenCart Templates that automatically adapt itself with iPad, iPhone, BlackBerry, Androids and any monitor screen size
    Buy a coffee for Zen-Cart devs. http://www.zen-cart.com/donate

  2. #42
    Join Date
    Jun 2012
    Posts
    92
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    I do love your template. I do have two questions. Are we able to get a search box in the black horizontal nav box? And I LOVE the shadow around each product, but the problem I am having is that the product description button just goes to buy now and immediately adds part to shopping cart. Can I get this layout in the horizontal list with shadow box around each item instead of columns?

  3. #43
    Join Date
    Jun 2012
    Posts
    92
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Quote Originally Posted by WWRepair View Post
    I do love your template. I do have two questions. Are we able to get a search box in the black horizontal nav box? And I LOVE the shadow around each product, but the problem I am having is that the product description button just goes to buy now and immediately adds part to shopping cart. Can I get this layout in the horizontal list with shadow box around each item instead of columns?
    Okay, I found a solution for THE PRODUCTS DETAILS GOES TO BUY IT NOW and fixed this myself but I had to modify the file located here includes>modules>templates333>product_listing.php. Find this the red code around line 189
    Code:
    // qty box with add to cart button
                if (PRODUCT_LIST_PRICE_BUY_NOW == '2' && $listing->fields['products_qty_box_status'] != 0) {
                  $lc_button= zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($listing->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&products_id=' . $listing->fields['products_id']), 'post', 'enctype="multipart/form-data"') . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($listing->fields['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_draw_hidden_field('products_id', $listing->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</form>
    			  <br />
                  <a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_GOTO_PROD_DETAILS, BUTTON_GOTO_PROD_DETAILS_ALT) . '</a>';
    and change to this:

    Code:
    // qty box with add to cart button
                if (PRODUCT_LIST_PRICE_BUY_NOW == '2' && $listing->fields['products_qty_box_status'] != 0) {
                  $lc_button= zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($listing->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&products_id=' . $listing->fields['products_id']), 'post', 'enctype="multipart/form-data"') . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($listing->fields['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_draw_hidden_field('products_id', $listing->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</form>
                  <br />    
    			  <a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_GOTO_PROD_DETAILS, BUTTON_GOTO_PROD_DETAILS_ALT) . '</a>';
    At least that makes the product description button go to the correct place instead of the buy it now button. I haven't found a solution for the padding above the price to go away or how to put the search box in the black header...but will post if I find a solution

  4. #44
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    165
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Glad that you managed yourself around the coding, I will update the template and put more enhancement, including the search bar in horizontal navigation.
    Will try to update it very soon.
    Responsive ZenCart Templates that automatically adapt itself with iPad, iPhone, BlackBerry, Androids and any monitor screen size
    Buy a coffee for Zen-Cart devs. http://www.zen-cart.com/donate

  5. #45
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    165
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Quote Originally Posted by WWRepair View Post
    Okay, I found a solution for THE PRODUCTS DETAILS GOES TO BUY IT NOW and fixed this myself but I had to modify the file located here includes>modules>templates333>product_listing.php. Find this the red code around line 189
    Code:
    // qty box with add to cart button
                if (PRODUCT_LIST_PRICE_BUY_NOW == '2' && $listing->fields['products_qty_box_status'] != 0) {
                  $lc_button= zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($listing->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&products_id=' . $listing->fields['products_id']), 'post', 'enctype="multipart/form-data"') . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($listing->fields['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_draw_hidden_field('products_id', $listing->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</form>
    			  <br />
                  <a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_GOTO_PROD_DETAILS, BUTTON_GOTO_PROD_DETAILS_ALT) . '</a>';
    and change to this:

    Code:
    // qty box with add to cart button
                if (PRODUCT_LIST_PRICE_BUY_NOW == '2' && $listing->fields['products_qty_box_status'] != 0) {
                  $lc_button= zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($listing->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&products_id=' . $listing->fields['products_id']), 'post', 'enctype="multipart/form-data"') . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($listing->fields['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_draw_hidden_field('products_id', $listing->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</form>
                  <br />    
    			  <a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_GOTO_PROD_DETAILS, BUTTON_GOTO_PROD_DETAILS_ALT) . '</a>';
    At least that makes the product description button go to the correct place instead of the buy it now button. I haven't found a solution for the padding above the price to go away or how to put the search box in the black header...but will post if I find a solution
    I compare both codes above and they are identical... not sure what you want to achieve.

    For a product that has not attribute, when the button clicked it will add product straight to the cart, if the product has attributes, the button will goes to the product info page instead.
    Responsive ZenCart Templates that automatically adapt itself with iPad, iPhone, BlackBerry, Androids and any monitor screen size
    Buy a coffee for Zen-Cart devs. http://www.zen-cart.com/donate

  6. #46
    Join Date
    Feb 2013
    Posts
    11
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Hi

    How can I place a menu on the nav bar to show ezpages for the header please?

    Thank you

  7. #47
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    165
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Sorry for my late reply.

    To enable EZ-Pages nav bar in header, you can insert the code below or enable them in /includes/templates/template333/common/tpl_header.php

    Find current Dropdown menu codes:

    PHP Code:
    <!--bof-drop down menu display-->
    <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_drop_menu.php');?>
    <!--eof-drop down menu display-->
    INSERT codes below Under or above the dropdown codes (which ever you think is good)

    PHP Code:
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE$_SERVER['REMOTE_ADDR'])))) { ?>
    <?php 
    require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php 
    ?>
    <!--eof-header ezpage links-->
    You might need to redo the stylesheet to make the EZ-Pages navigation bar fit nicely in the template.
    Responsive ZenCart Templates that automatically adapt itself with iPad, iPhone, BlackBerry, Androids and any monitor screen size
    Buy a coffee for Zen-Cart devs. http://www.zen-cart.com/donate

 

 
Page 5 of 5 FirstFirst ... 345

Similar Threads

  1. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 21 Feb 2013, 11:34 PM
  2. Turpy Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 3
    Last Post: 20 Feb 2012, 07:36 PM
  3. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 248
    Last Post: 29 Jan 2012, 04:30 PM
  4. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 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
  •