Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

azpro

Members
  • Posts

    362
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by azpro

  1. The Phoenix forum moved to https://phoenixcart.org/forum/
  2. I'm also interested in the demo!
  3. Hi, Reading your topic on Currencies and Rounding a request came to my mind ... I will call it "Pricing Calendar". A possiblity to set price Valid From and Valid To - possibly a Special Price - but also for the regular price. Imagine one receives an new pricelist from a supplier - than you do an upload and set Valid From. There are more possible situations thinkable.
  4. This seems to me a hack-attempt ... Probably a script-kiddy bet maybe @Jack_mcs can explain better.
  5. @frankl Long time no see! Good to see you again! Alles goed hoop ik?
  6. For anyone asking themselves what it shoud/could be FOR EXAMPLE: define('DIR_FS_CATALOG', '/data/www/my_website/public_html/'); This is Shopside! So you should check your absolute path and correct for your shop - becaue this can differ for specific servers. I hope this helps!
  7. @ecartz Matt - Just for my understanding (and mabe others) - Do you mean to change shopside /includes/confugure.php define('DIR_FS_CATALOG', dirname($_SERVER['SCRIPT_FILENAME']) . '/'); to an absolute path?
  8. Don't get me wrong - I totally love to see you and others engaging and try to improve your sites / stores ... But maybe it is just a little over your head in terms of newer coding standards. And then I would advice to give it some time .. just pause for a few weeks - take a coffee and relax. There is no need to adapt your store for point (just to clarify that is 1.0.5.1 / 1.0.5.2 / 1.0.5.3 etc) relaeses ... Just give it some time! You can freely play with the newest code - but take some time to read - give it some effort from your side and don't ask the simplest of questions over and over again... if you go to https://www.w3schools.com and work your way through the tutorials you will learn a lot! Off course there is lots of other interseting sites to learn from - eg https://www.stackoverflow.com And I really hope this helps - so you understand what a development path consists of!
  9. Sorry .. but that is crap. Just read carefully the comments of John - Matt and Gary. If you and others in general can not keep up (dont have the skills) with changes than stick to quite stable 1.0.5.0 ... But for every simple notice moaning about stable is not going to bring us where we want to be. I am very sorry if I am blunt but I don’t know how to put it nicely.
  10. Check the XHR output in Firefox web-developer panel .. you will see the requests there.. This might give you the right direction. I hope this helps!
  11. I agree. It is not a solid base. Gary and Matt are preparing all sorts of admin changes to provide a solid base. If and when this will be finished - maybe then it is time for devs / enthousiasts to integrate a nice looking fully powered with bells and horns Bootsrapped admin. But for now - I recommend to stay away from Not Supported poorly coded admin extensions . BUT WE DO NEED MORE SUPPORTERS FOR PHOENIX ... Only more supporters will lead to (faster) development of admin.
  12. and possibly drives the website visitor nuts .. be careful!
  13. Ik denk het ook maar mogelijk zijn er (kleine) verschillen met zowel oSC BS als meest actuele PHP - Mollie API die als basis geldt: https://github.com/mollie/mollie-api-php In ieder geval zegt Mollie op Git voor de oSC module "Deze module wordt niet meer onderhouden, ook kan er geen ondersteuning meer worden geboden indien de module niet juist werkt. Onze excuses voor het ongemak." Wij hebben hem probleemloos draaien - maar wel aangepast naar eigen specifieke behoefte. @frankl .. Ik wist niet dat jij nl bent 😉
  14. Beste René, iDEAL integreren is nooit simpel - maar ik zou eens kijken naar Mollie. Als PSP prima en ze hebben een prima API. Op hun Git is (wat oudere) oSC implementatie te vinden: https://github.com/mollie/osCommerce Succes!
  15. @raiwa @John W I was thinking about this. To me it seems this doesn't need Structered Data since the content / products of recently viewed is only visible for the website customer/visitor. Google or whatever bot should / could not "see" it ... Am I right? Thoughts?
  16. In BS Edge version (allmost) all filenames and database tables are hardcoded ... also the relative path is hardcoded so require( DIR_WS_INCLUDES . 'template_top.php') probably needs to be changed to simply require('íncludes/template_top.php')
  17. I agree - Finalize 2.3 Community Version as it stands now. It is workable and for those who want to stick with older addons it should work. The rest of us should focus energy on 2.4 .... That's to say 2.4 Community Edition because I do not think any official will ... blah blah blah .....
  18. @@frankl The hint was based on just a personal preference ... But off course there is a lot to think of. I have categories with almost 1000 products so this can be tricky. But the principle of Lazy loading is IMHO good. Found this article - seems interesting - and is stating in favour of your approach: And about infinite scrolling: Here is the link: https://www.smashingmagazine.com/2016/03/pagination-infinite-scrolling-load-more-buttons/ Cheers! Arjan
  19. @@frankl Especially mobile users like lazy loading ... but really do not like the button. You can use the viewport / scrolling to load more products. Just a thought! I am sure I have seen several jquery / bootstrap solutions in the past .. can't find them now. Like to see your final result!
  20. @@Gergely Thanks! So the "relative" is especially applicable to the images? Because if I do put in template_top.php I cannot seem to find any differences with your file and putting in the head the manual css and jquery and bootstrap js links- links.
  21. @@Gergely Hi! All working perfectly .. Thanks for great solution to finally get rid of old/poorly inedexed url's. But I am still confused by your http_error.php file in the package since it misses css references. Off course I have read in the install files FAQ .. you say: Could you explain some more about RELATIVE and how to put in safely <link href="ext/bootstrap/css/bootstrap.min.css" rel="stylesheet"> (hardcode path) ?? And maybe a "safe" example of putting in at least the logo?? Thanks! Arjan
  22. @@Gergely Hi! I made some changes to the module for example better naming for files found around line 176 // skip header if ( $n>8 ) { //empty rows shifted in @file! // WE TRY TO FIND BETTER NAVBAR_TITLE FOR $file_title if (strpos(strtolower($line), strtolower('NAVBAR_TITLE')) !== false) { $posaz = strpos($line,','); // FIND FIRST POS OF , $file_title = substr($line, $posaz); // START STRING AFTER , $file = str_replace(array("'", ";", ",", "(", ")"),'', $file_title); // CLEAN THE STRING } // Check if the line contains the string we're looking for, and add if it does foreach ($query_exploded as $q) { if (strpos(strtolower($line), strtolower($q)) !== false) { $array[] = array('icon' => "file", 'title' => sprintf( MODULE_CONTENT_HEADER_STORE_SEARCH_PAGE, substr(basename($file), 0, -4)), 'href' => tep_href_link($file_name, null, $request_type), 'price' => null); break 2; } } } Now I need to make some changes to content_searches.min.js but can not find the unminified version. Could you post/send it or attach to module? Thanks! A
  23. @@clustersolutions As far as I have tested for now the codechange try { self::$db = new SQLite3( self::$sqlite_db_file ); } catch (Exception $exception) { trigger_error( 'Failed: ' . $exception->getMessage(), E_USER_WARNING ); } works as expected! I found one more issue for my heavily modified 2.3.4BS shop regarding the Addon Products Specifications by Kymation. This add-on uses [] in the url for filtering products on specifications ... (Might be I modified it myself .. do not know anymore) ... But USU5 uses the function usu_cleanse (to be found in ultimate_seo_urls5/includes/usu_general_functions) in many instances to clean GET valuepairs .. So the function cleanes out the [] which breaks the filtering to work correctly .... So I added the [] to the preg_replace regex in function usu_cleanse() in about line 162 // return preg_replace( '@[^a-z0-9_]@i', '', $value ); return preg_replace( '@[^a-z[]0-9_]@i', '', $value ); // ADDED [] Took me a long time to find and test this solution so I thougt would be nice to share ... Might be usefull for others in different situations (I was thinking about the attributes part.not properly redirecting to product_info.php from shopping_cart.php ... Next on the list!) ...... And if any of the experts have thoughts on this feebback would be appriciated! Tnx
×
×
  • Create New...