Jump to content
thirty bees forum

tommat

Members
  • Posts

    83
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by tommat

  1. Have you done it in modules/blocknewsletter/blocknewsletter.tpl or in theme/yourtheme/modules/blocknewsletter/...
  2. Those are modules. Look into yourdomain\themes\community-theme-default\modules for modules html and yourdomain\themes\community-theme-default\css\modules for modules css Also in backoffice look for Modules/Positions to see where modules are hooked
  3. tommat

    Text Attribute

    Maybe this one: https://addons.prestashop.com/en/combinaisons-customization/17415-customization-prices.html
  4. tommat

    Data Base Error

    You can do it with any other softaculous software, just to see db settings
  5. You are welcome. Glad you like it 🙂
  6. I meant you have file upload limits on server. Check with phpinfo
  7. And there you can click Generate button and it will copy your new name to friendly URL
  8. @cienislaw Demo wasn't updated for quite some time. I did it now and you can check it 🙂
  9. Problems with AEUC module are fixed and uploaded to gumroad. If you don't want to download whole package, you can download attached file and create this folder structure in theme themes\niara\modules\advancedeucompliance\views\templates\hook and paste flie in hook folder. hookOverrideTOSDisplay.tpl Many thanks to toplakd for pointing out the problem and help with testing.
  10. I know its right 9000px. That's because checkboxes are not stylable by default. So you have to move original checkboxes out of the way and replace them by some other style. I checked and it should work (see attached image) Maybe cache is a problem. Is it possible to see your site?
  11. Thanks. Can you tell me what browser you are using please
  12. @toplakd Can you be more precise please. What terms on which page?
  13. You can add class to global.css #category .price{ display:none; }
  14. @koraledrewniane Yes, it's a bug, sorry for that. Please open file themes\niara\modules\wtblockbestsellers\views\templates\hook\wtblockbestsellers-home.tpl and change: {l s='most'} to {l s='most' mod='wtblockbestsellers'} That should fix it.
  15. Seane, do you know that javascript files for your theme resides in yourtheme/js/ and your theme modules javascript is in yourtheme/js/modules ? javascript for homeslider is in yourtheme/js/modules/homeslider/js/homeslider.js
  16. Pedalman, sorry for my late reply but i was quite busy lately and i somehow missed your post. My theme is built on TB community theme, so if Leos page builder support TB theme it should probably support my theme Same goes for JSON module.
  17. This works for me for arrows : #homepage-slider .bx-wrapper .bx-next, #homepage-slider .bx-wrapper .bx-prev{ top: 50%; width: 30px; height: 30px; } You must do this in yourtheme/css/modules/homeslider/homeslider.css
  18. Try !important rule. example: p { color: red !important; }
  19. Sorry, i forgot how that module was made and i was not at comp at the time of writing a reply. One option is to add class with jquery.
  20. You needto do it in yourtheme/modules/blocktopmenu/blocktopmenu.tpl
  21. https://creativegeniuslaw.com/why-you-cant-charge-clients-paypal-fees-what-to-do-about-it/
  22. tommat

    Birthday.....

    Code is in identity.tpl authentication-create-opc.tpl authentication-create.tpl order-opc_new_account.tpl order-opc_new_account-advanced.tpl It looks like this: <div class="form-group date-select"> <label>{l s='Date of Birth'}</label> <div class="row"> <div class="col-xs-4"> <select name="days" id="days" class="form-control"> <option value="">-</option> {foreach from=$days item=v} <option value="{$v}" {if ($sl_day == $v)}selected="selected"{/if}>{$v}&nbsp;&nbsp;</option> {/foreach} </select> </div> <div class="col-xs-4"> {* {l s='January'} {l s='February'} {l s='March'} {l s='April'} {l s='May'} {l s='June'} {l s='July'} {l s='August'} {l s='September'} {l s='October'} {l s='November'} {l s='December'} *} <select id="months" name="months" class="form-control"> <option value="">-</option> {foreach from=$months key=k item=v} <option value="{$k}" {if ($sl_month == $k)}selected="selected"{/if}>{l s=$v}&nbsp;</option> {/foreach} </select> </div> <div class="col-xs-4"> <select id="years" name="years" class="form-control"> <option value="">-</option> {foreach from=$years item=v} <option value="{$v}" {if ($sl_year == $v)}selected="selected"{/if}>{$v}&nbsp;&nbsp;</option> {/foreach} </select> </div> </div> </div> you need to comment this out.
  23. What about TB module Advanced EU compliance?
×
×
  • Create New...