tgely 262 Posted July 18, 2015 (edited) Hi Everbody,Modal Cart (Upsell base content module) for Bootstraped osCommerce. Popup could help to display prefered/upcoming/specials/connected/Featured/Xsell/also_purchased and so on products with modal cart page.Basicly its not figured out yet but would be appreciated some advices. Addon: http://addons.oscommerce.com/info/9334 Edited July 18, 2015 by Gergely 4 radhavallabh, altoid, Gyakutsuki and 1 other reacted to this osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
ringo667 2 Posted July 18, 2015 thx, but i think i have the same problem like the Header serch bar. Wich code i must write in footer.php to get the Modal content <?php echo $oscTemplate->getContent('content_footer'); ?> does not work... Share this post Link to post Share on other sites
tgely 262 Posted July 18, 2015 Dear mr Chris, thx, but i think i have the same problem like the Header serch bar. Wich code i must write in footer.php to get the Modal content <?php echo $oscTemplate->getContent('content_footer'); ?> does not work... could you see it?http://library.oscommerce.com/Online&en&oscom_2_3&release_notes&v2_3_4#upg15 osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
♥Gyakutsuki 161 Posted July 19, 2015 Nice contribution: Suggestion, include too products the modal become big, a possibilities to delete the product will be welcome. Regards ----------------------------------------- Loïc Contact me by skype for business Contact me @gyakutsuki for an answer on the forum Share this post Link to post Share on other sites
♥clustersolutions 105 Posted July 19, 2015 A big task...flexibility is important as every store upsell differently. Just building a framework to allow it to adopt to different xsell plugins would be great. The default "xsell" data gathering is kinda one dimensional. A bug fix on the default products_view column may be necessary as the engine doesn't discriminate a robot click verses the others...I think it would be good that the same xsell plugins can also be implemented in the product_info page, which is where I would prefer xselling to take place... Hi Everbody,Modal Cart (Upsell base content module) for Bootstraped osCommerce. Popup could help to display prefered/upcoming/specials/connected/Featured/Xsell/also_purchased and so on products with modal cart page.Basicly its not figured out yet but would be appreciated some advices. Addon: http://addons.oscommerce.com/info/9334 Share this post Link to post Share on other sites
tgely 262 Posted July 19, 2015 Thank you guys,@@GyakutsukiI would like to add more than the original cart page so it wont be a standard cart.@@clustersolutions Upsell could use the latest added product. osc cart has a very usefull session parameter for it (new_products_id_in_cart)It wont be a typical cart its would be an upsell modal with links to another products.. The goal would be that modal cart could use upsell contents by latest added product but it depends on what addons do you have. osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
ringo667 2 Posted July 19, 2015 could you see it? yes, thx :-) Share this post Link to post Share on other sites
ringo667 2 Posted July 25, 2015 (edited) small note: if some one use Master Products and the Customer choose zero Products, the Modal open with no Products. Solution: i have insert in cm_footer_modal_cart.php at line 85: if ($cart->count_contents() == 0) { $cart_contents_string .= MODULE_CONTENT_FOOTER_MODAL_CART_TEXT_ALERT;} and defined this in the langue file. Maybe this is for some one usefull. B) thx Edited July 25, 2015 by ringo667 Share this post Link to post Share on other sites
ringo667 2 Posted July 25, 2015 i tink i have a Session Problem. if i choose a Slave Produkt the modal open. But the Modal dont open with a Normal- or Master Produkt and with the buy now Button in Produkt listing. What ist the Problem? Share this post Link to post Share on other sites
tgely 262 Posted July 25, 2015 @@ringo667 would be nice your includes/application_top.php and includes/classes/shopping_cart.php for this issue. osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
ringo667 2 Posted July 25, 2015 thx for help application_top.php shopping_cart.php Share this post Link to post Share on other sites
tgely 262 Posted July 25, 2015 its a little bit strange. buy_now and add_slave use very similar callouts so it should be work except for attributes is true when master or simple products used. Do you use attributes? osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
ringo667 2 Posted July 25, 2015 yes http://t1p.de/047f http://t1p.de/tp8h Share this post Link to post Share on other sites
tgely 262 Posted July 25, 2015 (edited) lets try the following in shopping_cart.php class file:change at 140: // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } } } to: // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } } elseif (is_numeric($products_id) && is_numeric($qty) && ($attributes_pass_check == false)) { $check_product_query = tep_db_query("select products_status from " . TABLE_PRODUCTS . " where products_id = '" . (int)$products_id . "'"); $check_product = tep_db_fetch_array($check_product_query); if (($check_product !== false) && ($check_product['products_status'] == '1')) { if ($notify == true) { $new_products_id_in_cart = $products_id; tep_session_register('new_products_id_in_cart'); } } // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure $this->cartID = $this->generate_cart_id(); } } I have no experiencies about this solution so it could be bad results. Edited July 25, 2015 by Gergely osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
ringo667 2 Posted July 25, 2015 it dont work, there are no changes. Share this post Link to post Share on other sites
tgely 262 Posted July 25, 2015 I have no similar system so I couldnt figure out a fix without debug so no more idea at this moment. osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
radhavallabh 41 Posted August 14, 2015 Hi @@Gergely, This is an amazing addon is it available for 2.3.4 version also.... I would be sooo grateful to know about it... Thanks in advance.... Share this post Link to post Share on other sites
Mikepo 80 Posted December 6, 2015 Hi, just installed this module in 234BS edge, and I can't seem to get this modal cart to pop up, whichever admin setting I use. Is anyone else using this module, and can you show how to set it up. Thanks Mike osC CE live - developing osC Phoenix adding modules with no core changes(awesome and easy!) Share this post Link to post Share on other sites
tgely 262 Posted December 7, 2015 @@Mikepo It could be html content missing. Give us a link where we could see what is it. osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
Mikepo 80 Posted December 7, 2015 @@Gergely, I'm currently building my new site on a standalone PC, so there is no external access. What sort of HTML content would you be looking for? I could send the page source, when I think the Modal Cart should appear, would that do? osC CE live - developing osC Phoenix adding modules with no core changes(awesome and easy!) Share this post Link to post Share on other sites
tgely 262 Posted December 7, 2015 @@Mikepo Do you use another modal? osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
Mikepo 80 Posted December 7, 2015 @@Gergely, yes, the modal info http://addons.oscommerce.com/info/9204 osC CE live - developing osC Phoenix adding modules with no core changes(awesome and easy!) Share this post Link to post Share on other sites
tgely 262 Posted December 7, 2015 @@Mikepoconflict is possible between two modals. Post here the html page. osCommerce based shop owner with minimal design and focused on background works. When the less is more.Email managment with tracking pixel, package managment for shipping, stock management, warehouse managment with bar code reader, parcel shops management on 3000 pickup points without local store. Share this post Link to post Share on other sites
Mikepo 80 Posted December 7, 2015 here's the index (before buy), shopping_cart (after clicking buy) index.html shoping_cart.htm hope this helps osC CE live - developing osC Phoenix adding modules with no core changes(awesome and easy!) Share this post Link to post Share on other sites