Page 40 of 100 FirstFirst ... 3038394041425090 ... LastLast
Results 391 to 400 of 995
  1. #391
    Join Date
    Jan 2011
    Location
    Southampton, UK
    Posts
    11
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi
    I am trying to add a few things to the all business template to do with the way products are displayed. Our company bulk sells products and we want to show our products in the pack size like this

    12 x Panasonic AA batteries 4 batteries per card £0.46 each

    I found it easy enough to create everything up to the each part but get a problem when creating sale items as it looks like this

    12 x Panasonic AA batteries 4 batteries per card (£0.46) £0.40
    Save: 13% off each

    Can someone help me get this in the right place and tell me how to go about adding the total price. i was thinking

    $sum_total = $products_quantity_order_min * $price;

    print ($sum_total);

    This is what i have in my tpl_product_info_display so far

    <!--bof Product Name-->
    <h1 id="productName" class="productGeneral"> <?php echo $products_quantity_order_min; ?> <?php echo x ?> <?php echo $products_name; ?> <?php
    // base price
    if ($show_onetime_charges_description == 'true') {
    $one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
    } else {
    $one_time = '';
    }
    echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
    ?>
    <!--bof testing each and whole price-->
    <?php echo 'each'; ?>
    <?php

    $sum_total = $products_quantity_order_min * $price;

    print ($sum_total);

    ?>
    </h1>
    <?php echo $display_qty = (($flag_show_product_info_in_cart_qty == 1 and $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : ''); X ?>
    <!--eof Product Name-->

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

    Default Re: All Business template Support Thread

    Hi
    I am trying to add a few things to the all business template to do with the way products are displayed. Our company bulk sells products and we want to show our products in the pack size like this

    12 x Panasonic AA batteries 4 batteries per card £0.46 each

    I found it easy enough to create everything up to the each part but get a problem when creating sale items as it looks like this

    12 x Panasonic AA batteries 4 batteries per card (£0.46) £0.40
    Save: 13% off each

    Can someone help me get this in the right place and tell me how to go about adding the total price. i was thinking

    $sum_total = $products_quantity_order_min * $price;

    print ($sum_total);

    This is what i have in my tpl_product_info_display so far

    <!--bof Product Name-->
    <h1 id="productName" class="productGeneral"> <?php echo $products_quantity_order_min; ?> <?php echo x ?> <?php echo $products_name; ?> <?php
    // base price
    if ($show_onetime_charges_description == 'true') {
    $one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
    } else {
    $one_time = '';
    }
    echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
    ?>
    <!--bof testing each and whole price-->
    <?php echo 'each'; ?>
    <?php

    $sum_total = $products_quantity_order_min * $price;

    print ($sum_total);

    ?>
    </h1>
    <?php echo $display_qty = (($flag_show_product_info_in_cart_qty == 1 and $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : ''); X ?>
    <!--eof Product Name-->
    Post a link to your site so that I can take a look.

  3. #393
    Join Date
    Dec 2010
    Posts
    25
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi again everyone,

    I know I read about a missing file for the About Us page, but I didn't understand the directions for how to fix it - given that I know nothing about creating such files can you help? Thanks!

    Also, is there something I can do to make the links for the slider images and the twitter/facebook links open a new page?

    Thanks again for the awesome template!

    ~Jewel

  4. #394
    Join Date
    Oct 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    You are using an old version of the template package. Remove:

    Code:
    #productAttributes {float:left;margin-left:-350px;margin-top:70px;}
    from both the includes/templates/all_business/css/ie7.css and includes/templates/all_business/css/ie6.css.

    Thanks,

    Anne

    thank you

  5. #395
    Join Date
    Jan 2011
    Location
    Southampton, UK
    Posts
    11
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Thank you for your response i am trying to add it to all pages

    What i would like to do is display products names like this

    12 x Panasonic AA batteries 4 batteries per card £0.46 each £5.52

    i have got the first bit (12x) by using the the min order quantity which i am happy with (however my code can prob be cleaned up) but as mentioned previously i am having trouble with displaying 'each' when the item is on special and the total price.

    the domain i am testing on is www.topwholesale.co.uk

  6. #396
    Join Date
    Jan 2011
    Location
    Southampton, UK
    Posts
    11
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Also does anyone know of a way which the item add to cart quantity box is auto filled with the quantity the customer is required to buy them in.
    Basically instead of 1 would be 6 or 12 or whatever is put in the units box, or maybe even a tooltip just something a bit more obvious for our customers as some of them aren't that bright.

  7. #397
    Join Date
    Jan 2011
    Location
    Southampton, UK
    Posts
    11
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Quote Originally Posted by mx-signs View Post
    also does anyone know of a way which the item add to cart quantity box is auto filled with the quantity the customer is required to buy them in.
    Basically instead of 1 would be 6 or 12 or whatever is put in the units box, or maybe even a tooltip just something a bit more obvious for our customers as some of them aren't that bright.

    sorry ignore this it already does it
    (i'm new to zen cart!)

  8. #398
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    Instead of manipulating the css to move things around on this page (this has the potential to cause cross browser problems), I would recommend editing the tpl_product_info_display.php file.

    Thanks,

    Anne
    Hi Anne,

    I did the above and it seemed to resolve my initial issue. However, I'm now running into other issues with Tell a Friend and Reviews. I've reexamined the tpl_product_info_display.php file and both of these items are located at the end of the document. I'm hesitant to tweak my css because it may affect all of my other products. Here is the page specific I'm having issues with

    http://bodiefoundation.org/zencart/i...products_id=48

    Both Firefox and IE. Thanks, Lynn

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

    Default Re: All Business template Support Thread

    I'm hesitant to tweak my css because it may affect all of my other products. Here is the page specific I'm having issues with
    This is the reason for editing the tpl_product_info_page.php. After you make any changes you will need to re-do cross browser testing to see that the layout is still o.k. in all browsers.

    Thanks,

    Anne

  10. #400
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    I'm sorry Anne did I miss something?

    I just added a new product with attributes and ran into this problem. Prior to this (approximately a week ago) the fix to the tpl problem worked. It's not working now. Please see the page I referred you to. How do I fix this?

    Much much appreciated, Lynn

 

 
Page 40 of 100 FirstFirst ... 3038394041425090 ... LastLast

Similar Threads

  1. v150 facebook all [support thread]
    By sourceaddons in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 19 Mar 2019, 04:10 PM
  2. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. All Business template -v1.5
    By heloparis in forum Addon Templates
    Replies: 5
    Last Post: 9 Apr 2012, 03:00 PM
  4. Business Activity Report 1.5.0 Support Thread
    By gharls in forum All Other Contributions/Addons
    Replies: 23
    Last Post: 6 Apr 2012, 11:12 PM
  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