Jump to content
thirty bees forum

zen

Members
  • Posts

    431
  • Joined

  • Last visited

  • Days Won

    60

Posts posted by zen

  1. I Just update the archive file on my  previous post here

    Now it handles this too :

    - custom text in top of pages + text align (left, center, right) + Font-Weight (light, normal, bold, bolder)

    - custom text in home page (if needed you can change the position in bo > modules > position )

    🙂

     

    In order to be able to have radio buttons without much change, I needed to modify one file in admin theme :

    admin_directory/themes/default/template/helpers/options/options.tpl

    change line 166 {$v} to {$v['label']} like below

    159:									{elseif $field['type'] == 'radio'}
    160:										<div class="col-lg-9">
    161:											{foreach $field['choices'] AS $k => $v}
    162:												<p class="radio">
    163:													{strip}
    164:													<label for="{$key}_{$k}">
    165:														<input type="radio" name="{$key}" id="{$key}_{$k}" value="{$k}"{if $k == $field['value']} checked="checked"{/if}{if isset($field['js'][$k])} {$field['js'][$k]}{/if}/>
    166:													 	{$v['label']}
    167:													</label>
    168:													{/strip}
    169:												</p>
    170:											{/foreach}
    171:										</div>

     

  2. 11 hours ago, Theo said:

    Hi

    Using 30Bz 1.1.0 Naria theme:
    On a Blog Post: It seems that the images for related products are not being displayed...

    I see this has been asked here as well - any solution?
    https://forum.thirtybees.com/topic/3505-niara-theme-glitches-discussion/?tab=comments#comment-30768

    Note: this appears to be working in the Community Default theme though.

     

    Here is a quick correction, but it will need to be modify in the source files too and updated on github with a proper fix.. but here you go for Niara :

    Find the /modules/beesblogrelatedproducts/beesblogrelatedproducts.php

    around line 164 modify the image name "home_default" to "Niara_home"

     

    161:           if ($products) {
    162:              foreach ($products as &$product) {
    163:                   $product['link'] = $this->context->link->getProductLink($product['id_product']);
    164:                   $product['image'] = $this->context->link->getImageLink($product['id_product'], $product['id_image'], 'Niara_home');
    165:               }
    166:           }
    167:           Cache::store($key, $products);

    That will work, but like I said it should be fully modified for Niara or any theme name.. it's under consideration, be patient 🙂

    Thank you for the report by the way !

    • Thanks 1
  3. I am actually working on a beta version of the ultimate theme manager, there is still a lot to be done but what you ask for is already available : changing colors in footer section works for Niara theme 😛

    Please install it and try it and give me feedback in order to improve the ThemeMaster module I am working on for the community

     

     

    thememaster.zip

    • Like 2
    • Thanks 2
  4. 13 hours ago, cienislaw said:

    hmm, it puts products below cart summary - it is intentional?

    hmmm...what do you mean by that ? Can you do a Screenshot ?

    If it is about the total showing before product list, it's normal. To change that it will require some more JS code or to modify shopping-cart.tpl file, because <tbody> is actually after <tfoot> .

    • Thanks 1
  5. Here is some modifications you can do for Niara theme

    modify the "../themes/niara/css/global.css" file starting at line 1848 and replace all the content of the @media  for mobiles by this

    @media screen and (max-width: 767px) {
      .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
      }
      .table-responsive > .table {
        margin-bottom: 0;
      }
        
      .table-responsive table, 
      .table-responsive thead,
      .table-responsive tbody,
      .table-responsive th,
      .table-responsive td,
      .table-responsive tr {
        display: block;
      }
      
      .table-responsive tfoot {
    	display: inline;
      }
      
      .table-responsive > .table > thead > tr > th,
      .table-responsive > .table > thead > tr > td,
      .table-responsive > .table > tbody > tr > th,
      .table-responsive > .table > tbody > tr > td,
      .table-responsive > .table > tfoot > tr > th,
      .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    	border-bottom: 0;
      }
      
      .table-responsive > .table-bordered {
        border: 0;
      } 
      
      .table-responsive .unvisible,
      .table-responsive thead tr, 
      .table-responsive #cart_summary .cart_total_price #cart_voucher {
    	display: none;
      }
      
      .table-responsive .cart_total_price > td#total_product,
      .table-responsive .cart_total_price > td#total_price_container,
      .table-responsive .cart_total_delivery > td#total_shipping  {
    	border-top: 0;
      }
        
      .table-responsive #cart_summary > tbody > tr.cart_item > td.cart_quantity {
    	width: 50%;
    	float: left;
    	border-left: 0;
    	border-right: 0;
    	padding: 0;
    	line-height: 34px;
      }
      
      .table-responsive #cart_summary > tbody > tr.cart_item > td.cart_quantity > .cart_quantity_input {
    	float: left;
    	width: 55px;
    	border: 0;
      }
      
      .table-responsive #cart_summary > tbody > tr.cart_item > td.cart_quantity::before {
    	content: "x";
    	float: left;
    	left: 13px;
    	line-height: 34px;
    	position: relative;
      }
        
      .table-responsive .cart_quantity_button a.btn {
    	border: 0;
    	background-color: #eee;
    	margin-top: 1px;
      }
      
      .table-responsive .cart_quantity_button a.button-minus {
    	margin-right: 10px;
      }
      
      .table-responsive #cart_summary > tbody > tr.cart_item > td.cart_unit {
    	float: left;
    	border-right: 0;
      }
      
      .table-responsive #cart_summary > tbody > tr.cart_item > td.cart_delete {
    	position: relative;
    	bottom: 109px;
    	border: 0;
    	float: right;
    	margin-right: 15px;
      }
      
      .table-responsive #cart_summary > tbody > tr.cart_item:last-of-type {
    	border-bottom: 1px solid #ddd;
      }
    }

     

    It will do the trick....

    • Like 1
    • Thanks 4
  6. 8 hours ago, Mark said:

    Actually I did do this a long time ago in GitHub here https://github.com/thirtybees/thirtybees/issues/947

    @Traumflug@datakick

    Its closed off as being done, but Im not sure if thats the case?

    The Free Shipping issue remains

    I don't have any problem with shipping, as I never use FREE SHIPPING button, but I set to 0 the zones and ranges I want to offer to customer.

    This Free Shipping should maybe be deleted, you'll have clearer vision on how to setup shipping as you like really.

  7. Thank you for the informations, you make me discover a new module.. I will not use it but now I understand, this Json module was unknown for me.

    So from there.. I recommand to disable it and work on your template for rich snippets configuration as u like it, and test it on google tools for perfect fits.

     

     

  8. 7 hours ago, Mark said:

    Its not a case of there being something wrong with my setup so far as I can tell, its a problem requiring code changes to fix the logic around Free Delivery. I guess the next stage is to put this into GitHub so the problem can be dealt with. @datakickdid invite me to do so awhile back, but I didnt because I dont feel like I know the system well enough yet to get this request right.

    Good for you, tell us whenever you'll fix this !

    • Haha 1
  9. I have to admit that I don't know where to start to help you.. you are talking about a module..? I don't use module for metatags, it works without the need of it if you setup correct product.tpl file and product-list.tpl.

    Give me more details and try to make your question more precise so I can understand your need for real, waiting for reply ...

     

  10. 3 hours ago, iBrains said:

    Hello there
    I'm setting up a shop, that has to be displayed in Danish.
    The localization works for the most part, but right now I am having a hard time figuring out how to translate the "title" that is presented online for each module.

     

    For Featured Products, you have to go to Localization > Translate

    choose modules and Niara Theme.

     

    From there :

    Our =  
    featured =  
    products =  
     

    Fill the forms to what you want to show in the front page.

  11. If you invest enough energy into this problem, I am sure you can fix it by yourself, there is plenty of tutorials or informations available online, it takes time.. but not impossible.

  12. moving from one solution to another is always a risk, it has to be really well done.

    Good that things are finally moving in the right direction.. do you still have errors that can be fixed ?

    I personnaly don't use any of SEO module or Meta Tag manager, it's not needed if your template is well done, remember to be really up to date with the Google Rules, they change sometimes and nobody tells you  ^^

×
×
  • Create New...