Thread: Pricing Issues

Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Aug 2007
    Posts
    28
    Plugin Contributions
    0

    Default Re: Pricing Issues

    I really need some help here. I can put the ring for price button on but I can't get rid of the price itself. I cannot show the price until the buyer wants to look at the main page of the product. Is there any way i can take the price off for one manufacuterer?

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Pricing Issues

    If you have the product listing set (in admin > Configuration > Product Listing) to display the manufacturer name, that information is available to the price display code in /includes/modules/your_template/product_listing.php.

    Find this section
    PHP Code:

            
    case 'PRODUCT_LIST_PRICE':
            
    $lc_price zen_get_products_display_price($listing->fields['products_id']) . '<br />';
            
    $lc_align 'right';
            
    $lc_text =  $lc_price;

            
    // more info in place of buy now
            
    $lc_button ''
    and add this
    PHP Code:
            if ($listing->fields['manufacturers_name'] == 'Taylor Made') { //use the exact mfr name in your database
              
    $lc_text =  "click for price";
            } 
    /* Taylor Made */ 
    to get this
    PHP Code:

            
    case 'PRODUCT_LIST_PRICE':
            
    $lc_price zen_get_products_display_price($listing->fields['products_id']) . '<br />';
            
    $lc_align 'right';
            
    $lc_text =  $lc_price;
            if (
    $listing->fields['manufacturers_name'] == 'Taylor Made') {
              
    $lc_text =  "click for price";
            } 
    /* Taylor Made */

            // more info in place of buy now
            
    $lc_button ''
    This will have the sole effect that the price will not display for this mfr; everything else will be the same. If this does not give the result you need, the code can be expanded to eliminate the whole button area.

 

 

Similar Threads

  1. v155 Pricing Issues
    By MCS_Computers in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 21 Mar 2016, 09:17 PM
  2. v154 Pricing with attributes issues.
    By vexorgtr in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 9 Feb 2016, 07:08 PM
  3. Pricing issues
    By mek113 in forum Setting Up Categories, Products, Attributes
    Replies: 10
    Last Post: 17 Jun 2011, 11:34 PM
  4. Dual Pricing - Wholesale Pricing - Some issues I was able to fix
    By hollettster in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 17 Dec 2010, 12:00 AM
  5. Group Pricing by Item ISSUES
    By KeystoneAirsoft in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 9 Jun 2010, 05:09 PM

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