-
Posts
2,027 -
Joined
-
Last visited
-
Days Won
175
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by wakabayashi
-
-
@Mark do you use multistore feature? If yes, select the switch on the top, to update all fields...
-
google search console
wakabayashi replied to colorful-ant's topic in Deutsches Forum - Generelle Fragen
Wir lösen das auch über die Menge. Wenn ein Produkt in Zukunft wieder verfügbar ist, wird es so dargestellt: https://www.spielezar.ch/brettspiele/fluegelschlag. Dieses Produkt kann nur über Google oder die interne Suche gefunden werden. In den Kategorien lassen wir es nicht mehr anzeigen. Dafür waren einige kleinere Änderungen in TB nötig, aber bisher bewährt sich diese Variante bei uns. Ist ein Produkt aber definitiv vergriffen, nehmen wir es von der Seite. Ist die Url irgendwie wertvoll (da Rankings oder Backlinks) wird die Seite sicher irgendwohin weitergeleitet. -
I have never used this module. Seems to be quite old. My guess is, that the problem comes from the module. Two questions: Do you use any module that overrides the reference number? Did this module work correct in prestashop?
-
Which module is used to process the payment? I don't know much about the process, but maybe this module is always assigning the same oder reference? :S
-
Yeah it's not possible there. I am not sure how this urls are generated. Sometimes surely with JS. But why do you wanna change it? For Seo?
-
PrestaCenter XML Export Free Module v1.2.5.1" Stopped working
wakabayashi replied to Binder's question in Module help
What is this module good for? Is this for google shopping? I believe there should be enough (paid) modules, which are working with tb. As far as I understand form ps forum. This module was never really updated for 1.6. If this is true, then it's clear, that it won't work on tb too. -
I would love this too. But I would prefer it to be in the core or at least open source. So in my opinion a crowdfunding project would be better.
-
You really should do this with css and not with inline editor. Styling is the reason, why css was introduced...
-
Such css cases are almost impossible to solve without a link...
-
Which files need to be edited to trim down all Modules in admin?
wakabayashi replied to Billy's question in Module help
I have no idea about such old PS Versions to be honest. I would just try this stuff with a test just and write everything down. Once you have figured out a clean way to do it. You repeat the steps in reality. -
I am not 100% sure, but I would guess that it has to todo with php configuration. I would check your php.ini file.
-
Which files need to be edited to trim down all Modules in admin?
wakabayashi replied to Billy's question in Module help
I would do this hand by hand... Check what is it, if not used, then delete it. -
Which files need to be edited to trim down all Modules in admin?
wakabayashi replied to Billy's question in Module help
Well did you install this modules? If you dont need theme anymore, you could just remove them!? -
Which files need to be edited to trim down all Modules in admin?
wakabayashi replied to Billy's question in Module help
Thats the interesting part. Why is it failing? Do you get any error or so? Never forget to do a clone and test it without risk. Its some time ago, but I once recorded a video about it: -
Which files need to be edited to trim down all Modules in admin?
wakabayashi replied to Billy's question in Module help
I dont understand, what you try to achieve... Are you already on tb? What is not working? You can filter the module list, so that only installed module are showed. -
@Havouza Dont you use Plesk or cPanel? It should be easy to change a php version there... Or is the problem much more complicated than I think?
-
Cloudways Not Suporting ThirtyBees Anymore?
wakabayashi replied to Weasel's question in Technical help
I dont think, we can do much about it. Even if this project is growing and making good progress, its not yet big enough -
What are your experiences with webp. Does it speed up the site a lot?
-
Disable Product Page It is possible?
wakabayashi replied to EduCreativos's topic in Foro en Español - Discusión General
I never have seen such a wish before. I don't think there is a one click solution or so. In general I would remove the links to the product in the tpl files... -
I use the captcha module for contact form. But I wouldnt do that for registration. For me its too risky, that it fails or people cant manage it
-
The key to good search engine results is content. When we have content, we should also optimize meta title and meta description (meta keywords arent important anymore). It can be quite confusing what is a good length for meta title and meta description. Here is a very useful tool that may help you: https://app.sistrix.com/en/serp-snippet-generator
-
So then this seems to be a bug. I has the same in my test setup!
-
Maybe the two installation influence eachother!? Thats why I always use subdomains for testing...
-
<IfModule mod_rewrite.c> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on #Domain: www.chesspoint.ch RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$1$2$3.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/c/$1$2$3.webp [L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.webp %{ENV:REWRITEBASE}img/c/$1$2.webp [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.chesspoint.ch$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] Mine looks like this. You can compare. It's not the same. Maybe there is the issue :S But I am not sure.