-
Content count
281 -
Joined
-
Last visited
-
Days Won
2
Everything posted by kgtee
-
Here is a very old add-on which keeps track of pages visited. Perhaps you can work on it to suit your requirements. https://apps.oscommerce.com/xQBTD&navigationhistory-remembering-x-number-o
-
What I meant is the left join pd should apply in the mysql statement as shown below, and not in your PHP code: select count(p.products_id) as count from (products p) join (products_to_categories p2c) on (p.products_id = p2c.products_id) left join (specials s) on (p.products_id = s.products_id) /* left join (products_description pd) on (p.products_id = pd.products_id) */ INNER JOIN products_specifications ps17 ON p.products_id = ps17.products_id where p.products_status = '1' and p2c.categories_id = '432' and pd.products_name sounds like '%PoE%' AND ps17.specification <=> 'Oui' AND ps17.specifications_id = '17' AND ps17.language_id = '3'
-
"products_name" is missing a left join pd prefix. It should be pd.products_name
-
There is an add multiple products done for 2.3.1
-
New management and osCommerce v4
kgtee replied to osCommerce-Official's topic in News and Announcements
Being truly open, discussions and source codes likewise, I believe v4 will bring back more of the existing 353413 members back online, and add more new members too. osC glorious past will soon return! ๐ -
Categories Navbar Module - Phoenix v1.0.6.0
kgtee replied to GetSirius's topic in Templates and Images
@cebukoreanews I have just updated the module to work in 1.0.7.14. Please download at the app market. Feel free to comment, and update it if you have any enhancement. Thanks. -
@piernas Thanks for the update. We need more apps like this one, both admin and shop sides, to improve user experience ๐
-
I was playing with this quick_update, and found the above line ($current_category_id = 0) did not yield the desired filter result. Apparently the cPath was not calculated correctly due to Phoenix new code I add these lines (in bold) instead at around line no. 247, and it now works:
-
@amaische I used this wishlist navbar module https://apps.oscommerce.com/cl8JP&wishlist-module-for-modular-navigation-b which is different from yours. This module has the MODULE_NAVBAR_WISH_LIST_HAST_CONTENTS. However, your error "Uncaught Error: Call to a member function count_contents() on null" is more difficult to solve. It can be due to an error (typo?) in the wishlist class. Perhaps you want to check the class functions therein more thoroughly.
-
The function call has been converted to a session call. You should have this in the template file:
-
@amaische If the error is correctly " Fatal error: Uncaught Error: Call to a undefined function count_contents() " , then it is likely you have not uploaded the wishlist class file in the " includes/classes " folder.
-
@MyBookShop You may want to do like what Willy did above. The file is \includes\modules\content\shopping_cart\templates\tpl_cm_sc_checkout.php
-
Hi Rainer, Thanks for this wonderful app. Just to let you know, AM_AJAX_VALUE is presently defined twice in the language file admin\attributeManager\languages\english\attributeManager.php. This also posts a notice error. You may wish to update in the next release.
-
I can't because I do not have the permission to make any changes to the app. After all there are only two small changes to the file ""ext/modules/content/header/store_search/content_searches.php": 1) At Line 82, add this line: 2) At Line 130, remove the field "p.products_availability, "
-
I used firefox web console to debug the ajax process and the console showed an error in the file "content_searches.php". The error pertained to a statement looking up the product database table for a field called products_availability which is obviously not native of Phoenix original database. After clearing this error, the store search is finally working.
-
Hello Gwenn, Have you tried this one? I have no luck getting either one to work ๐ค It might have something to do with the dropdown menu behaviour of each BS4 version. If you try to change the BS in Phoenix 1077 to different versions, you will see all the dropdown menus sometimes work and sometimes not.
-
When you make wishlist into a hook, I am curious how you ensure the wishlist action is executed before the shopping cart action. This order of execution is important as you do not want shopping cart to act first leaving nothing for the wishlist.
-
BS Slick Image Gallery Question - 2.3.4.1 CE Compatible Image Gallery Module for Product Info
kgtee replied to Bobber's topic in Templates and Images
Hi Val, you may try this Slick_Image_Gallery.zip. It is a pi module The ext\slick directory is not included in the zip package. You can use the same one supplied in the original add-on.- 15 replies
-
- 2.3.4.1 ce
- bootstrap
- (and 8 more)
-
https://apps.oscommerce.com/6V87X&bs-slick-image-gallery
-
I think the slick gallery can be adapted to do just that.
-
๐The app does not need you to understand the PHP code. All you need to do is to log into the Admin page and look for the app which you have installed and start using it to set the discount code.
- 13 replies
-
There is an error on line 34: Should not this variable be "$attributes_values"?
-
https://stackoverflow.com/questions/547821/two-submit-buttons-in-one-form Two form submit buttons were coded from day 1 by the original contributor and they did not have any problem. As they each have their own name and value, I should see that this has avoided any problem. The contributor has even highlighted that the wishlist actions should be placed before the shopping cart actions. This is really clever. ๐
-
@LeeFoster When the button "save to wishlist" is clicked, the session parameters registered for wishlist are invoked and passed on to application_top.php to take wishlist actions.