Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

zeeshop

Members
  • Posts

    271
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    zeeshop reacted to Jack_mcs in Easy Populate V 3.0   
    A new version has been uploaded. It works through v1.8.0.17, maybe later.
  2. Thanks
    zeeshop reacted to Jack_mcs in Automatically send data feed to Froogle   
    It seems the problem would have to be in the description of the product that is failing since, as I understand it, not all products are failing. So if that is the case, all I can suggest is that you try to isolate the part of the description that is causing the problem.
  3. Thanks
    zeeshop reacted to raiwa in Stripe v3 module for SCA   
    Yes
    I do not know this module, but I believe you just need to add the create_account_pwa.php page to the page list where to add it.
    You should ask the developer of that module.
  4. Thanks
    zeeshop reacted to Jack_mcs in Automatically send data feed to Froogle   
    No, there isn't I apologize for the mistake. I was thinking of Easy Populate. For this addon, there shouldn't be any reason it would fail with that many products when ran as a cron job. It might timeout if ran via admin, depending upon your hosting accounts timeout limit. So try running it as a cron  job to see if it completes.
  5. Thanks
    zeeshop reacted to raiwa in AJAX Attribute Manager support   
    Hello @Patrick_R, hello @zeeshop,
    First of all, your questions should be posted in the support threads of QtPro and Options Images. Even Attributes Manager includes support for them, the errors are primary in these Apps, not in Attributes Manager.
    Second, both Apps are not updated yet for Phoenix 1.0.7.14. They are on my update list. Please be patient.
  6. Thanks
    zeeshop reacted to raiwa in Stripe v3 module for SCA   
    This is not possible. It is retrieved and the style defined from Skype site.
    Only from Strype site.
    Thank you for the confirmation.
  7. Thanks
    zeeshop reacted to Jack_mcs in View Counter   
    View Counter hasn't been changed to work with that version of Phoenix so I would expect errors or warnings.
  8. Thanks
    zeeshop reacted to Jack_mcs in Easy Populate V 3.0   
    A new version has been uploaded with these changes:
    Added missing language file. Changed code to prevent php notices. Fixed problem with product descriptions not being updated.
  9. Thanks
    zeeshop reacted to Jack_mcs in Easy Populate V 3.0   
    I verified this isn't working when updating. It does work for new products. It is a mistake in the code but I don't have a fix at this point. I will get to it as soon as I can. Thank you for reporting it.
  10. Thanks
    zeeshop reacted to Jack_mcs in Easy Populate V 3.0   
    It turns out there is a missing file in the last released version. Please upload the attached to the includes/languages/english/ directory. I apologize to everyone for the mistake.
    easypopulate.php
  11. Thanks
    zeeshop reacted to Jack_mcs in Automatically send data feed to Froogle   
    Please try changing the currency setting in the googlefeeder.php file.
  12. Thanks
    zeeshop reacted to Jack_mcs in Automatically send data feed to Froogle   
    A new version has been uploaded with these changes:
    Added gtin as an identifier. Added code for Phoenix compatibility. Installation just requires the files to be uploaded for Phoenix. Changed count code to pass php 7.3. Found by member @yahalimu. Changed default http to https in the googlefeeder file. Removed the code to check if mysql is being used. Mysqli is now required.
  13. Thanks
    zeeshop reacted to Jack_mcs in Easy Populate V 3.0   
    A new version has been uploaded with these changes:
    Free Version:
    Added an option (bottom of the page) to clear the temp directory. Added a language file (not complete). Added the old tableblock class since the new one removes the table, which is needed here for display purposes. Changed code to remove php warnings. Changed the options code to use the stored settings. Changed the model setting to a database option and loaded the model size dynamically so it no longer needs to be set. Changed the Export section to allow clicking on the text to set the checkbox, as opposed to having to click the checkbox. Changed all references of Froogle to Google Shopping since that is once again free, sort of. Changed Header Tags SEO names to use the Phoenix names. Changed layout to use BS4 controls. Fixed many security holes. Fixed the custom create section. Fixed the additional images code to load properly. Fixed some problems found in the original addon as well as some of mine in the previous version. Moved the information message on file creations to the header instead of it blocking the page. Removed definitions from the functions file. Removed the magic quotes code. Replaced the block of code for deleting a product with a call to the stock functions. PRO Version:
    Added an option to upload all images from within Easy Populate. Added an option to check image usage. Please note: Since google shopping is once again, partially, free, I changed the old Froogle code to work with it. But the output still follows the rules of the original Froogle. So while this option may work for some shops, if you plan to upload to Google Shopping, you would probably be better off using the Google Feeder addon. I may change the code in this addon to provide a full Google Shopping feed at some point but I'm not sure it is worth the time since the other addon exists.
  14. Thanks
    zeeshop reacted to Heatherbell in Help with ot_shipping due the free shipping   
    The following works for us (with thanks to @ecartz for solution).
    After:
    const CONFIG_KEY_BASE = 'MODULE_SHIPPING_FLAT_'; Insert:
    public function __construct() { parent::__construct(); if ($this->enabled && isset($GLOBALS['order']->info['total']) && ($GLOBALS['order']->info['total'] < 30)) { $this->enabled = false; } }  
  15. Thanks
    zeeshop reacted to raiwa in [Contribution] Ship In Cart   
    @zeeshop,
    Hotfix for Phoenix 1.0.7.12:
    In includes/modules/content/cm_sc_shipping.php line 64 add this:
    public function get_country_id() { return null; } public function get_zone_id() { return null; } so the whole snippet should look like this:
    if (!isset($GLOBALS['customer'])) { $GLOBALS['customer'] = new class { public function fetch_to_address($to = null) { return []; } public function get($key, $to = 0) { return null; } public function get_default_address_id() { return null; } public function get_country_id() { return null; } public function get_zone_id() { return null; } }; } or just use this file:
    cm_sc_shipping.php
     
    However there may appear other issues.
  16. Thanks
    zeeshop reacted to raiwa in [Contribution] Ship In Cart   
    You should always:
    - have a backup to be able to roll back
    - test an update on a separate sandbox store before updateing a live store
×
×
  • Create New...