
Patrick
Members-
Posts
244 -
Joined
-
Last visited
-
Days Won
21
Content Type
Profiles
Forums
Blogs
Store
Downloads
Gallery
Everything posted by Patrick
-
Remove the add to cart for Visitors and guests
Patrick replied to Joe's topic in Installation & Configuration & Operation
Yes you can do that. -
@Rainer no problemo
-
ClicShopping and php 5.6
Patrick replied to Rainer's topic in Installation & Configuration & Operation
5.6 is now too old, php 7 increase the performance and ClicShopping works very well on php 7.3 -
Yes, the best is to combine 2 or 3 payment, (shipping also) and let the customer to choose. I agree with @Janett
-
I think you have some open source cash software. But you can use payment system as square, I think it proposes something similar. Else, you can use an ERP like Oddo, it can make that?
-
If you want exclude the cancel order, you can add orders_status > 1 and orders_status <> 3
-
@ClicShopping, You said in your message : security fix on jquery. Is it an update maintenance ?
-
A thread has some interesting tool about SEO. I invite you to read : https://www.clicshopping.org/forum/topic/2-interesting-tool-to-analyse-your-website/
-
Welcome @Cratolib, Do not hesitate to ask a question. Some people can help you.
-
Use smtp configuration
Patrick replied to Patrick's topic in Best pratices / tip / trips and training
Yes for google the smtp is 587, it was an example. After you must adapt in consequence -
First activate the cache Second you can use htaccess to insert some element inside. Use a website like gtmetrix, it can tell you some informations to increase your website speed.
-
Hi everybody, Welcome to the forum it's new, so you have to let the time to get it to know and talk around you. The solution evolves quickly, it is young and still contains some bugs no very important, but the commit advance quickly. Whatever solution you want to use, take the time to learn and understand how it works. Some have a little more experience and will help you. For my part, I welcome you.
-
It's not simple and I am not a specialist on that. Just in the first time, you must fille in communication / SEO and product / seo tab, for example, this element. You must also check if the tag title and description is activated in configuration module / network. You can also include in google console all the sitemap this is the first thing to make. After in your products description, you must have, I think more 300 words, not sure, but google like the content. At the end, you must make some link to go to your website. It's a big work. Ah I forget in Configuration, you must activate the SEO rewriting You can start by this way, after you must adjust in consequence about your description, title tag.
-
Yes, there is a delete comment button for the customer. The reason is about the grdp. The customer must have the control of this information. if you want to delete this features, you can comment the code displaying the delete button.
-
looking the file, there is 6 hooks allow that out of stock stock warning newsletter product expected Review MemberB2B Looking the code, the hook appears only if the condition is correct and as Drack code above, it's easy to make another one.
-
Recommendation to install ClicShopping
Patrick replied to Mathias's topic in Installation & Configuration & Operation
@Julie, I agreed, this is the best approach to compare 2 tools on the same server. -
Version 1.0.1
5 downloads
This apps will allow to display a code bar inside in your products admin and Catalog in the product description Some codebar configuration can be used (see the photo) : C128 C25 MSI EAN UPC C39 Codabar ... You can create different template This module contains The language files in English and French The css file in French and English The module Modules: Technical Prerequisites: None License : GPL 2 - MIT Compatibility: >= version 3.0 Multi languages Recommendation and documentation specific use : The module is installed in the Default template. If you have another template, you must copy the sources files inside your new template (only sources directory). Manual Implementation: Activate the module in admin : http://localhost/clicshopping_test/Shop/ClicShoppingAdmin/index.php?A&Catalog\ProductsBarCode Activate the module in shop : https://monsite/myAdmin/modules.php?set=modules_products_info Copy the apps_catalog_products_barcode.json into ClicShopping/Work/Cache/Github (manual installation) All informations about the ClicShopping Community : https://www.clicshopping.org Software : https://github.com/ClicShopping Trademark License info : https://www.clicshopping.org/forum/trademark/20.00 EUR -
Recommendation to install ClicShopping
Patrick replied to Mathias's topic in Installation & Configuration & Operation
I am not an expert on that, I think the default chunk of memory for PHP is 64MB. Looking at the information above, also what I am I think you can be quiet. But on the cloud, I think, it's an advantage because the storage, memory can be extended. -
Recommendation to install ClicShopping
Patrick replied to Mathias's topic in Installation & Configuration & Operation
Looking more information about that, I found this useful information : https://alexwebdevelop.com/monitor-script-memory-usage/ It explains in details the concept memory_get_usage() AND memory_get_peak_usage() with some example. -
Hello, Look in your menu Design / Products description if you have a module to install about the review. Maybe is not installed by default. Otherwise, you can look on the marketplace or inside admin extension the module about the products description review.
-
At any time, the customer must have control of these data. If it's impossible to allow the customer to change a setting then you must precise the process to contact you to change the setting.
-
@ClicShopping Thank you for this information. Yes I think it can be useful to introduce this system inside the application
-
Hi @ClicShopping , Thank you for your work I just see you an update. Could you tell me more about the product length; Why do you make an app ? Tk.
-
@Julie, This code can help you, replace the product name by this : <?php $products = $CLICSHOPPING_ShoppingCart->get_products(); foreach ($products as $k => $v) { $name = $v['name']; $image = HTML::image($CLICSHOPPING_Template->getDirectoryTemplateImages() . $v['image'], HTML::outputProtected($name), 50, 50, null, true); echo ' <div class="row"> <div class="col-md-12"> <li class="headerMultiTemplateDefaultLi"> <div class="float-md-left">' . $v['quantity'] . ' - ' . $name . '</div> <div class="float-md-right text-md-right">' . $CLICSHOPPING_Currencies->display_price($v['final_price'], $CLICSHOPPING_Tax->getTaxRate($v['tax_class_id']), $v['quantity']) . '</div> </li> </div> </div> '; } ?>