
Manupichu
Members-
Posts
27 -
Joined
-
Last visited
-
Days Won
1
Manupichu last won the day on March 19 2019
Manupichu had the most liked content!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Manupichu's Achievements
Newbie (1/14)
6
Reputation
-
Reorganized administration menu
Manupichu posted a topic in Installation & Configuration & Operation
Hello, Do you recommend to reorganized the administration menu. In my case, I do not want to move a menu to another sub categories, just the sort order. -
Do you recommend to install ClicShopping in dev ?
-
Hello, If we can have the both, it will be ideal.
-
Php 8.0 is out now.
-
sitemap modules sitemap tree manufacturers
Manupichu reviewed ClicShopping's file in modules_sitemap
-
For me it's not so important, I use google analytics. A little fix later.
-
PHP 7.4 - report if you see a problem
Manupichu replied to ClicShopping's topic in Community Developement
About the preload, I take time to read, and I more moderate on that. Depends of the site, it can increase or not the website. I do not know if it will be implemented inside ClicShopping, we will see. -
Remove Button buy and details
Manupichu replied to CoucheTard's topic in Installation & Configuration & Operation
Hello, Look the Configuration / B2B or B2C Also you have an option on every module products listing to remove the button -
How to sell product via social media platform?
Manupichu replied to Orphelia's topic in Optimization / Marketing
I think o the marketplace there is an apps based on Twitter. I looked the image and it seems you can push your product on twitter with a link on your product description. Seems to be a good first approach ? -
Db installation problem
Manupichu replied to Slatan's topic in Installation & Configuration & Operation
Hello @Slatan, Do you create a db inside your phpadmin. If you have not this db, you can not continue to install ClicShopping. look this article. It can help you to finalize the process. https://www.clicshopping.org/forum/blogs/entry/4-clicshopping-installation-process/ https://www.clicshopping.org/forum/blogs/entry/5-secure-clicshopping/ -
@ClicShopping, Thank you for this udapte. I will make the migration !!
-
Yes, of course A very simple approach. Inside modules_header/template/ add this files below After go in your administration Design/Layout/Header, edit your multi-template option and select your new template This example displays the logo and the login link and log off link if you are connected. create a file: my_new_header_test.php add this inside : <?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 * @Info : https://www.clicshopping.org/forum/trademark/ * */ use ClicShopping\OM\HTML; use ClicShopping\OM\CLICSHOPPING; ?> <div class="col-md-<?php echo $content_width; ?>"> <div class="row"> <div class="separator"></div> <span class="col-md-4"><?php echo $logo_header; ?><br /><br /></span> <?php if (!$CLICSHOPPING_Customer->isLoggedOn()) { ?> <span class="col-md-8 text-md-right"><?php echo HTML::link(CLICSHOPPING::link(null, 'Account&Login'), CLICSHOPPING::getDef('modules_header_multi_template_create_account')); ?></span> <?php } else { ?> <span class="col-md-8 text-md-right"><?php echo HTML::link(CLICSHOPPING::link(null, 'Account&LogOff'), CLICSHOPPING::getDef('modules_header_multi_template_account_logoff'));?></span> <?php } ?> </div> </div>
-
Yes, exact