Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Zane86

Pioneers
  • Posts

    61
  • Joined

  • Last visited

Profile Information

  • Real Name
    Anders

Zane86's Achievements

  1. Log in to admin Look for the user u want to give permission to In there, there should be something called "Approved Customer"... or something like that.. Set it to yes
  2. I belive those steps are so that you can give the customer access to add products on the site. The site checks the database to see if the customer is allowed or not to access the publish-site.
  3. Hope you can find the solution.. If you do, please post it here so other can have use of it :)
  4. Strange.. It doesent do that for me, så i have no clue accualy. But i guess you will find the problem in includes/funcions/database.php around the same place where you fixed that <p> were converted to _p_
  5. Im not quite sure what you mean there buddy. Could you perhaps try and explain à little better? //Zane
  6. Yeah.. Ive fixed it. It's missing a few closing tags, such as </td></tr></table>... Its quite hard to find them, and i dont have the right input place left cuz my webshop is heavily modified. If you check the code, and know HTML, you should be able to find the right place :) Good luck
  7. Go to phpmyadmin and change your customers_id for administrator to 0.
  8. Hi there. In the admin system. Go and Edit a customen. When editing a custumer, there will be à Field for "approve customer". Set this to yes. Dont forget to fix à few things. You Will find a post from me in in this thread with à few fixes. CAP wont work without them good luck
  9. Hi there. I think it were supposed to work like that in a future release, however, this contrib aint in developent anymore. So we have to live on each others forumpost :(. Its quite difficult to fix this contrib, but i post a few fixes that you have to do to make it work as is should here; On account_manage.php, the preview and cancel button were not working but redirecting to the index page. It seems that the oscid is not requested on the start of the file which, after testing, seems nessecary for the links to work correctly. Therefore in account_manage.php: find: $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); Directly after add: $osCsid = (isset($_REQUEST['osCsid']) ? $_REQUEST['osCsid'] : ''); When I try to add product using the admin, I can see the product info from the public but not in the Categories / Products field, which means I couldnt edit the contents. go to phpmyadmin and change your customers_id for administrator to 0. Category Fix in account_add.php tep_db_query("insert into " . TABLE_PRODUCTS_TO_CATEGORIES . " (products_id, categories_id) values ('" . (int)$products_id . "', '" . (int)$category_id . "')"); ----------------- Replace this with ----------------- $chosencategory = $_POST['category_id']; tep_db_query("insert into " . TABLE_PRODUCTS_TO_CATEGORIES . " (products_id, categories_id) values ('" . (int)$products_id . "', '" . $chosencategory . "')");
  10. Hi there. Please. Do anyone know if i can limit the customer to only choose specific categorys that i choose? (same with manufacturers would be great). Im almost ready to pay for it.
  11. Is it possible to add Manufacturer for each product in the report?
  12. Okey, got it to work as an input field. Just changed 2 lines in Products_specifications_input.php (in modules) echo tep_draw_textarea_field ('products_specification[' . $id . '][' . $languages[$i]['id'] . ']', '', '70', '3', $products_specification); to echo tep_draw_input_field ('products_specification[' . $id . '][' . $languages[$i]['id'] . ']', '', '70', '3', $products_specification); ...................... Now i have an additional problem. When i add a new product, my specification looks like this: (both in admin and Customer Add Product) First: The name and description only applys to my default language, and not to both Swedish and English. Second: I would love to have the descriptions to the right side of the box. Is that possible? Third: Can i get an additional <br /> after each specification? This is how i would want it to look like:
  13. Okey. Is it possible to change the "textarea" into a "textfield" instead maybe? And tell it to be size="40" for example?
  14. Hi there. Im not quite sure if this is the right place to post, but i think so. This contrib is really great and it works like a charm in the admin-backend. However, i've installed a contrib called "Customer Add Product", wich make it possible for my customers to add products to my store. But its really buggy, so i have gone throu the code and got it to work for 95%. So im almost finished. ***************************************** Here goes my problem; In the admin-backend, when i add a product, the "text fields" for this contrib is about 420px width. But in the front end (Customer Add Product), the "text fields" are only 1 px width. ***************************************** I've copied all the "admin php-files" to the front end to make it work (but changed some file-names so it wont crash due to file names that already existed there. (also added these to filenames.php and changed in Customer Add Product-pages so it will match). Do you have any clue what i've missed? (The drop down lists all works perfect. Its just the text-fields that are buggy). Cheers
  15. Hi there. Im not quite sure if this is the right place to post, but i think so. This contrib is really great and it works like a charm in the admin-backend. However, i've installed a contrib called "Customer Add Product", wich make it possible for my customers to add products to my store. But its really buggy, so i have gone throu the code and got it to work for 95%. So im almost finished. ***************************************** Here goes my problem; In the admin-backend, when i add a product, the "text fields" for this contrib is about 420px width. But in the front end (Customer Add Product), the "text fields" are only 1 px width. ***************************************** I've copied all the "admin php-files" to the front end to make it work (but changed some file-names so it wont crash due to file names that already existed there. (also added these to filenames.php and changed in Customer Add Product-pages so it will match). Do you have any clue what i've missed? (The drop down lists all works perfect. Its just the text-fields that are buggy). Cheers
×
×
  • Create New...