Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

gadlol

Members
  • Posts

    241
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by gadlol

  1. Some Notes: I have found some bugs with the description editors (those bugs occur when using the editors inside a jquery ui dialog), so i will get rid of that dialog in favor of..... thats a surprise... (Doing it like that, you will be able to change the description on different languages without changing the selected language from the dropdown menu on the bottom) ToDo Implementations: Copy Selected product/s to ... Move Selected product/s to ... Clone all attributes from a product to selected products or to all products of a category (thats tough) requested by Jabbathe22 Please, if you have any feature requests, you can post them in this topic. Thank you.
  2. No having admin directory named differently does not affect anything. I dont know what produces this error. Please find my skype_id from my profile page on this forum and contact me to solve it. Thank you.
  3. Hello Jabbathe22, are you sure you have added those define('FILENAME_TBL', 'tbl.php'); define('FILENAME_TBL_AJAX', 'tbl_ajax.php'); define('FILENAME_TBL_ACTIONS', 'tbl_actions.php'); in the catalog/admin/includes/filenames.php?
  4. Hello Laurie. I do not know why [Submit Changes] has no effect randomly, thats strange maybe it has something to do with the data submitted? Can you please provide me with more information? About the editor: you have two possible editors to use the default is "tinymce" and "ckeditor", Just change the value from config.php: 'productsDescriptionEditor' to ckeditor to enable the ckeditor which has the ability to insert raw html And yes I can confirm that the dropdownn menus from editors have some problems. Maybe because they are located in a dialog pop up. I will try to fix it. Regards, John.
  5. Please find my skype_id from my profile page on this forum and contact me to solve those issues. Thank you.
  6. In order not to produce this warning: Change the line 73 in pagination.php from: $numOfPages=$rows / $this->perPage; to $numOfPages = $this->perPage>0 ? $rows / $this->perPage : 0; I have added the updates and the small bug fix in http://addons.oscommerce.com/info/8895 Thank you.
  7. Hello Veego yes you are right. It was my mistake. I will update the instructions as soon as possible. array( 'code' => FILENAME_TBL, 'title' => TBL_LINK_TITLE, 'link' => tep_href_link(FILENAME_TBL) ), and then add define('TBL_LINK_TITLE','Alternative Administration System'); in the english.php
  8. Hello razgre. Yes Product Sort order Field is missing. If you want to enable it you must apply this addon first: http://addons.oscommerce.com/info/8311 and then uncomment the line 156 in the config.php Thank you. Note: Product Sort order is not necessary for my addon to work, but I think if someone uses product sort order then my addon should help him order products easily...
  9. You can find the new addon here: http://addons.oscommerce.com/info/8895 I will not answer to this thread. Use the new : http://www.oscommerce.com/forums/topic/394327-alternative-administration-system-categoriesproducts/ Thank you.
  10. You can find the addon here: http://addons.oscommerce.com/info/8895 Hope you like it. If you have any requests or find any bug or whatever please reply to this post... Thank you.
  11. Unfortunately i cannot upload the addon because when i try to upload it always says Error: All fields required I have entered all the required data but.... Maybe there's a problem with the addons page. Can someone confirm that?
  12. Alternative Administration System: Categories/Products. is an alternative way to navigate through categories to easily find and EDIT products. It has its own ui totally different from the default admin one. You simply navigate to a php page and voila!!! Some features: Add extra custom fields easily All fields custom or not, can be editable or not, visible by default or not , sortable or not e.t.c. You can also add fields from other mysql tables other than products Deletion of multiple products Multiple prices edit Right side panel (sortable fields, choose what fields to display and sort - reorder them) Bottom panel (contains: categories list, languages, display in stock or not) Top Search panel (hidden by default, opens when you click on search icon) Server side pagination (includes max products per page) Advanced search (search on specific field, developers can add their own custom fields) Order products by different fields - custom fields Print categories and/or products (only the categories - products table, everything else is not displayed ) Multiple product status change Export products into csv, json, text or excel file I will post the addon at the addons page shortly Have a look at the screenshots: Youtube demo:
  13. I will check it soon! The fully functional version is about to be released just wait a few more days! Still debugging - adding new things such as: display price (net) and (gross).
  14. The implode function needs an array as an argument. So you get this warning because tep_parse_category_path($cPath); returns null not an array SO second thing to be done is ti check the $cPath variable and check the tep_parse_category_path() function
  15. Hi, I am now debugging it. Although its in a stable status, there are some micro things to be done, such as when the session is timeout and you click to ajax edit products price then it must open a dialog saying session is timeout please login again. For this to happen I must do a small micro change to application_top.php so not to automatically redirect to login page (only for this addon) There are also the translations to be done! The products reorder feature is awesome. You can click on a row and move it up or down and all the products on that page are automatically reordered. So simple!
  16. First try to see what tep_parse_category_path($cPath) returns do: $cPath_array = tep_parse_category_path($cPath); var_dump($cPath_array); $cPath = implode('_', $cPath_array); $current_category_id = $cPath_array[(sizeof($cPath_array)-1)]; Is $cPath_array an array?
  17. New features added: Add extra custom fields easily (for developers: associative arrays) All fields custom or not, can be editable or not, visible by default or not , sortable or not e.t.c. You can also add fields from other mysql tables other than products (you must add the necessary query text (select , from , where) on the array $_EXTRA_FIELDS ) Deletion of multiple products Multiple prices edit (redifned) Right side panel (sortable fields, choose what fields to display and sort - reorder them) Bottom panel (contains: categories list, languages, display in stock or not) Top panel (hidden by default, opens when you click on search icon) Server side pagination (includes max products per page) Advanced search (search on specific field, developers can add their own custom fields) Order products by different fields - custom fields Print categories and/or products (only the categories - products table, everything else is not displayed ) Tooltips Features removed: Sortable fields from settings dialog (you can always sort them from the right side panel) To be done: Make table rows sortable (so when you change the order of rows then also changes the order of products under their category) Multiple products change status There will be instructions for developers (how to add new fields, e.t.c.) There will be no instructions on how to use the addon because I do not have time to do that. I will, though, upload a short video on youtube, showing the new features! Any feature requests before releasing the new version? Do you want the ability to preview a product that is not active - out of stock while editing description? John
  18. xmmm nice but later i will make a new attributes system, so i want something to be generic. For example: Alternative Administration System : Categories / Products AAS:CP Alternative Administration System : Attributes AAS:A Question: whats the difference between addon and contribution on oscommerce?
  19. Information about this addon progress: I have changed the code a lot so when version 0.2 will be realeased you have to replace everything (sorry for this). By changing the code in such a clever way :- you can easily add new fields by just filling an array and ofcourse by adding the appropiate code to the tbl_ajax.php which stores values to db. Note if you want to be able to use a select menu or something else despite simple text which can be editable, you have to hardcode the case in the switch case found in the tbl.php. You can even display fields data without being able to edit them. You will have instructions for all that! A great addition I made, is the ability to mass edit products prices. For example, I want in some values to lower the price by 10%. I just select the products (through checkboxes) and enter the amount 10 and select the -% option on the dialog and press apply. So easy. (Available options are: -% , +% , - , + ) Right now I am building a server side pagination system and i am thinking of making able the system to display - handle products that are specials. And later my goal is to make a new attributes manager system because the osc original sucks a bit (sorry osc team). Thats the news!!! BUT I do not like the name of this addon. So in order to release the next version WE must find another name. I am thinking of: Like a boss Osc Manager ( LaBOM ) Do you have any propositions?
  20. in order for this to work you must edit 457 line of the tbl.php and change according to your store path. //Used by iframe when previewing editing product description //Change according your site. Exmp: 'http://www.mywebstore.com/product_info.php?products_id=' var product_info_path='http://localhost/osc2/catalog/product_info.php?products_id='; I will change it in the final release, so this product_info_path variable will be auto generated... Note in order to preview the product it must be on stock and availble!
  21. hahahah yes hahaha yes its in Greek I forgot to change it. You will find instructions how to change it in this forum post. I think you must learn Greek its a great language. You will discover its awesomeness while learning. Πaρaκaλώ!
  22. I see... In order to make the preview dialogs apear you must click on the View/Edit button which is located in the Description column.
  23. Hi imageanative. Do the preview dialogs apear when you click the preview button (you must make apear the preview column )?
  24. TBL v0.2 is still under developement... Have a look at the screenshot. Hope you like the new UI interface!
×
×
  • Create New...