Everything posted by Patrick
-
Remove the add to cart for Visitors and guests
Yes you can do that.
-
Delay to display new, Specials ... above the products
Hello Manu, You can find this setting in configuration Store and inside the minimum / maximum value. By default, the delay is 30 days.
-
Dashboard Order Map
@Rainer no problemo
-
ClicShopping and php 5.6
5.6 is now too old, php 7 increase the performance and ClicShopping works very well on php 7.3
-
Interac Payment Canada
Yes, the best is to combine 2 or 3 payment, (shipping also) and let the customer to choose. I agree with @Janett
-
Physical shop and virtual shop Quebec
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?
-
Dashboard Order Map
If you want exclude the cancel order, you can add orders_status > 1 and orders_status <> 3
-
3.12 is out
@ClicShopping, You said in your message : security fix on jquery. Is it an update maintenance ?
-
SEO optimization
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/
-
New member : Introduction
Welcome @Cratolib, Do not hesitate to ask a question. Some people can help you.
-
Use smtp configuration
Yes for google the smtp is 587, it was an example. After you must adapt in consequence
-
ClicShopping speed
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.
-
New member : Introduction
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.
-
SEO optimization
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.
-
button delete in review
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.
- New top Dashboard
-
Recommendation to install ClicShopping
@Julie, I agreed, this is the best approach to compare 2 tools on the same server.
-
Apps catalog products barcode
- 5 downloads
- Version 1.0.1
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
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
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.
-
Review in products
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.
-
Newsletter and Email
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.
-
3.11
@ClicShopping Thank you for this information. Yes I think it can be useful to introduce this system inside the application
-
3.11
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.
-
Header template / Shopping with image
@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> '; } ?>