Jump to content

goober999

Member
  • Posts

    305
  • Joined

  • Last visited

Posts posted by goober999

  1. Please forgive my ignorance, for I am a just a lowly programmer and not a merchant of goods and services. ;)

    I am trying to understand and help. I am working on a extenting my Coupon Manager mod to support what I think is a "Gift Certificate". Just to make sure I do the mod right here's what I have so far, please tell me if I am going in the right direction.

    The new mod allows the store admin to generate a "Gift Certificate" code in much the same way as a "Coupon" code. With one main difference. Where the coupon manager will not track how much of the coupons value has been "redeemed" the gift card manager will. In other words if you give someone a $50 coupon and they spend $35, they will loose $15 because the coupon can only be used once. With the gift card manager that $15 dollars will remain and can be spent on the customers next visit to the store.

    Neither the Coupon nor Giftcard code in both cases should be posted publicly where anyone can see them. The code are not tied to a particular user. Should the giftcard be tied to a specific email id?

    The new mod does not generate a code during the purchase. It requires action by the store's admin to generate the code and email it to the customer. Should the Giftcard Manager mod generate the coupon code upon payment?

    Your input would be greatly appriciated and will help me complete the mod that is almost done.

    Thanks

    /Goober

  2. Has any one done a mod that allows gift certificates to be issued on an individual basis with say a one off serial number randomly generated. Then when the recepiant logs on to the web site he can redeem his present by keying in the serial number as part or full payment for goods.

    I have done a search and goober does discount coupons, but this type of mod is very usefull to those who do not want to go to the stores to buy a presnt! :lol:

    degsey69,

    I don't really understand how what you are asking for differs from the coupon mod. The coupon mod generates a one off serial number randomly. The coupon is then given a specific dollar value. This coupon number can then be given to a customer to be used during checkout as full or partial payment.

    If you could be a bit more specific, perhaps I could extend the coupon mod to fit your needs.

    Thanks

    /Goober

  3. anyone... ok let me clarify i want to write a code that selects all products withing a catagory and its sub catagories, i know how to set it by catagory and i know how to select them in groups but i want them all to be selected in one where i can then just use ORDER BY...

    WHY is google failing me now... DOES anyone know if this is possible???

    here you go :D

    select * from table_name where column_a in (2,3,4)

    select * from table_name where columnb_b in ('text1','text2','text3')

    Good Luck

    /Goober

  4. I would like to add a radio-button at the end of the payment process, allowing a user to select standard packaging or gift-wrapping. does anyone know how to add this functionality.

    Thanks

    Just add options to your products called

    "Standard Packaging"

    "Giftwrap Packaging"

    Using options will give you an option to charge extra for gift wraping.

    Good Luck,

    /Goober

  5. i have the hsip by value mod but i dont see how to do it by %

    :) That's because that capability did not exist until today.

    I've emailed you the "advanced" version of the mod.

    just upload the files and reconfigure the shipping band to use optional "by percent" shipping costs.

    Read the code change instructions file to learn how to do that.

    /Goober

  6. customer buys  Under 90 wworth of stuff Shipping is $10    90 and over they get charged 9%

    Hi,

    I have a "Shipping by Value" mod for CubeCart v3.x. With this mod you can configure shipping with specific amounts and/or percentage of the order. See example table below:

    order value: $1 to $50 => shipping cost: $5.00

    order value: $51 to $90 => shipping cost: $9.00

    order value: $91 to $99999 => shipping cost: 9% of the order value.

    The above figures configured from the admin panel

    You also have an unlimited amount of shipping cost bands.

    You can find Shipping by Order Value mod here.

    Thanks

    /Goober

  7. Goober, might not this mod of yours do the trick as well?

    Custom Group Pricing Mod

    You say in your description that you can set up prices for multiple quantity purchases. Am I reading into this incorrectly?

    -jeremy

    Edited to add:

    This one might work as well :)

    Discounts by Quantity Mod

    woodbtreasures,

    I don't know if this mod will do the trick. It's not really about offers and such...

    Custom Group Pricing Mod mod is about setting up different prices for different groups of customers. This mod also allows limited capability for quantity discounts.

    Thanks

    /Goober

  8. Hi

    No it doesnt work with 3.0.6 although the writer of the mod said that he had tested it with 3.0.5 and it worked fine.  He was going to test it with 3.0.6 but hasnt come back to me since.

    Anyone got any ideas ?

    Ian

    Here's the fix to make this mod work with v3.0.6.

    in modules/shipping/Zone_rate/calc.php

    find this line of code

    	$basket = $cart->setVar("Zone Rate","shipMethod");
    
    
    
    
    insert below that line this line of code
    
    
    
    	$shippingAvailable = TRUE;

    That's it. :)

    Good Luck

    /Goober

  9. i would liek to change my popular produucts box to lsit my best sellers

    is it possible and how would it be done

    Yes, it's possible!

    in includes/boxes/popularProducts.inc.php

    find this line of code

    $popularProds = $db->select("SELECT name, productId FROM ".$glob['dbprefix']."CubeCart_inventory ORDER BY popularity DESC",$config['noPopularBoxItems']);
    
    
    And replace it with this line
    
    
    
    $popularProds = $db->select("SELECT name, productId, sum(quantity) as sales FROM ".$glob['dbprefix']."CubeCart_order_inv GROUP BY productId ORDER BY sales DESC",$config['noPopularBoxItems']);

    That's it

    Good luck

    Thanks

    /Goober

  10. is there anyone how could write a mod so the cubecart could do offers ? or would it be to complicated ??

    Hi,

    I have a mod that I think will work for you. I call it "Make an Offer" mod. :(

    A while back I did custom cubecart upgrade for a client who wanted to allow customers to make offers on his one-of-a-kind products.

    I have converted it into a mod and can make this available.

    The mod may require some minor tweaking during installtion and if you were to purchase the I will work with you to make sure that the mod works.

    PM or email me for more details.

    Thanks

    /Goober

  11. Hi,

    I was just wondering if someone could explain exactly what this "manufacturers" functionality is, that Zen/OSC has?

    I've seen it mentioned before, but I still don't know what it is?

    Thanks,

    Estelle.

    Simply put that means this.

    Show all products made by the same company.

    Example:

    List all cars made by manufacturer: Ford

    or

    List all cars made by manufacturer: Honda

    Hope that helps :)

    Thanks

    /Goober

  12. Hi Goober

    I am using the Killer skin mod that display top level categories in the top row and second level categories in the second row (ur first mod). It is working fine !

    BUT

    When I select other skin "Classic or Legend" the top level categories are vanished, only Home Page is displayed at the left Shop by Category box, any help ? using CC v3.0.6 My Test Store

    Regards

    Yunus

    This mod is "Killer" skin specific. You'll need to restore the original categories.inc.php.

    Sorry :w00t:

    Thanks

    /Goober

  13. File Name :: Double Row of Categories for "Killer" skin

    Author :: goober999

    Category :: Minor

    CubeCart Version :: v3.0.4+

    Description ::

    Here's my lates hack to create a second row of tabs for the "Killer" skin. With my previous mod, the first row was for the top level categories and the second row was for the second level categories. This mod puts top level categories on both rows.

    With this mod you will be able to select the number of tabs to be displayed on the first row, with the rest of the tabs on the second row.

    Use this mod if you like "Killer" skin and it's getting crowded on the single row of tabs.

    Updated Tue, Nov 22 2005 1:08 pm

    View File

  14. Hi all,

    I did a search for this but could not find anything related.

    Is it possible to add a second row of catagories in the Killer skin?

    I need this because I have quite a few catagories to add and they will make the page very wide.

    Thanks in advance

    Sachie

    Hi all,

    I just created, and uploaded to the downloads section, a new take on the double row of categories mod for the "Killer" skin.

    This new mod will break up the top level categories on two rows. The mod has a variable that can be set to control the number of tabs for the first row with the rest of the tabs going to the second row.

    The mod is available in the "Downloads" section of this forum or on my website here

    Let me know what you think.

    Thanks

    /Goober

×
×
  • Create New...