Jump to content
thirty bees forum

zen

Trusted Members
  • Posts

    439
  • Joined

  • Last visited

  • Days Won

    68

Posts posted by zen

  1. 5 hours ago, SLiCK_303 said:

    @zen, please make a new topic for your thememaster module, as you've highjacked this thread, and your module deserves it's own topic.

    I'll have several questions for you about your module once you make your new topic

    Yes.. you are right, I'll start a thread for this module and work on it with the help of people who like to test or have New ideas.

  2. 29 minutes ago, lovelygifts said:

    Much appreciated and you've feedback so I'm happy to trust. I've certainly no idea how to do this product combination fix anyway. 

    This was not about combinations in fact it was the images Types/ sizes settings that needed a fix... each image sizes were assigned to all types : products, categories, etc.. I put it in order and regenerate pic for categories.

  3. On 10/5/2019 at 2:34 PM, Traumflug said:

    It's better to change it to just "home". Then this module works for other themes as well.

    That's right and the best way to fix it properly !!

     

    16 minutes ago, musicmaster said:

    There is another point. It is one of the core principles of Prestashop that everything still works when you delete .htaccess. And that helps greatly when solving problems.

    That principle is left here. For that reason I consider it dirty programming.

    I never tried Presta without .htaccess, but if you setup "home" as a an image type (after blog module modified) it will work I guess.

  4. 7 minutes ago, Joint Systems said:

    What about PHP-FPM should that be on or off?

    PHP FPM  is usefull to run different version of php for different websites on a server, for example one with php5.5 and another one with php7.2 with apache or nginx running.

    • Like 1
  5. 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>

     

  6. 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
  7. 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
  8. 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
  9. 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
  10. 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.

  11. 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.

     

     

  12. 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
  13. 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 ...

     

×
×
  • Create New...