-
Posts
398 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by Beeta
-
is it possible to populate that field during the CSV import?
-
Yes, that's an alternative I'm evaluating too. How can prestabay be compatible with TB 1.1.x?!
-
Hello, any merchant here that is using FastBay with TB? I'm evaluating some module to sync product/orders with ebay and I'm interestend on the prestalia's module. https://addons.prestashop.com/en/marketplaces/22453-fastbay-ebay-marketplace-synchronization.html?pab=1&
-
@hubbobubbo said in Send Review Request module: My two cents. If you pass the email of the customer in the request uri of the link then when you get to the review form you know the email of the user but not the password and this is fine. Then when the user enters the review on the shop we only have to confirm that a user with this email has bought this product. If so, the review is allowed. I think that approach is simpler than forcing a login. In my current shop I do not even have a review button on product.tpl. The only way to access the review form is through the email link. this is a great idea
-
@slick_303 said in Send Review Request module: @FooLab It's not up this this module to determine that or not. It's up to either productcomment or revws, and how you have the 'Allow guest reviews' set. My question is not related to guests, but to a special link that makes customers able create a review associated to them through a specific link (with a token) without the need of logging in with user and password. Maybe it should be a core feature (re-usable and extendable from modules) to do so securely.
-
@SLiCK_303 good job! I have a question/request: once the product link is clicked, the customer need to login? if not, is there a way to make the product link unique with a token and make the user create the review without the need of logging in? Small shop are not like Amazon/eBay and I think that many customers will bounce if they need to log in (from smartphone for example).
-
@wakabayashi said in Planned Free Module: Loyalty Points: A customer can also achieve levels. I would call this feature gamification. This will be similair to coupons, but it’s just a symbolic reward. If an user reaches certain amounts of points, he will become a “super ninja”. Probably I will add icon functionality as well. how about reach level in a timely manner? example: The customer reaches "level2" if buy more than 399$ in the year 2018 or in the last 12 months (or a customizable number of days/month). After that time if the customer doesn't reach the "target" came back to level1. @wakabayashi said in Planned Free Module: Loyalty Points: Coupons: if a customer has reached a ceratain amount of points, he will receive a coupon. Are the coupon the core cart rules, right? if yes this could be useful because with the: https://forum.thirtybees.com/topic/1413/free-module-simple-vip-card you could give away a VIP card if a customer reaches a specific level.
-
@lesley said in 19 Patron ?!: As a note we have added a paypal donation button to the side column of the blog and the blog posts, https://thirtybees.com/blog/ So if patreon was holding anyone back, we have that option now. how about making the sidebar sticky, so if the user scrolls the page, the sidebar will be always visible. examples: https://webdesign.tutsplus.com/tutorials/sticky-positioning-with-nothing-but-css--cms-24042 https://abouolia.github.io/sticky-sidebar/
-
@lesley said in Upgrade to latest source: Did you make sure you copied over the admin directory? You needed to rename it from admin-dev I deleted the old admin directory and then renamed "admin-dev" to the old directory name. Now I went back to a backup, I'm going to try again next week.
-
this is my nginx configuration: ``` server { servername new.domain.com www.new.domain.com; listen xxx.xxx.xxx.xxx; root /home/domain/domains/new.domain.com/publichtml; index index.html index.htm index.php; accesslog /var/log/virtualmin/new.domain.comaccesslog; errorlog /var/log/virtualmin/new.domain.comerrorlog; fastcgiparam GATEWAYINTERFACE CGI/1.1; fastcgiparam SERVERSOFTWARE nginx; fastcgiparam QUERYSTRING $querystring; fastcgiparam REQUESTMETHOD $requestmethod; fastcgiparam CONTENTTYPE $contenttype; fastcgiparam CONTENTLENGTH $contentlength; fastcgiparam SCRIPTFILENAME /home/domain/domains/new.domain.com/publichtml$fastcgiscriptname; fastcgiparam SCRIPTNAME $fastcgiscriptname; fastcgiparam REQUESTURI $requesturi; fastcgiparam DOCUMENTURI $documenturi; fastcgiparam DOCUMENTROOT /home/domain/domains/new.domain.com/publichtml; fastcgiparam SERVERPROTOCOL $serverprotocol; fastcgiparam REMOTEADDR $remoteaddr; fastcgiparam REMOTEPORT $remoteport; fastcgiparam SERVERADDR $serveraddr; fastcgiparam SERVERPORT $serverport; fastcgiparam SERVERNAME $servername; fastcgiparam HTTPS $https; location ~ .php$ { tryfiles $uri =404; fastcgipass 127.0.0.1:8012; } listen xxx.xxx.xxx.xxx:443 ssl; sslcertificate /home/domain/domains/new.domain.com/ssl.cert; sslcertificatekey /home/domain/domains/new.domain.com/ssl.key; ## rewrite rules for prestashop/thirtybees location / { index index.php; rewrite ^/api/?(.*)$ /webservice/dispatcher.php?url=$1 last; rewrite ^/([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$1$2.jpg last; rewrite ^/([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$1$2$3.jpg last; rewrite ^/([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$1$2$3$4.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$1$2$3$4$5.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9.jpg last; rewrite ^/c/([0-9]+)(-[_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ /img/c/$1$2.jpg last; rewrite ^/c/([a-zA-Z-]+)(-[0-9]+)?/.+\.jpg$ /img/c/$1.jpg last; rewrite ^/([0-9]+)(-[_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ /img/c/$1$2.jpg last; try_files $uri $uri/ /index.php?$args; } }```
-
@slick_303 I'm using the default theme and the last four rows are: <lazy_load>1</lazy_load> <high_dpi>1</high_dpi> <webp>1</webp> </theme>
-
@lesley said in Upgrade to latest source: Are the permissions set correctly on the module? I chmodded to 775 directory and files and I'm getting the same error. @slick_303 said in Upgrade to latest source: I find it strange you are getting a FastCGI error when you are on fpm. Have you tried changing your php to FastCGI and see what happens? It's a configuration in Virtualmin, I'm on FPM (TCP connection and not Socket) Have you tried just deleting the statsmodule folder? You'll need it after you get things working, but just for now.... Now I deleted and the error about is not logged anymore... but I still get a 500 error page on TB back office (without specific info about the error). Before the migration to 1.0.4 did you get your cloned site fully working? Yes was fully working. Now I'm getting: 2018/02/08 01:12:59 [error] 27709#27709: *11509 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: lazy_load in /home/domain/domains/domain.com/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 76 PHP message: PHP Notice: Trying to get property of non-object in /home/domain/domains/domain.com/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 76 PHP message: PHP Notice: Undefined index: lazy_load in /home/domain/domains/domain.com/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 76 But I think is related to browsing the front end.
-
ok, I just finished following the article, the front end is working but I'm getting a 500 error logging in to the back office. This is the error on nginx logs: 2018/02/07 10:01:29 [error] 2468#2468: *2921 FastCGI sent in stderr: "PHP message: PHP Fatal error: Class 'ModuleStats' not found in /home/domain/domains/new.domain.com/public_html/modules/statsmodule/statsmodule.php on line 551" while reading response header from upstream, client: 79.12.245.69, server: new.domain.com, request: "GET /admin3892b5trc/index.php?controller=AdminModules&token=29fb394ab861c81bbeb0c6d5ddfc9d63 HTTP/2.0", upstream: "fastcgi://127.0.0.1:8012", host: "new.domain.com", referrer: "https://new.domain.com/admin3892b5trc/index.php?controller=AdminDashboard&token=ac94432f16559f611a6f76f6ae98a0a6" I double checked the statsmodule and I confirm that is uploaded in modules dir. Permissions seems ok. Another error on error.log is: 2018/02/07 10:06:28 [error] 2468#2468: *2921 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: lazy_load in /home/domain/domains/new.domain.com/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 76 I'm on a Debian 8: php 5.6.x (phpfpm) nginx 1.10.x
-
I'm upgrading right know so I can report some bugs if found.
-
how about moving this to Tips and Tricks? ...or add it to the core?
-
@okom3pom said in [Free Module] Simple Vip Card: @FooLab How about the possibility to remember to customers that the VIP Card is expiring on the website when logged ? Where is the best way for you ? In the new version i add a new ShoppingCart hook to propose the vip card if card is expired or not a vip customer but i can add this information on an other hook / page ? Before i put a new version I thought about mail reminders... something like 30 days and 7 days before expiring and then when expired. Plus an overlay when the customer log in. how about an "mini" html widget "hookable" with the count of how much have you saved (if the customer have already a VIP Card) and/or invite guests and "not vip card owners" to get it. In the customer Vip Card page with a countdown on how many days remain and a counter on how much the customer has saved using the VIP Card. :astonished:
-
how about adding a customer to a group after a specified number of reviews (within a timeframe?)? I think that customer groups is a features very undervalued if you want to create a community around the shop.
-
Very useful! With this, you could make something like Amazon Prime o Zooplus Spar program, right? Customers can buy the VIP Card and then for a year (or more/less) they have discounts or benefits. How about the possibility to remember to customers that the VIP Card is expiring (on the website when logged and by mail)?
-
@mdekker said in Is the forum thirtybees already in google playstore / App Store ...?: Good question. We can almost make it behave like a native app, so no need to be in the play store. This forum software is NodeBB. There have been a few projects to make push notifications work with OneSignal, but I don't know the status of that. https://community.nodebb.org/topic/10293/request-onesignal-for-nodebb Onesignal is free but sell customers information... how about Telegram? https://github.com/NodeBB-Community/nodebb-plugin-telegram-notifications https://community.nodebb.org/topic/6585/nodebb-plugin-telegram-telegram-notifications-on-nodebb
-
I found some some info about this possibility here: https://coderwall.com/p/2q5lcw/prestashop-background-cron-csv-products-import https://coderwall.com/p/fwoaqq/prestashop-background-cron-csv-products-import-modified and here: https://pastebin.com/YYMdkZj1 I really can't understand why the Prestashop dev team never added the possibility to set a specified URL (with a private key) related to import configurations to be easily set up as import cronjobs. Is because is difficult to do it or maybe they never thought about it? I found this too (compatible with TB), I think that can help in some way who have no access to the server/cron. https://www.prestatoolbox.com/free-prestashop-modules/115-crontab.html
-
I think that many merchants are only testing TB. I’m testing it a little for a future migration (now the shop is on an old virtuemart - a diecast shop) and in 2019 for my wife’s shop (clothing store). When in production I think I will became a patreon to support this project. Plus AFAIK with 1.0.4 the patreon’s TB page will be visible from the backend so more merchants will be aware of it.
-
I didn't add any HTML TAG, I simply write it the paragraph with new line but in the footer the new like was stripped out. I still not used your solution, it didn't low down security enabling full HTML?
-
Thank you @Lathaneo Can I ask you why the fixes (linked above) I found weren't working? I read this too: https://www.smarty.net/docsv2/en/language.modifier.nl2br.tpl
-
I tried the second solution without success, in first one the code a little different from the TB one.
-
I found this: https://mypresta.eu/en/art/basic-tutorials/line-breaks-in-block-contact-informations-addon.html and this: https://www.templatemonster.com/help/prestashop-1-6-x-allow-line-breaks-module-outputs.html