BurnEngine (Pavilion 2) BETA bugs

ThemeBurn SupportForumsOpenCart ThemesPavilion OpenCart ThemeBurnEngine (Pavilion 2) BETA bugs

This topic has been marked as not resolved.

@adimpacto

1) Stock status is shown only if the product is “Out of stock” (quantity = 0).

2) Sticky header can use either a single row layout (minimal) or the existing header one. You can control the order and visibility of the blocks with some custom classes:

// Minimal style

tbStickyShow - the block is visible only in the sticky header
tbStickyPosition-N - (0 < N > 9) use this class to order sticky header blocks

// Default style

tbStickyHide - hides the element (row, block) in sticky header
tbStickyOnly - hides the element (row, block) if the header is not sticky

3) Thanks for the suggestion, will add this option for sure.

January 19, 2016 at 12:45 pm #44447

@axanne,
@ultimatia

We will update compatibility patches of most used extensions(Mega Filter PRO, Ajax Quick Checkout), once the BETA is released as final.

The problem with the non AJAX refresh of the products is most likely caused by missing JS. Maybe the code is not inserted at all (different vqmod matching string).

Product listing layout bug should be solved, if you call this function on each filter refresh:

tbApp.triggerResizeCallbacks();

BR,
ThemeBurn team

January 19, 2016 at 1:01 pm #44448

@ultimatia

Can you please grant us access, so we can check the percentage bug?

January 19, 2016 at 1:02 pm #44449

Thank you ThemeBurn!

Inlogdetails:

I have no idea what is causing this problem. I insert the products with the module Bulk Product Update Pro.

Best regards.

January 19, 2016 at 2:38 pm #44468

Ps: I tried your solution for solving the Product listing layout bug, but I dont think it is working so I will wait when you make compatibility patches. Ofcourse you may also test on my site if you want. It is a develop/ test site.

  • This reply was modified 3029 days ago by  ultimatia.
January 19, 2016 at 5:16 pm #44470

@TB Support

Have anyone noticed it is not able to SAVE a HTML block???

 tecoad
January 19, 2016 at 9:58 pm #44475

developers are not answering any question long time. i hope they can release this as soon as possible.

January 19, 2016 at 10:40 pm #44476

I have a problem by editing an HTML block. Console says: Uncaught SyntaxError: Unexpected token -

 tecoad
January 20, 2016 at 3:58 am #44477

Great, thank you for the clarification, TB Support. Do you know already, when you will release the next beta or the final version?

@tecoad:
Can not confirm the problem. HTML box works fine for me. Can save the box and it is also shown. The error messages indicates, that some open/close tags are not properly set. Maybe you or somebody else modified the original code?

  • This reply was modified 3028 days ago by  axanne.
 axanne
January 20, 2016 at 5:03 pm #44483

Another quick question:

Is there a way in the page builder to address specific products? Like in the same way as categories? Btw. very good builder for the product page! I love the new image plugin and the customization of the product page. Good job, guys!

 axanne
January 20, 2016 at 7:42 pm #44487

@TB Support and @axanne :

I have not modified anything. Using 2.1.0.1
Just found that this error doesn’t happen using English as language. But as I am using Portuguese-br. Console shows it reffers to the piece of code below:


$(document).ready(function() {

  $("#widget_settings_holder").find(".tbLanguageTabs").first().tabs();

    var cmpt-br = CodeMirror.fromTextArea(document.getElementById("text_widget_text_pt-br"), {
    mode:        "htmlmixed",
    lineNumbers: true,
    tabMode:     "indent"
  });
  
  $(tbApp).off("tbWidget:onUpdate.textWidget").one("tbWidget:onUpdate.textWidget", function(event, $widget, $form) {

    if ($widget.attr("id").split("_")[1] != "HtmlWidget") {
        return;
    }

        cmpt-br.toTextArea();
        $form.find("textarea[name$='[text]']").each(function() {
      $(this).val(utf8_to_b64($(this).val()));
    });
  });

});

What am I suposed to do?

  • This reply was modified 3028 days ago by  tecoad.
 tecoad
January 21, 2016 at 12:35 am #44489

@TB Support and @axanne :

Just found this:
BurnEngine/admin/view/template/widget/html.tpl

var cm<?php echo $language['code']; ?> = CodeMirror.fromTextArea(document.getElementById("text_widget_text_<?php echo $language['code']; ?>"), {

this won’t work since some use languages such as pt-br. Javascript doesn’t allow dashes in the name of variables.

 tecoad
January 21, 2016 at 1:28 am #44491

@tecoad

You need to replace this string (2 places):

cm<?php echo $language['code']; ?>

with:

cm<?php echo str_replace('-', '_', $language['code']); ?>

Thanks for finding this issues.

January 21, 2016 at 12:30 pm #44495

@axanne

1) Hopefully, we will release BE as final until the end of the month

2) For the moment, the only way to have different products with different design is to use OC layouts. You need to create a layout, insert product/product as a route (to show correct system blocks) and attach the layout to a product (or products).

BR,
ThemeBurn team

January 21, 2016 at 12:32 pm #44496

I found a new small bug:

When loading the website in a small size (for example mobile view) Font Awesome is nog loading
See also this screenshot: http://prntscr.com/9sx9rz

Error in consolelog:
Font from origin ‘http://x&#8217; has been blocked from loading by Cross-Origin Resource Sharing policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://x&#8217; is therefore not allowed access.

Br, Ultimatia

January 21, 2016 at 3:24 pm #44497
Viewing 15 posts - 76 through 90 (of 279 total)
  • The topic ‘BurnEngine (Pavilion 2) BETA bugs’ is closed to new replies.