Results 1 to 10 of 17

Hybrid View

  1. #1
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Remove the "Units: 0.01 " and the "Min: 0.01" from a Particular Product Page

    Following on from this, another little dilemma with this product ID 1652:

    http://www.silkblooms.co.uk/-p-1652.html

    You can see that I've added a .jpg to the page and tried to position it over the top of the text that says, "quantity:". The image if you're looking at the page in Firebug is controlled by #instalmetnsEnterAmount{}

    Looking at this across browsers and it's really messy. I've had to control it with IE stylesheets and that's not too bad but in Firefox 4.0 it's totally different from the latest Firefox.

    Really, what I need to do is replace the text that says "Quantity:". Is there a way of doing this, but only in product ID 1652?

  2. #2
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Remove the "Units: 0.01 " and the "Min: 0.01" from a Particular Product Page

    Quote Originally Posted by limelites View Post
    Following on from this, another little dilemma with this product ID 1652:

    http://www.silkblooms.co.uk/-p-1652.html

    You can see that I've added a .jpg to the page and tried to position it over the top of the text that says, "quantity:". The image if you're looking at the page in Firebug is controlled by #instalmetnsEnterAmount{}

    Looking at this across browsers and it's really messy. I've had to control it with IE stylesheets and that's not too bad but in Firefox 4.0 it's totally different from the latest Firefox.

    Really, what I need to do is replace the text that says "Quantity:". Is there a way of doing this, but only in product ID 1652?


    In my tpl_product_info_display.php I have the following code which generates an alternative add to cart button:

    PHP Code:
        if ($products_id == '1652') {
    $the_button PRODUCTS_ORDER_QTY_TEXT '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="8" />' zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '' zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_INSTALLMENT_PAY_NOWBUTTON_INSTALLMENT_PAY_NOW_ALT);
    } else {
    $the_button PRODUCTS_ORDER_QTY_TEXT '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="2" />' zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '' zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CARTBUTTON_IN_CART_ALT);
    }             } 
    Would it be possible to insert some code here that generates al alternative text so instead of saying "Quantity:" it could say, "Enter Payment Amount £"??

  3. #3
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Remove the "Units: 0.01 " and the "Min: 0.01" from a Particular Product Page

    OK, I added this to english.php:
    PHP Code:
    define('PRODUCTS_ORDER_QTY_TEXT_1652','Enter payment amount in Pounds &pound;'); 
    Then I edited tpl_product_info.php:
    PHP Code:
        if ($products_id == '1652') {
    $the_button PRODUCTS_ORDER_QTY_TEXT_1652 '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="26" size="8" />' zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '' zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_INSTALLMENT_PAY_NOWBUTTON_INSTALLMENT_PAY_NOW_ALT);
    } else {
    $the_button PRODUCTS_ORDER_QTY_TEXT '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="2" />' zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '' zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CARTBUTTON_IN_CART_ALT);


    But the text is not wide enough. Look:
    http://www.silkblooms.co.uk/modern-y...html?cPath=1_7

    How would I make it look like this?:

  4. #4
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Remove the "Units: 0.01 " and the "Min: 0.01" from a Particular Product Page

    Simple actually, working perfectly now:

    #cartAdd {
    left: 482px;
    text-align: right;
    top: -20px;
    width: 300px;
    z-index: 990;
    }

 

 

Similar Threads

  1. v151 how to remove text "Congratulations! You have..." from the "TEXT_MAIN"?
    By X-youth gone willd in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Dec 2014, 05:33 PM
  2. Need to remove "Units in Stock" from product page
    By kalastaja in forum Basic Configuration
    Replies: 3
    Last Post: 13 Apr 2010, 01:19 AM
  3. Removing "Units" and "Mix on/off" text from customer view?
    By InnaSky in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 8 Dec 2009, 08:31 PM
  4. how do I remove "x Units in Stock" and "Write a Review"?
    By n_kip in forum General Questions
    Replies: 1
    Last Post: 11 Jun 2008, 05:47 PM
  5. Replies: 3
    Last Post: 3 Jun 2008, 11:41 AM

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