Skip to main content

Posts

Showing posts from July, 2024

Perfect E-Commerce Marketplace with All Success Tools

 Perfect E-Commerce Marketplace with All Success Tools To establish a successful e-commerce business you will need... ⚡A system to manage your products and inventory transactions ⚡A WOW looking marketplace  ๐Ÿ”ตto attract your customers eyes  ๐Ÿ”ตand to be easy to navigate ๐Ÿ”ตand to support many languages ๐Ÿ”ตand to be supported with major payment methods ⚡Manage your invoicing and sales through your system ⚡Optimize your marketplace navigation and load time and SEO ⚡A strong email marketing analysis tool inside your system ⚡All of this is available for free by combining:  ๐Ÿ”ตOdoo community ERP  ๐Ÿ”ทwith  ๐Ÿ”ตWoW looking w3 templates and wordpress templates ๐Ÿ”ทwith ๐Ÿ”ตOWL reactive framework to manage customers navigations and selections ๐Ÿ”ทwith ๐Ÿ”ตMajor payment methods that are supported by Odoo cummunity ERP and integrated in your marketplace ๐ŸŒAll of that only with us: kobros-tech.com

E-Commerce Solutions with smartest technologies: Odoo, OWL, Wordpress, and Google Pay

  E-Commerce Solutions with smartest technologies: Odoo, OWL, Wordpress, and Google Pay ๐Ÿ“ขFor all e-commerce ๐Ÿ’ฐ๐Ÿช™ business leaders ๐Ÿ›’๐Ÿ›️: ๐ŸŽ™️If you need a WOW ๐ŸŒ looking website to attract customers eyes, contact us. ๐ŸŽ™️If you need to sell your products and show them in a designed format and organised order, contact us. ๐ŸŽ™️If you need to provide your customers with comfort to inspect your products using any device mobile, laptop, tablet, contact us. ๐ŸŽ™️If your business is popular and you need to make inspecting your website much easier by converting it into a mobile app, contact us. ๐ŸŽ™️If you need a reactive, light, fast, SEO optimized website to appear in search engines, contact us. ๐ŸŽ™️If you have a website or an ERP system and want to connect them with each other, contact us. ๐ŸŽ™️If you want to apply many languages on your website, contact us. ๐ŸŽ™️If you want to make payment through debit and credit cards ultimately secure, contact us.

Create mail alias in odoo

 Create a mail alias in odoo  to solve that error: Explainn in log "create an appopriate mail.alias or force the destination model" Settings  >  Email  >  Aliases  >  add alias email to your domain name Settings >Technical > System Parameters > key: mail.bounce.alias, value: bounce Settings >Technical > System Parameters > key: mail.catchall.alias, value: catchall Settings >Technical > System Parameters > key: mail.catchall.domain, value: example.com

Remove last commit from remote Git repository

 Remove last commit from remote Git repository # remove commit locally git reset HEAD^  # only remove it from the remote # deprecated git push origin +HEAD^:"$name_of_your_branch" # e.g. +HEAD^:master # new git push origin +HEAD~:refs/heads/$name_of_your_branch  # e.g. git push origin +HEAD~:refs/heads/master # Some shells interpret the ^ character. For those shells, either quote/escape or use ~ HEAD\^ 'HEAD^' HEAD~

How to dynamically load a JS file in JavaScript

How to dynamically load a JS file in JavaScript   https://www.educative.io/answers/how-to-dynamically-load-a-js-file-in-javascript function  loadJS ( FILE_URL ,   async   =   true )   {    let  scriptEle  =  document . createElement ( "script" );   scriptEle . setAttribute ( "src" ,   FILE_URL );   scriptEle . setAttribute ( "type" ,   "text/javascript" );   scriptEle . setAttribute ( "async" ,   async );   document . body . appendChild ( scriptEle );    // success event    scriptEle . addEventListener ( "load" ,   ()   =>   {     console . log ( "File loaded" )    });     // error event   scriptEle . addEventListener ( "error" ,   ( ev )   =>   {     console . log ( "Error on loading file" ,  ev );    }); } loadJS ( "file1_path" ,   true ); // If we set async false, file2 is loaded and exec uted first, then file3 will be loaded  loadJS ( "file2_path" ,   false );   loadJ