Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    1,954
  • Joined

  • Last visited

  • Days Won

    149

Everything posted by wakabayashi

  1. wakabayashi

    modify url

    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?
  2. 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.
  3. 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.
  4. wakabayashi

    Font Size

    You really should do this with css and not with inline editor. Styling is the reason, why css was introduced...
  5. wakabayashi

    Font Size

    Such css cases are almost impossible to solve without a link...
  6. 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.
  7. I am not 100% sure, but I would guess that it has to todo with php configuration. I would check your php.ini file.
  8. I would do this hand by hand... Check what is it, if not used, then delete it.
  9. Well did you install this modules? If you dont need theme anymore, you could just remove them!?
  10. 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:
  11. 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.
  12. @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?
  13. I dont think, we can do much about it. Even if this project is growing and making good progress, its not yet big enough
  14. What are your experiences with webp. Does it speed up the site a lot?
  15. 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...
  16. 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
  17. 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
  18. So then this seems to be a bug. I has the same in my test setup!
  19. Maybe the two installation influence eachother!? Thats why I always use subdomains for testing...
  20. <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.
  21. You would need to to this with css: #categories_block_left ul li { font-size: 30px; } Probably its easiest if you add this to categories.css Or alternative you add to the tpl: <style> #categories_block_left ul li { font-size: 30px; } </style>
  22. I am no expert on this... Does your rewrite happen in htacces or do you use nginx server?
  23. You would need to change the blockcategories.tpl <h4 class="title_block">{if isset($currentCategory)}{$currentCategory->name|escape}{else}{l s='Categories' mod='blockcategories'}{/if}</h4> to <h4 class="title_block">{l s='Categories' mod='blockcategories'}</h4>
  24. Have you disabled seo rewrite? (just for testing ofc)
  25. Maybe you want this: {if $product.quantity > 0 && $product.allow_oosp == 1} Does this work?
×
×
  • Create New...