Page 5 of 7 FirstFirst ... 34567 LastLast
Results 41 to 50 of 63
  1. #41
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    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

  2. #42
    Join Date
    Jun 2012
    Posts
    94
    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
    94
    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
    167
    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.

  5. #45
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    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.

  6. #46
    Join Date
    Feb 2013
    Posts
    41
    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
    167
    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.

  8. #48
    Join Date
    Feb 2013
    Posts
    41
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Hi

    How can I change the size of the box on the product info page please?

    The images I use are about half the size of that box

    Thanks for you help

  9. #49
    Join Date
    Aug 2006
    Location
    Singapore
    Posts
    167
    Plugin Contributions
    1

    Default Re: Hope [multipurpose] Template Support Thread

    Hey...

    You can edit the box in product info page from stylesheet.css (includes/templates/template333/css/)
    and find this style:

    #productMainImage

    Change the width and height accordingly (currently they are 285px)
    Hope that helps.

  10. #50
    Join Date
    Feb 2013
    Posts
    41
    Plugin Contributions
    0

    Default Re: Hope [multipurpose] Template Support Thread

    Hi

    Thanks for your reply and help

 

 
Page 5 of 7 FirstFirst ... 34567 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. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Turpy Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 3
    Last Post: 20 Feb 2012, 07:36 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR