Search:

Type: Posts; User: graper

Search: Search took 0.01 seconds.

  1. Replies
    17
    Views
    2,255

    Re: Restricted Customer Registration

    you can use the table weight shipping module. it has the ability to change shipping based on price, but you'll have to setup ranges of prices with it.
  2. Replies
    17
    Views
    2,255

    Re: Restricted Customer Registration

    the message in the welcome email is stored in some files in /includes/languages/english/create_account.php and email_extras.php has the copyright message.

    be sure to copy these files to a folder...
  3. Replies
    17
    Views
    2,255

    Re: Restricted Customer Registration

    I just found this because I needed to also not allow customers the ability to register to the site. I looked at the tpl.create_account.php. Unfortunately that was not the correct file, at least...
  4. Replies
    48
    Views
    10,926

    Re: Unique SKU for each attribute?

    I was searching for sku numbers on attributes and found that you didn't get an answer and if there is an answer to this in another thread there was no link to this answer.

    If I'm correct the...
  5. Replies
    4
    Views
    1,030

    Re: can I use other products as attirbutes?

    It's not static, it's a choice of 4 products out of that 100+ products. If it was a static product, I wouldn't be thinking about using attributes, I'd just make the product and put in it's...
  6. Replies
    4
    Views
    1,030

    Re: can I use other products as attirbutes?

    To add all the products by hand through the interface would be a long and tedious chore when you have 100+ products that make up a variety pack. Since there is no automatic way for a product to pull...
  7. Replies
    4
    Views
    1,030

    can I use other products as attirbutes?

    I figured this would be the best place to ask this. I'm building a site for a customer and on their current site which is using aspdotnetstorefront, they have a varitypack, which as far as I can...
  8. Re: needing to add a P.O. number field to the checkout process

    Ok guys,

    I figured I would post everything again to have it in one post. This should be everything EXCEPT the ability to edit the P.O. Number by either side. Can't have it all. These changes...
  9. Re: needing to add a P.O. number field to the checkout process

    hmmm.... It's a good thing the project that needed this hasn't been completed. I just realized that there a few other places where the P.O. Number needs to be displayed. The first of which is...
  10. Re: needing to add a P.O. number field to the checkout process

    No, just add the field name po_number to the existing order table. Here is some sql code to get it done.



    ALTER TABLE `orders` ADD COLUMN `po_number` VARCHAR(15) AFTER `ip_address`;

    ...
  11. Re: needing to add a P.O. number field to the checkout process

    Sure No problem,

    This method adds the P.O. Number field to the form so that it can be saved to the database in the order table, field name po_number If this P.O. Number is needed for a payment...
  12. Re: needing to add a P.O. number field to the checkout process

    I got it to work, I put it in the header_php.php file for the checkout confirmation. thanks for the tip DrByte
  13. Re: needing to add a P.O. number field to the checkout process

    Actually Placed the field in tpl_checkout_payment_default.php, I have it showing up on the checkout_confirmation page.
  14. Re: needing to add a P.O. number field to the checkout process

    I knew I was on the right path with the /includes/class/order.php but I didn't think to look at the /includes/modules/pages/* files.

    If I made the field show up on the payment page, ...
  15. needing to add a P.O. number field to the checkout process

    I'm needing to make a small addition to our template. I need to add a p.o. number field that can be used by customers to put in a p.o. number for accounting controls.

    I know which tpl page to...
  16. Replies
    2,160
    Views
    398,270

    Re: Simple Google Analytics - Support

    I found this post because I was having the same problem with the quick order page and I know what is happening. Look below for my solution.






    The file is not placed in the wrong area. It...
  17. Replies
    9
    Views
    1,722

    Re: Database or template issue?

    Dr Byte,

    I am also having this issue, but I am only having this issue when using the single_sidebox contribution that is found in the downloads area.

    I am attempting to use the single sidebox...
  18. Replies
    15
    Views
    8,265

    Re: Lowdown on adding pages to INFORMATION Sidebox

    EZ Pages are different and do not show up under the define pages. EZ Pages have their own side box. If you want to add links to pages to the information side box you'll have to create a custom file...
  19. Replies
    2
    Views
    2,663

    Re: Weird thing with state drop down field

    I've noticed this too,

    put this css code into your stylesheet, it keeps it there but hides it. This will also hide it on other pages too like the shipping estimator


    #state,#stText,#stBreak{...
  20. Replies
    2
    Views
    1,216

    Re: Unusual shipping scenario.

    fixed it with this hack, ONLY recommended to get table rates to work on weight of TOTAL ORDER and not on weight of each box. There really needs to be setup to choose weight of total order vs weight...
  21. Replies
    2
    Views
    1,216

    Re: Unusual shipping scenario.

    I've been looking into this further, it seems that the configuration -> shipping/payment max box weight is overriding the weight of the order in such a way that the Estimate Shipping Costs says that...
  22. Replies
    2
    Views
    1,216

    Unusual shipping scenario.

    I have a customer who will be
    shipping items by weight and if over 150lbs it will be shipped via freight rather then UPS. The problem is that the fright shipping is measured by total weight and...
  23. Replies
    0
    Views
    675

    question on emails

    question on sending customers email through Zen Cart. when you goto Customers ->Customers you click on a customer and on the right hand side will be a button that says email. If you use that button...
  24. Re: how to ?: make "buy it now" link in featured products on the front page

    I got another PM today about how to make a buy now link. here is the code to make a buy now/add to cart link.

    <a href="' . zen_href_link( $_GET['main_page'], 'products_id=' . $product_id...
  25. Thread: Cross Sell

    by graper
    Replies
    130
    Views
    35,301

    Re: Cross Sell 1.3.0 for 1.3.5

    the problem is the module using $HTTP_GET_VARS and you probably are using a host or have PHP.INI on your server set to have register_globals turned off.
    ...
  26. Replies
    5
    Views
    1,649

    Re: Need help of Cross Sell module

    technically, this is not an issue with what version of php zen cart is running on, it's a matter of what settings you have in php.ini.

    register_globals was changed to false as the default at a...
  27. Replies
    12
    Views
    2,933

    Re: Buy now acts funny when used

    This does have some bearing. If you have it show the cart after adding a product you don't get the refreshed page with the wrong information you get the cart page. It resolves the issue in the fact...
  28. Replies
    15
    Views
    8,265

    Re: Lowdown on adding pages to INFORMATION Sidebox

    You're not really missing anything. There are 2 seperate boxes that are named similarly. One is named just "Inoformation" and the other is names More Information. I too would like to know if there...
  29. Replies
    2
    Views
    2,299

    Re: music product with sheet music

    Been playing aroudn with ZC. Looks like I have to have 2 seperate attributes on the CD products, the first attribute is a single attribute for the music file and a second attribute that only allows...
  30. Replies
    2
    Views
    2,299

    music product with sheet music

    I have a client that wants customers to be able to purchase CD's and Sheet music seperately, but when a CD is purchased the customer get a free copy of 1 set of sheet music. Not just any sheet music...
  31. Re: how to ?: make "buy it now" link in featured products on the front page

    Sorry to take so long to respond back on this, been busy. Thanks for the compliment and I'll deffinatly look into the showcase, maybe it will drum up some business for my company.
  32. Replies
    3
    Views
    1,567

    Re: [not a bug] uncertain with "Buy Now" Buttons

    here's one way to solve it, set Admin > Configuration > Display Cart After Adding Product = true
  33. Re: how to ?: make "buy it now" link in featured products on the front page

    unfortunatly this refers to the listing when you get into Featured Items from the category list. I've had to customize the featured_products.php file to change how list looks. I've made a...
  34. Replies
    3
    Views
    1,567

    Re: bug with"Buy Now" Buttons

    okey, nevermind that change, I think I'm just tired not to mention I threw out my back so I'm thinking strainght. Forget the fix I provided
  35. Replies
    3
    Views
    1,567

    Re: bug with"Buy Now" Buttons

    Fixed it for my add to cart buttons on the front page in featured products, still having found out why when you goto a category and click on add to cart why it changes the title
    ...
  36. Replies
    3
    Views
    1,567

    [not a bug] uncertain with "Buy Now" Buttons

    http://markham.kirkhamsystems.dyndns.org/index.php?main_page=index&cPath=2

    Goto the link provided and click "add to cart" button, and look what happens to the category name

    seems to have...
  37. Thread: MainWrapper

    by graper
    Replies
    4
    Views
    2,696

    Re: MainWrapper

    the problem you are having is that you are editing the wrong file. don't edit the template default files, change the files in the classic files.

    The stylesheet_new.css in the classic folder also...
  38. Thread: MainWrapper

    by graper
    Replies
    4
    Views
    2,696

    Re: MainWrapper

    you have three stylessheets linked to the page. Styleshee.css, stylesheet_new.css and stylesheet_original.css. In one of them you have .centershop set with a width. .centershop is associated with...
  39. how do I make "buy it now" link in featured products on the front page?

    This also applies to specials and new this month items.

    How do I make a "buy it now" link for a product that is in a "featured item", "Specials", and "New This Month" center box that is found on...
  40. Replies
    42
    Views
    22,459

    Re: Upload digital products

    so let me get this straight. You have to use FTP to upload the product files, but I can create a sample list which will automatically upload the files up for me? That's nuts, but I can understand...
  41. Replies
    42
    Views
    22,459

    Re: Upload digital products

    Sabastina, In Zencart, how does one enable a sample file for download so that a shopper can listen to the song before purchase? Do we use another attribute?

    Granville
  42. Replies
    42
    Views
    22,459

    Re: Upload digital products

    I would think the best thing to do is to zip up the files if they all part of the set and that by making a purchase you get the whole set.

    Granville
  43. Replies
    12
    Views
    2,933

    Re: Buy now acts funny when used

    uhh, I thought I explained above what I changed.
    [QUOTE=graper]
    in admin, confiuration -> Featured Listing
    set "Display Multiple Products Qty Box Status and Set Button Location" to 0
    [QUOTE]
    ...
  44. Replies
    12
    Views
    2,933

    Re: Buy now acts funny when used

    http://markham.kirkhamsystems.dyndns.org/index.php?main_page=featured_products

    is the featured product page with the buy now page.

    as far as I can tell the problem is that in...
  45. Replies
    12
    Views
    2,933

    Buy now acts funny when used

    Database: MySQL 5.0.20-nt-max
    PHP Version: 4.4.1 (Zend: 1.3.0)
    HTTP Server: Microsoft-IIS/6.0
    Zen Cart 1.3.0.2
    Database Patch Level: 1.3.0.2
    v1.3.0.2 [2006-07-24 13:07:18] (Fresh...
  46. Replies
    21
    Views
    4,481

    Re: centering header image with tpl_header.php

    As far as I could tell, you probably want to use CSS and change the properties of #mainWrapper so that everything on the page is centered.

    If you are just concerned about the header, change the...
  47. Re: How to add a new section that only shows up on the index page but not others

    Scott and Glenn, Thansk for the tips, those were the kind of answers I was looking for.

    Glenn, I am wanting to put in a second header, and as I look at the code I think I can put it in the...
  48. Re: How to add a new section that only shows up on the index page but not others

    It seems that I did get you lost somewhere as it would seem that you missed the statement of "I would like to have a secondary header that doesn't show up on any other page then the front page". ...
  49. How to add a new section that only shows up on the index page but not others

    To start, I have copied the entire /includes/templates/default_template folder to /includes/templates/mytemplatefolder.

    the basic idea of what I want is a section that will only show up on the...
Results 1 to 49 of 50
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR