Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

euskopc

Archived
  • Posts

    98
  • Joined

  • Last visited

Profile Information

  • Real Name
    Ivan Prieto

euskopc's Achievements

  1. More problems that will be fixed in the next version. Download the new Alpha version and use a translator to install it, I say Alpha because I want to add more utilities to the contribution but it's better than the last "stable" version. I'm going to be 15 days moved away of computers, say to me suggestions for when I returned. Thanks
  2. Some problem with the SEO URL, probably it'll be fixed in the next version.
  3. -Many bugs fixed. -New Administration side with: ---Enable and disable contribution ---Show and hide the last list (subcategories or manufacturers) ---Lists order, starting with manufacturers or categories ---Capture Keywords (In development) ---Configure collected keywords (In development) Without english strings yet :-( Thats all folks! Please report problems here, browser compatability, new ideas... You can view it running at http://www.euskopc.com/avsearch/index.php Download at http://www.euskopc.com/descargas/avsearch.zip Now some holidays ;-)
  4. You can view a demo of the new Advanced Search infobox in http://www.euskopc.com/avsearch/index.php Please report me problems!
  5. I'm rewriting the contribution to fix the browser problems, speed, easier installation, ability to change the search way (Manufacturer->Category->subcategory or Category->Subcategory->Manufacturer), the code is very clear in comparation with the previous version. To do: -Admin section -Instalation instructions (only spanish by the momment) -Translations You can download the alpha version at http://www.euskopc.com/descargas/avsearch.zip Please, don't use the dropdownmenu v2.7, wait to the next version.
  6. Pardon to all the community members that would like use this contribution, or others that need modifications for their sites... but, because of changes in my job I could not support this contrib for a long period of time (probably never :( ) I hope that the most experienced users could make the changes and fixes that this contribution needs (mainly compatability with the browsers). Sorry.
  7. Another modification to this line to solve the problem reported by rubygirl: Change the line: var dropdownmenu_path = "<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_HTTPS_CATALOG ?>"; With this one: var dropdownmenu_path = "<?php echo (($request_type == 'SSL') ? 'https://' . $_SERVER['HTTP_HOST'] . DIR_WS_HTTPS_CATALOG: 'http://' . $_SERVER['HTTP_HOST'] . DIR_WS_HTTP_CATALOG) ?>"; Thanks Rubygirl
  8. Little changes to DropDownMenu 2.7 Alpha 2 *************************** DropDownMenu 2.7 Alpha 3 *************************** Change this: var dropdownmenu_path = "<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_HTTPS_CATALOG ?>"; With this: var dropdownmenu_path = "<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_HTTP_CATALOG) ?>";
  9. Pardon, Its an error :blush: How to edit?
  10. WOW!! I like a lot your webpage!! I'll try today find a solution for you. Do you have messenger for speed up the tests?
  11. *************************** DropDownMenu 2.7 Alpha 2 *************************** Allow the use of DropDownMenu in SSL and NON_SSL pages. 1.-Create a file named blank.php (nothing in this file) and copy it in the catalog directory. 2.-Open catalog/jsrsclient.js: case 'IE': document.body.insertAdjacentHTML( "afterBegin", '<span id="SPAN' + containerName + '"></span>' ); var span = document.all( "SPAN" + containerName ); var html = '<iframe name="' + containerName + '" src=""></iframe>'; span.innerHTML = html; span.style.display = 'none'; container = window.frames[ containerName ]; break; Change it with this: case 'IE': document.body.insertAdjacentHTML( "afterBegin", '<span id="SPAN' + containerName + '"></span>' ); var span = document.all( "SPAN" + containerName ); var html = '<iframe name="' + containerName + '" src="blank.php"></iframe>'; span.innerHTML = html; span.style.display = 'none'; container = window.frames[ containerName ]; break; 3.-Open catalog/includes/boxes/categories_js.php and search this: var dropdownmenu_path = "<?php echo DIR_WS_HTTP_CATALOG ?>"; Replace with this: [CODE]var dropdownmenu_path = "<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_HTTPS_CATALOG ?>"; ******************************* Mozilla advertise that we are sending information from SSL page to NON_SSL, the posible fix to this isue is change this line: tep_draw_form("QForm", tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, "", "NONSSL", false), "get") . With this one: tep_draw_form("QForm", tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, "", $request_type, false), "get") . I don't like the fix because the search show the results in a SSL page, I prefer the advertise.
  12. I'd try to post here all the changes that I'm doing for getting more stable version. Use this method if you want to collaborate. *************************** DropDownMenu 2.7 Alpha 1 *************************** Disble manufacturers when they haven't products. 1.- Open catalog/select_rs.php and search this: return serializeSql("select manufacturers_id, manufacturers_name from manufacturers order by manufacturers_name"); 2.- Replace with this: return serializeSql("select distinct m.manufacturers_id, m.manufacturers_name from manufacturers m, products p where p.manufacturers_id=m.manufacturers_id order by m.manufacturers_name");
  13. No, I didn't make any changes. This is what I would like to code when I've finish my actual obligations. 1.- Enable the use of dropdownmenu in SSL. In previous posts you can view a patch but probably need little modifications (ability of detect the SSL, the patch recommends changes in SSL and NOT_SSL). 2.- Simple link to advanced_search.php in the title of the box. 3.- Activate the breadcrumb again (previous version remove it). 4.- This is the hardest: Ability to control the dropdownmenu in the admin side. The admin section controls: Enable/disable dropdownmenu Order of the searches (manufacturers->categories->subcategories; categories->subcategories->manufacturers or manufacturers->categories->products) 5.- Hide categories and subcategories that are empty. 6.- Make translations of the statusbar messages. If anyone wants to help, only post here the changes for not duplicate the work.
  14. Pixelegg: By the momment I've no solution for this message. The contribution send info (manufacturer, category and subcategory) from SSL page to nonSSL pages, but the customers know that they have changed some items. Rubygirl: I/we need more info (javascript errors, url of your webpage to see the problem...). Try to check the installations steps.
  15. I already know the html code for the euro symbol... but I need change other things before (some contribs could show € to the user instead of ? symbol) _________________________ It's very difficult without seeing the webpage. Could you cantact me by mail?
×
×
  • Create New...