Search:

Type: Posts; User: gaurav10feb

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    582

    Re: sql for index product listing

    thanks for reply. yes i am after that particular file name if possible?
  2. Replies
    3
    Views
    582

    sql for index product listing

    Hello I am using row product listing

    can anyone please tell me where can i find the sql to fetch the products when someone click on categories sidebox.
  3. Replies
    2
    Views
    733

    Re: Modifying my Invoice

    what version are u using? add a screenshot of your invoice to show us what u after
  4. v139h Re: Remove Default Email Address from Returning Customer Login

    Go to your template folder >> templates and look for tpl_login_default.php if you cant find there
    then it should be in template_default >> templates

    search for...
  5. Replies
    4
    Views
    575

    Re: Second Logo

    well you need to modify tpl_header.php in your template >> common folder.

    you might need to define div to be aligned right and insert the img tag in it
  6. Replies
    6
    Views
    626

    Re: php script error question

    you are missing ' after 6 it should be


    ...
    ...
    $db->Execute("update " . TABLE_CUSTOMERS ." where customers_id = '" . (int)$_SESSION['customer_id'] . '" set customers_group_pricing = '4'");
    }
  7. Replies
    31
    Views
    1,916

    Re: Replacing a text string on a page

    everything is possible dgent, problem is you are looking at modifying quite a few pages.
  8. Replies
    10
    Views
    1,538

    Re: How to take phone order?

    there are addon which will let u order from backend into customers account.

    try "Admin login as customer" by softwareguy
  9. Replies
    5
    Views
    1,007

    Re: 1062 Duplicate entry '11' for key 1

    what i believe , problem is your now() value....it should be time not now() itself to be saved as value
  10. Re: how do i remove the categories list on the left side when not on main page?

    go to your template folder >> common >> tpl_main_page.php

    add this after comments

    if ($current_page_base <> 'index')
    {
    $flag_disable_left = true;
    }
  11. Replies
    1
    Views
    408

    Re: Copy Attributes to Complete store

    Add on is available now http://www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_41&products_id=2033
  12. Replies
    1
    Views
    283

    Re: Price...more info

    use options on product listing add on...this will show attributes on product listing and you will have buy now button instead of more info
  13. Replies
    4
    Views
    629

    Re: Messy Category Image Display

    you need to make sure that all images are same size before you upload them.

    for example your acme-tackle image is 150 X 150
    and ahi-logo.jpg is 144 X 58
  14. Re: Maximum execution time of 60 seconds exceeded

    or go to zencart admin>>tools> server/version info and check maximum execution time

    if its 60 seconds then you might need to modify your php.ini file
  15. Replies
    3
    Views
    655

    Re: HELP! Undo an SQL statement file?

    ask your web hosting provider if they have any backup of your sql
  16. Re: Customer login doesn't work...help please!

    link to your website would be help
  17. Replies
    13
    Views
    3,534

    Re: get rid of extra home button

    if you mean home on breadcrumb

    Configuration >> Layout settings >> Define Breadcrumb Status set to 2
  18. Replies
    2
    Views
    384

    Re: Additional Pricing

    You can use attributes
    1. Make your product to be $0.00
    2. Create 2 attributes one regular size for $29.99 and second plus size for $32.99
    3. Make regular size to be default attribute of your...
  19. Re: Calling the current product page url with php

    <?php echo $_SERVER['HTTP_HOST'] .$_SERVER['REQUEST_URI']; ?>
  20. Re: Put a new filed for notes in product order page

    hello diytools,

    Please explain again more clearly. what exactly you wish to achieve.
  21. Replies
    1
    Views
    697

    Re: Export Email addresses and country

    customers info and his country is in totally different tables.

    Which means you will have to change the newsletter query
  22. Replies
    24
    Views
    4,169

    Re: Home login/register links

    go to your includes>>templates>> YOUR template folder>>common>> tpl_header.php
  23. Replies
    2
    Views
    855

    Re: Birthdate (Remove Year)

    Go to configuration>>min values>>
    change DOB from 10 to 5 (if you wish day and month) 7 for (month and year) once you have done this.

    you need to change the DOB example text

    Go to...
  24. Replies
    1
    Views
    864

    Re: New Field in Order Confirmation

    what is the name of table, which has dropdown? if its order table

    than you need to modify the $order_query first

    you need to add dropdown in select command
  25. Re: Adding Attributes to Mulitple products

    you would not the able to select products. however you can just use copy to category , which will copy attributes to all products in the category.
  26. Re: Create a new account. It proposes my city and email

    It looks like someone has defined default values

    Go to includes>>templates>>template_default>>templates>>tpl_modules_create_account.php

    search for your email '[email protected]' you will...
  27. Re: Buy now button with default "attribute"

    there is a addon to actually show the attributes on product listing with buy now button. which will resolve your problem...its called Options on Product Listing
  28. Replies
    1
    Views
    1,029

    Re: Display price with and without tax

    just add another line with ur oscommerce code
    $products_price = zen_get_products_display_price((int)$_GET['products_id']);
    $price_with_vat = $products_price + round (25*($products_price/100));...
  29. Re: can I remove the birth date and newsletter from account creation?

    DOB can be removed in configuration>> customer details>> set DoB to FALSE

    with newsletter the only option is to make check box invisible .

    if you wish to remove the newsletter field then you...
  30. Re: Separate wholesale registration and retail registration, can it be done?

    once i did the similar task. I am sorry i dont have code but what i did

    i used 2 sets of login module and first page was to ask user if customer wants to buy or asking for quotes.
    then, i used...
  31. Re: "1054 Unknown column 'orders_status' in 'field list', using Moneybokkers

    you need to make sure that you have changed your moneybookers sql table accordingly with your new version.
  32. Replies
    1
    Views
    554

    Re: Sorry not shipping to your zone

    make sure that you havnt selected tax zone for your free shipping
  33. Replies
    2
    Views
    428

    Re: Create a Buy Sample Button

    I think you are correct and you can achieve this by attributes.

    set product price to $0.00 and then 2 attribute options
    1. SAMPLE with sample price
    2. PRODUCT with full price

    Here is a link...
  34. Thread: Footer

    by gaurav10feb
    Replies
    8
    Views
    872

    Re: Footer

    includes >> template >> YOUR TEMPLATE >> tpl_footer.php

    you will be able to change your year.

    as well as adding your website link.
  35. Re: I want the Attribute dropdown to show the final price?

    what you can do is to make your main product to $0
    and than add attribute with the total pricing.

    so default attribute will be your default value of product.
  36. Replies
    11
    Views
    2,050

    Re: Remove Detailed Invoice Link from Email

    u will find that in orders.php under admin folder
  37. Replies
    4
    Views
    2,868

    Re: Photo Gallery

    this will allow you to have sample image with attributes such as sizes
    customer can order to print the size they want and then you can deliver

    follow this step by step instructions
    ...
  38. Replies
    4
    Views
    2,868

    Re: Photo Gallery

    hello buzz,

    you can use integration module of gallery 2 and zen cart. However my past experience says that gallery is only good if you keep under 15000 products.

    Cheers
  39. Replies
    1
    Views
    408

    Copy Attributes to Complete store

    Hello Everyone,

    After living lazy life. Today i decided to make zencart to be able to copy attributes to complete store. As far as i know, zen cart only allow one category at a time.

    Well, i...
  40. Re: Spacing of text links when click on subcategory

    go to admin >> configuration >> images and then set
    Subcategory Image Width & Subcategory Image Height to 1
  41. Replies
    1
    Views
    603

    Re: lavendar template

    there are many ways...guide us how would you like your footer to be by showing us any example and we will be able to assist you with that.
  42. Re: Change Email Address

    changing email for account wouldnt make affect on your order as wenever someone orders it stores email in orders table as well.

    You might need to use sql to change the email address in order table
  43. Re: how to mass edit Product qty Min & Max & product qty units

    then this might now work for you.
  44. Replies
    2
    Views
    511

    Re: Editing and Changing Orders

    Use super orders

    http://www.zen-cart.com/index.php?ma...roducts_id=257
  45. Re: how to mass edit Product qty Min & Max & product qty units

    you wish to do it for all products use sql

    e.g. UPDATE products SET `products_quantity_order_min` = 'X'
  46. Replies
    1
    Views
    297

    Re: Secondary category image

    you can use description to add another image which will show on particular category page
  47. Re: Possible? Can Admin receive copy of email from 'Send Email' under tools?

    You can enable and email achieve option which will save all email sent by store into database and
    you can use addon to retrieve the email (in case you dont wanna use phpmyadmin to see saved email)
  48. Re: Can't access admin - says I haven't installed it yet?

    wat happens when you rename baggo back to admin?
  49. Thread: new banner

    by gaurav10feb
    Replies
    5
    Views
    666

    Re: new banner

    it looks like you are missing language defination for your logo image

    double check in includes>>language>>YOURTEMPLATE>>header.php

    define('HEADER_LOGO_IMAGE', 'ur image name');
  50. Replies
    2
    Views
    434

    Re: Changing link names

    edit includes>>languages>>english.php

    e.g look for define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use'); to modify
Results 1 to 50 of 243
Page 1 of 5 1 2 3 4
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR