Jump to content

Patrick

Members
  • Posts

    244
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Patrick

  1. I downloading the last ClicShopping update on Github, I will test on my commputer with php 7.3
  2. A little tuto can help under ispconfig 3.1 to enable the http/2 protocols Http/2 protocols increase the speed to display your website. you can test there : https://tools.keycdn.com/http2-test or via this command : 1 - edit all your website cd /etc/apache2/sites-available to test sudo a2enmod http2 and restart apache2 Number 1 : Install all the website cd /etc/apache2/sites-available nano mydomain.com under ServerAdmin add Protocols h2 http/1.1 restart apache2 /etc/init.d/apache2 restart make the same thing for all website 2- all new website vi 000-default.conf below DocumentRoot add Protocols h2 http/1.1 3 - Via the panel edit your website, go to options and apache directive add Protocols h2 http/1.1
  3. To go far, you can create your own template and include or change that you want inside. It's better to create a new file to change in the original file. Like that if you have an update, you will not impacted.
  4. Yes you can do that, you can include the GDRP inside your apps I think. I do not test.
  5. Hi, First, Do you have installed or not the gdrp header tag modules ? ClicShopping propose a nice approach about the registred customer but for the not registred, you must install a specific module. You we will found the modules the : https://github.com/ClicShoppingOfficialModulesV3/module_header_tags_gdpr or you can install via the extensions. maybe it can help you to manage your need. you can find a module cookie consent. Else look the directory : Clichopping/Modules/Hooks/Account. You will find some GRPD modules. it's easy to create another : Copy the files and change the name : example <?php /** * * @copyright 2008 - https://www.clicshopping.org * @Brand : ClicShopping(Tm) at Inpi all right Reserved * @Licence GPL 2 & MIT * @licence MIT - Portion of osCommerce 2.4 * * */ namespace ClicShopping\OM\Module\Hooks\Shop\Account; use ClicShopping\OM\CLICSHOPPING; use ClicShopping\OM\Registry; use ClicShopping\OM\HTML; class AccountGdprNoIp { protected $IpAddress; public function getIpAddress() { $CLICSHOPPING_Db = Registry::get('Db'); $CLICSHOPPING_Customer = Registry::get('Customer'); $Qgdpr = $CLICSHOPPING_Db->prepare('select no_ip_address from :table_customers_gdpr where customers_id = :customers_id '); $Qgdpr->bindInt(':customers_id', $CLICSHOPPING_Customer->getID()); $Qgdpr->execute(); $ip_address = $Qgdpr->valueInt('no_ip_address'); return $ip_address; } public function display() { $output = '<div>'; $output .= '<label class="checkbox-inline">'; $output .= HTML::checkboxField('no_ip_address', $this->getIpAddress(), $this->getIpAddress()); $output .= '</label>'; $output .= CLICSHOPPING::getDef('module_account_customers_gdpr_no_ip_address'); $output .= '</div>'; return $output; } } To create another module change AccountGdprNoIp by AccountGdprMyModule Note : AccountGdpr is very important, it allow you to implement the code in your catalog the new module. The files is reading dynamicly I hope it can be an help to create your own module.
  6. Yes you can for example about the canada taxe, it's included inside. I do no test because I am not in this country but it must work. Look the taxe and their cunstruction. It can help you.
  7. I think when I see the other website, the order funnel must be simple. the customer does'nt have information who can change this opinion. The big platform use another website for that after to come back in the website.
  8. You have not a robot.txt inside ClicShopping. This is including inside the solution and there is an identification about the different robot.txt Also, you can use different module, called header_tags than you can install. Look the extensions.
  9. Hi Joe, There is an extension can allow you to do that. Inside you have example to transfert your bd inside ClicShopping. You can create your own transfert and eventually share your work to allow other people to use the conversation. Look this post it can help you : https://www.clicshopping.org/forum/topic/32-migration-for-oscommerce/ the name of the extension is : apps_tools_import_data Looking the code, it enough simple, you must create a new hooks and take the element inside the other. It can help you.
  10. Look on github community or you can install via the extansion system https://github.com/ClicShoppingV3Community/modules_products_info_tab_boostrap
  11. I see the video, it seems enough simple. If I understand well, we must have 2 database, one on oscommerce and one ClicShopping, and follow the process.
  12. Hello, i think there is module dedicated for that, look inside the extension application, I saw something like that.
  13. Hello Julie, You must edit the conf.php inside ClicShoppingAdmin, after you can change the directory.
  14. Hello JKaz, I think ClicShopping/Works template/Download template/Images template/Public must be in 777.
  15. Hi, I would know if you have an opinion about the payment to use, and the best approach in this side ?
  16. I suppose we must use the example template to create a new template ?
  17. Version 1.0.0

    5 downloads

    This apps will allow you to display the shipping price by Colirap (french post) - The language files in English and French Technical Prerequisites: None Modules: - License GPL2 - MIT - Compatibility: >= version 3.0 -No core modification Recommendation and documentation specific use : Important Note Copy the apps_shipping_colirap.json into ClicShopping/Work/Cache/Github (manual installation) Install : http://monsite/myAdmin/index.php?A&Shipping\Colirap Implementation: Activate the module in Shipping All informations about the ClicShopping Community : https://www.clicshopping.org Software : https://github.com/ClicShopping trademark License info : https://www.clicshopping.org/forum/trademark/
    Free
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use