Jump to content
thirty bees forum

Acer

Trusted Members
  • Posts

    359
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Acer

  1. Ok all sorted now. So this appears to have been a configuration issue on the Site's server in relation to Office 365. Not a ThirtyBees problem. Even though the mail configuration was technically correct, we had to add an additional syntax to the SFP record. As the server is sending the mail on behalf of an email address on Office 365, we had to tell Office that it could trust the server. Bizarre thing is that technically all mails should've landed up in Office 365's Spam or Quarantine box. That didn't happen. Most mails were sent / received successfully. Just some mails went missing when some users did tests and these mails were nowhere to be found. No Spam, nothing in Office 365 error log, etc. Even though all mails were sent from the Shop's email address on the site... Yeah WTF. Always fun running into "magical" IT problems - the ones that are random, only breaks when it wants to, defies logic and understanding, difficult to troubleshoot and hard to explain. Magic. If anyone ever experiences this, this is what we had to add on the DNS/Zone SPF TXT record for the Site's server (added in red): v=spf1 include:spf.protection.outlook.com include:spf.host-h.net -all
  2. Thanks Traum. But nothing in the mail logs. Some of the mails from these users are coming through though. I'd understand if they were all blocked... The thing is that is that as far as I understand it is the actual site email address that's sending these mails and not the user? As some of these forms are in a Lightbox (pulling in the Contact form) and it's using Ajax, could it be Ajax that's causing this? I used Nemo's old tutorial on how to do this. http://nemops.com/prestashop-ajax-contact-form/#.XYN8VSgzaUl But instead of creating the lightbox with 'ajax', I set it to iframe (to increase performance) - could it be this? All mails from the actual Contact form page appears to be working fine though. And for me and others the Lightboxes are always sending... This is the code I use to create the form in the Lightbox: $.fancybox({ type: 'iframe', preload: true, href: getcontactformurl, closeEffect: 'fade', autoDimensions: false, autoSize: false, width: '400px', height: 'auto', async: true,
  3. Hi I've been battling with this one for days now. And it's one of those 'magical' wtf? ones. We've just launched our site, and everything looked fine. Until we tested the Contact forms. Problem: When some users post from the Contact form the mail doesn't land up at admin (or customer service) email box. So they can do 5 test enquiries but only 1 can come through. Sometimes none. However, under emails, the system reported that the mail was sent successfully and there are no errors in the logs or front-end. The system even sends receipts correctly. Other users like myself can do 16 enquiries and have no problems with the mails reaching the customer service mail box. At first I thought it could be an SMTP issue as we were using PHPMail send, but after changing it to STMP, the problem persisted. Local mail send is also disabled on the server. I even got our IT guys to check the mailbox and they're not picking up on any issues. Nothing in Spam / Quarantine. Could it be some sort of relay issue? Is there a way that I can change the from address to always say [email protected] - or will this mess up the email logs? This is an urgent problem as right now we can't be sure that we are receiving all the vital Contact Enquiries... Sorry that I'm emphasizing urgent here and in the page title, is just I don't know what else to do... I'm at a loss here.. Has any one else experienced this problem before? @datakick
  4. Hi I've been battling with this one for a few days now. I'm trying to import a Discount Amount without tax. As my main price is without tax. There is a tax rule though. But what's been happening is that when the system imports, it seems to deduct tax on the Discount Amount, and then I get: (price - newly deducted tax on discount amount = wrong total). I think that it somehow thinks that the price I entered includes tax, when in fact it doesn't. But, I'm still not sure why it would deduct tax in the first place as my amount is set to excluding tax? Is there a way to modify AdminController or a setting something in the backend, to tell it that is should not deduct tax on the discount amount? Or is there somewhere I can modify some core code to set the default "discount amount tax behaviour" that you see in the Product page, to select Tax Excl, and not Tax incl? I have a lot of products and it is not viable to change each product manually in the backend (where I see that it allows you to set the discount amount to either include / excl tax). I've seen this old PS post, but I'm not sure if this is the correct solution? https://www.prestashop.com/forums/topic/296338-how-to-disable-tax-on-amount-of-discount/?tab=comments#comment-1497024 Your assistance is appreciated. Has anyone else here encountered this? @datakick @Traumflug
  5. Indeed, this is exciting news. Hope it works out well too
  6. Acer

    Goodbye

    Ok, this is pretty good news!
  7. Acer

    the "best" theme

    Hi Welcome to Thirty bees. For me personally the "best modern theme" is without a doubt Panda. And at a great price too (for what you get, it's a bargain) https://www.sunnytoo.com/product/panda-creative-responsive-prestashop-theme Check out the Panda great demos (TB/PS 1.6): http://panda2.sunnytoo.com/select-demo.html Regarding the built-in TB themes: Community and Niara have issues, especially when it comes to mobile responsive, which is a must these days. Panda is still actively maintained and kept up-to-date. It has aweseome modern layout options (great mobile options) and has more customisation options than most themes. It's extremely feature reach and is one of the best themes you can get. Many merchants use it here, so if you encouter a problem you can let us or ST Themes @Jonny know.
  8. @datakick New Bug with TB 1.1.x and Panda: Got a strange new bug after I updated my 1.1.0 site with Panda to latest TB Bleeding edge: On Product list / Category page: For some reason the Left Column disappears when a Sub Category is selected. Main Categories are fine. I noticed that the var left_column_size is set to 0 instead of 3. Weird, as this worked before the update. Because I know the Left Column should always show on the Category page, I've created the following to 'fix' it, albeit temporarily. And obviously this isn't a real fix, as it doesn't address the cause. Just helps for now. <!-- /// No Left Column on Subcategory Fix /// --> {if $page_name == "category" && $left_column_size == 0} {assign var='left_column_size' value = 3} {/if} <!-- /// *** *** /// ---> Insert the code before: {if isset($left_column_size) && !empty($left_column_size)} Thought I'd point this out. I have notified @Jonny as well.
  9. Ok, wow that explains it. Thanks for the useful insight in the way Thirty Bees renders content. Definitely think that you should be able to place {debug} in any template file without it bombing out. As my environment is currently not setup for Git commits. Please may I ask you to make this change and commit?
  10. Ok, so after a long while trying to figure this one out (I restored multiple backups going back days and days), I finally realised what appeared to be causing this... It seems like placing the Smarty Debug variable in the footer or the header.tpl causes the above error and causes the Smarty variables to be printed to the actual page... For some odd reason... Printed on page + above JS error: If I put the Smarty variables on the actual product.tpl then the error goes away and the Smart Variable popup opens as normal. Wtf? This works if it's in product.tpl {debug} {$var|@print_r} Anyway that's good enough for now, but I still don't understand why it won't work if it's in another tpl location like the header or footer... I've gone through my 'custom' Smarty variable assignments and fixed small errors, but that didn't seem to be the cause. I haven't had the time yet to check a vanilla TB installation to see if it causes the same error there... I'm curious @datakick for your thoughts on this?
  11. Honestly as it's been a while, I can't remember how I got around this one. I think what I landed up doing was doing a fresh install on localhost, then I moved / migrated this working copy across. If I recall this worked. You can give it a shot and let us know.
  12. Yeah, I picked up on that as well. Not sure what's going on here...
  13. Hi I wanted to print all the Smarty Variables in a popup, as normal, but as soon as I added the debug tag, the variables printed on the actual page instead. On investigation I noticed that there is a new Smarty error in console: Uncaught SyntaxError: Invalid or unexpected token and it highlighted the line below: _smarty_console.document.write(" <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\">\n <head>\n <title>Smarty Debug Console<\/title>\n <style type=\"text/css\">\n \n body, h1, h2, td, th, p {\n font-family: sans-serif;\n font-weight: normal;\n font-size: 0.9em;\n margin: 1px;\n padding: 0;\n }\n\n h1 {\n margin: 0;\n text-align: left;\n padding: 2px;\n background-color: #f0c040;\n color: black;\n font-weight: bold;\n font-size: 1.2em;\n }\n\n h2 {\n background-color: #9B410E;\n color: white;\n text-align: left;\n font-weight: bold;\n padding: 2px;\n border-top: 1px solid black;\n }\n\n body {\n background: black;\n }\n\n p, table, div {\n background: #f0ead8;\n }\n\n p {\n margin: 0;\n font-style: italic;\n text-align: center;\n }\n\n table {\n width: 100%;\n }\n\n th, td {\n font-family: monospace;\n vertical-align: top;\n text-align: left;\n width: 50%;\n }\n\n td {\n color: green;\n }\n\n .odd {\n background-color: #eee;\n }\n\n .even {\n background-color: #fafafa;\n }\n\n .exectime {\n font-size: 0.8em;\n font-style: italic;\n }\n\n #table_assigned_vars th {\n color: blue;\n }\n\n #table_config_vars th {\n color: maroon;\n }\n\n \n <\/style>\n <\/head>\n <body>\n\n <h1>Smarty Debug Console\n - &quot;file:C:\\xampp\\htdocs\\development\\loca...&quot;<\/h1>\n\n \n <h2>assigned template variables<\/h2>\n\n <table id=\"table_assigned_vars\">\n <tr class=\"even\">\n <th>$ASSearchUrlForm<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$ENT_NOQUOTES<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_BOTTOM_COLUMN<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_COMING_SOON<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;link rel=&quot;stylesheet&quot; href=&quot;/develop...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_EXTRA_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_EXTRA_RIGHT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_FOOTER<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_FOOTER_BOTTOM_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_FOOTER_BOTTOM_RIGHT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_FOOTER_PRIMARY<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_FOOTER_TERTIARY<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_FULL_WIDTH_HOME_BOTTOM<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_FULL_WIDTH_HOME_TOP<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_FULL_WIDTH_HOME_TOP_2<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_HEADER<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_HEADER_BOTTOM<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_HEADER_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_HEADER_TOP_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_LEFT_BAR<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_LEFT_COLUMN<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_MAIN_EMNU<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_MAIN_EMNU_WIDGET<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_MOBILE_BAR<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_MOBILE_BAR_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_MOBILE_BAR_RIGHT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_MOBILE_MENU<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_NAV_LEFT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_NAV_RIGHT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_PRODUCT_ACTIONS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_PRODUCT_CONTENT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_PRODUCT_FOOTER<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_PRODUCT_OOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_PRODUCT_SECONDARY_COLUMN<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_PRODUCT_TAB<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_PRODUCT_TAB_CONTENT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_RIGHT_BAR<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_RIGHT_COLUMN<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$HOOK_SIDE_BAR_RIGHT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$HOOK_TOP<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;!-- START C:\\xampp\\htdocs\\developmen...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_CONTACT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>null<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_CONTACTHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;label class=&quot;contact-captcha-hideme&quot;...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_CONTACTPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_CONTACTSELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;form.contact-form-box:first .submit&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_CONTACT_THEME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_CREATE<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_CREATEHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;label class=&quot;create-captcha-hideme&quot;&gt;...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_CREATEPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_CREATESELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;#account-creation_form .submit&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_CREATE_THEME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_GOOGLEIGNORE<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_LOGIN<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_LOGINHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;label class=&quot;login-captcha-hideme&quot;&gt;C...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_LOGINPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_LOGINSELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;#login_form .submit&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_LOGIN_THEME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_OPCCREATEHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;label class=&quot;create-captcha-hideme&quot;&gt;...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_OPCCREATEPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_OPCCREATESELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;#submitAccount, #submitGuestAccount&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_OPCLOGINHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;br /&gt;&lt;label class=&quot;login-captcha-hid...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_OPCLOGINPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_OPCLOGINSELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;#login_form .submit&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_PASSWORD<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_PASSWORDHTML<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;label class=&quot;password-captcha-hideme...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_PASSWORDPOS<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_PASSWORDSELECT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;form#form_forgotpassword:first .submit&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_PASSWORD_THEME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$NCRC_PS15COMPAT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>null<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$NCRC_PUBLIC_KEY<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;6Ld3V7kUAAAAALE9UiFtYS5qukI2wLpDrZUmxRpX&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$PS_ALLOW_MOBILE_DEVICE<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$PS_CATALOG_MODE<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$PS_SHOP_NAME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;Onlinecopiers&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$PS_STOCK_MANAGEMENT<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$SCRIPT_NAME<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;/development/local-dev-sites/new-onli...&quot;<br><b>scope<\/b> =&gt; &quot;Global&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$accessories<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$add_prod_display<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 1<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$allow_oosp<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_5de0daf08e7de<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_1...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_5de0df1e32969<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_2...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_5e68d16ab7384<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_3...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_5e68d16ab738410<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_7...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_5e68d16ab73845<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_5...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_5e68d16ab73846<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_4...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_5e68d16ab73848<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_6...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_5ebbf2707963a<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; &lt;div id=&quot;PM_ASBlockOutput_8...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_blurEffect<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_localCache<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_localCacheKey<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;5409455bd1deb34e9646122565a853146cd628d1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as4_productFilterListData<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as4_productFilterListSource<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as_criteria_group_type_interal_name<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (8)<\/b><br>&nbsp;&nbsp;<b>1<\/b> =&gt; &quot;select&quot;<br>&nbsp;&nbsp;<b>2<\/b> =&gt; &quot;image&quot;<br>&nbsp;&nbsp;<b>3<\/b> =&gt; &quot;link&quot;<br>&nbsp;&nbsp;<b>4<\/b> =&gt; &quot;checkbox&quot;<br>&nbsp;&nbsp;<b>5<\/b> =&gt; &quot;slider&quot;<br>&nbsp;&nbsp;<b>7<\/b> =&gt; &quot;colorsquare&quot;<br>&nbsp;&nbsp;<b>8<\/b> =&gt; &quot;range&quot;<br>&nbsp;&nbsp;<b>9<\/b> =&gt; &quot;level_depth&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as_location_name<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as_obj<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>PM_AdvancedSearch4 Object (35)<\/b><br>&nbsp;&nbsp;<b> -&gt;_require_maintenance<\/b> = <i>true<\/i><br>&nbsp;&nbsp;<b> -&gt;templatePrefix<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;id<\/b> = &quot;105&quot;<br>&nbsp;&nbsp;<b> -&gt;version<\/b> = &quot;4.12.5&quot;<br>&nbsp;&nbsp;<b> -&gt;database_version<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;registered_version<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;ps_versions_compliancy<\/b> = <b>Array (2)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>min<\/b> =&gt; &quot;1.6.0.1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>max<\/b> =&gt; &quot;1.6.1.999&quot;<br>&nbsp;&nbsp;<b> -&gt;tb_versions_compliancy<\/b> = &quot;*&quot;<br>&nbsp;&nbsp;<b> -&gt;dependencies<\/b> = <b>Array (0)<\/b><br>&nbsp;&nbsp;<b> -&gt;name<\/b> = &quot;pm_advancedsearch4&quot;<br>&nbsp;&nbsp;<b> -&gt;displayName<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;description<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;author<\/b> = &quot;Presta-Module&quot;<br>&nbsp;&nbsp;<b> -&gt;author_uri<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;module_key<\/b> = &quot;e0578dd1826016f7acb8045ad15372b4&quot;<br>&nbsp;&nbsp;<b> -&gt;description_full<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;additional_description<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;compatibility<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;nb_rates<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;avg_rate<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;badges<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;need_instance<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;tab<\/b> = &quot;search_filter&quot;<br>&nbsp;&nbsp;<b> -&gt;active<\/b> = 1<br>&nbsp;&nbsp;<b> -&gt;trusted<\/b> = <i>true<\/i><br>&nbsp;&nbsp;<b> -&gt;warning<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;enable_device<\/b> = 7<br>&nbsp;&nbsp;<b> -&gt;limited_countries<\/b> = <b>Array (0)<\/b><br>&nbsp;&nbsp;<b> -&gt;controllers<\/b> = <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; &quot;advancedsearch4&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>1<\/b> =&gt; &quot;seo&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>2<\/b> =&gt; &quot;searchresults&quot;<br>&nbsp;&nbsp;<b> -&gt;allow_push<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;push_time_limit<\/b> = 180<br>&nbsp;&nbsp;<b> -&gt;bootstrap<\/b> = <i>false<\/i><br>&nbsp;&nbsp;<b> -&gt;installed<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;_cacheIsInMaintenance<\/b> = <i>false<\/i><br>&nbsp;&nbsp;<b> -&gt;criteria_group_type_interal_name<\/b> = <b>Array (8)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>1<\/b> =&gt; &quot;select&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>2<\/b> =&gt; &quot;image&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; &quot;link&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>4<\/b> =&gt; &quot;checkbox&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>5<\/b> =&gt; &quot;slider&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>7<\/b> =&gt; &quot;colorsquare&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>8<\/b> =&gt; &quot;range&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>9<\/b> =&gt; &quot;level_depth&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as_path<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;/development/local-dev-sites/new-onli...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$as_searchs<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (48)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_hook<\/b> =&gt; &quot;-1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>active<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>internal_name<\/b> =&gt; &quot;Discontinued&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>search_results_selector_css<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>display_nb_result_on_blc<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>display_nb_result_criterion<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>remind_selection<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>show_hide_crit_method<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_by_emplacement<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>search_on_stock<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>hide_empty_crit_group<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>search_method<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>step_search<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>step_search_next_in_disabled<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;7&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>unique_search<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>scrolltop_active<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category_root<\/b> =&gt; &quot;114&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>redirect_one_product<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>add_anchor_to_url<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>reset_group<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>insert_in_center_column<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>smarty_var_name<\/b> =&gt; &quot;as4_5ebbf2707963a&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>search_results_selector<\/b> =&gt; &quot;#center_column&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>recursing_indexing<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>display_empty_criteria<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>keep_category_information<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>priority_on_combination_image<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>products_per_page<\/b> =&gt; &quot;9&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>products_order_by<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>products_order_way<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>hide_criterions_group_with_no_effect<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>title<\/b> =&gt; &quot;Discontinued&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>description<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>next_id_criterion_group<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>seo_criterion_groups<\/b> =&gt; <b>Array (0)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>selected_criterion_from_emplacement<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; 23<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>criterions_groups<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (32)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;6&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>criterion_group_type<\/b> =&gt; &quot;feature&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_by<\/b> =&gt; &quot;position&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_way<\/b> =&gt; &quot;ASC&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group_linked<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>display_type<\/b> =&gt; &quot;4&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>context_type<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_multicriteria<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_option<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_combined<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_nb<\/b> =&gt; &quot;15.00&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>show_all_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>only_children<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>hidden<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>max_display<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;col-xs-12 col-sm-3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>overflow_height<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Product Type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier<\/b> =&gt; &quot;product_type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier_original<\/b> =&gt; &quot;product_type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_sign<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_interval<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>all_label<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_skipped<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>next_group_have_selected_values<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_color_attribute<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>1<\/b> =&gt; <b>Array (32)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>criterion_group_type<\/b> =&gt; &quot;manufacturer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_by<\/b> =&gt; &quot;position&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_way<\/b> =&gt; &quot;ASC&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group_linked<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>display_type<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>context_type<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_multicriteria<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_option<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_combined<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_nb<\/b> =&gt; &quot;15.00&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>show_all_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>only_children<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>hidden<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>max_display<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;col-xs-12 col-sm-3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>overflow_height<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;100&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Manufacturer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier<\/b> =&gt; &quot;manufacturer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier_original<\/b> =&gt; &quot;manufacturer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_sign<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_interval<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>all_label<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_skipped<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>next_group_have_selected_values<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_color_attribute<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>2<\/b> =&gt; <b>Array (32)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;2&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>criterion_group_type<\/b> =&gt; &quot;supplier&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_by<\/b> =&gt; &quot;position&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_way<\/b> =&gt; &quot;ASC&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group_linked<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>display_type<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>context_type<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_multicriteria<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_option<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_combined<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_nb<\/b> =&gt; &quot;15.00&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>show_all_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>only_children<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>hidden<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>max_display<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;col-xs-12 col-sm-3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>overflow_height<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;100&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Supplier&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier<\/b> =&gt; &quot;supplier&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier_original<\/b> =&gt; &quot;supplier&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_sign<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_interval<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>all_label<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_skipped<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>next_group_have_selected_values<\/b> =&gt; <i>true<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_color_attribute<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (32)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>criterion_group_type<\/b> =&gt; &quot;category&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_by<\/b> =&gt; &quot;position&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_way<\/b> =&gt; &quot;ASC&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group_linked<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>display_type<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>context_type<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_multicriteria<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_option<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_combined<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_nb<\/b> =&gt; &quot;15.00&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>show_all_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>only_children<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>hidden<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>max_display<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;col-xs-12 col-sm-3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>overflow_height<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;100&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier<\/b> =&gt; &quot;categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier_original<\/b> =&gt; &quot;categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_sign<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_interval<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>all_label<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_skipped<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>next_group_have_selected_values<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_color_attribute<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>criterionsGroupsMini<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>6<\/b> =&gt; &quot;Product Type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>1<\/b> =&gt; &quot;Manufacturer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>2<\/b> =&gt; &quot;Supplier&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; &quot;Categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>criterions_groups_selected<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (29)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_search<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>criterion_group_type<\/b> =&gt; &quot;category&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_by<\/b> =&gt; &quot;position&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>sort_way<\/b> =&gt; &quot;ASC&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group_linked<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>display_type<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>context_type<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_multicriteria<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>filter_option<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_combined<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_nb<\/b> =&gt; &quot;15.00&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>show_all_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>only_children<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>hidden<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>max_display<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>css_classes<\/b> =&gt; &quot;col-xs-12 col-sm-3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>overflow_height<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;100&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier<\/b> =&gt; &quot;categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>url_identifier_original<\/b> =&gt; &quot;categories&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_sign<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>range_interval<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>all_label<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>criterions_selected<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion<\/b> =&gt; &quot;23&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Discontinued&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>advanced_search_open<\/b> =&gt; 0<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>criterions<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>6<\/b> =&gt; <b>Array (2)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>357<\/b> =&gt; <b>Array (17)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion<\/b> =&gt; &quot;357&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;6&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;9&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>color<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>level_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_parent<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_custom<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_linked<\/b> =&gt; &quot;46&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Printer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>decimal_value<\/b> =&gt; &quot;0.000000&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>nb_product<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>seo_key<\/b> =&gt; &quot;b17e9f9dda6049ccc7a827321434821e&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_seo<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>seo_page_url<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>358<\/b> =&gt; <b>Array (17)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion<\/b> =&gt; &quot;358&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_group<\/b> =&gt; &quot;6&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;10&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>color<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>level_depth<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_parent<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>visible<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_custom<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_criterion_linked<\/b> =&gt; &quot;360&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_lang<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>icon<\/b> =&gt; &quot;&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Wide Format Printer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>decimal_value<\/b> =&gt; &quot;0.000000&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>nb_product<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>seo_key<\/b> =&gt; &quot;4469804c0b1a6bf04989aa9daa359a15&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>id_seo<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>seo_page_url<\/b> =&gt; <i>false<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>selected_criterions<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>6<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>is_selected<\/b> =&gt; <i>true<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>selected_criterion<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>0<\/b> =&gt; 23<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$as_selected_criterion<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$attachments<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$attribute_anchor_separator<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;-&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$attributesCombinations<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$b2b_enable<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$base_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$base_dir_ssl<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$base_uri<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$body_classes<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; &quot;product-126&quot;<br>&nbsp;&nbsp;<b>1<\/b> =&gt; &quot;product-canon-imageprograf-tm200-wide...&quot;<br>&nbsp;&nbsp;<b>2<\/b> =&gt; &quot;category-60&quot;<br>&nbsp;&nbsp;<b>3<\/b> =&gt; &quot;category-wide-format-printers&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$cart<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Cart Object (24)<\/b><br>&nbsp;&nbsp;<b> -&gt;id_shop_group<\/b> = 1<br>&nbsp;&nbsp;<b> -&gt;id_shop<\/b> = 1<br>&nbsp;&nbsp;<b> -&gt;id_address_delivery<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;id_address_invoice<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;id_currency<\/b> = 3<br>&nbsp;&nbsp;<b> -&gt;id_customer<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;id_guest<\/b> = 57<br>&nbsp;&nbsp;<b> -&gt;id_lang<\/b> = 1<br>&nbsp;&nbsp;<b> -&gt;recyclable<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;gift<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;gift_message<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;mobile_theme<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;date_add<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;secure_key<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;id_carrier<\/b> = 0<br>&nbsp;&nbsp;<b> -&gt;date_upd<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;checkedTos<\/b> = <i>false<\/i><br>&nbsp;&nbsp;<b> -&gt;pictures<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;textFields<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;delivery_option<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;allow_seperated_package<\/b> = <i>false<\/i><br>&nbsp;&nbsp;<b> -&gt;id<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;id_shop_list<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;force_id<\/b> = <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$cartSize<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$cart_qties<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$categories<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (10)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Coffee and Tea&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;coffee-and-tea&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>1<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;6&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Gifts&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;gifts&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>2<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;7&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Office&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;office&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Consumables&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;consumables-category&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>4<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;24&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Multifunction Printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;multifunction-printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>5<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;60&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Wide Format Printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;wide-format-printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>6<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;65&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Duplicators&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;duplicators&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>7<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;68&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Scanners&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;scanners&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>8<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;75&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;printers&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>9<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_category<\/b> =&gt; &quot;114&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Discontinued&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>link_rewrite<\/b> =&gt; &quot;discontinued&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$category<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Category Object (26)<\/b><br>&nbsp;&nbsp;<b> -&gt;id_category<\/b> = &quot;60&quot;<br>&nbsp;&nbsp;<b> -&gt;name<\/b> = &quot;Wide Format Printers&quot;<br>&nbsp;&nbsp;<b> -&gt;active<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;display_from_sub<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;position<\/b> = &quot;5&quot;<br>&nbsp;&nbsp;<b> -&gt;description<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;id_parent<\/b> = &quot;2&quot;<br>&nbsp;&nbsp;<b> -&gt;id_category_default<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;level_depth<\/b> = &quot;2&quot;<br>&nbsp;&nbsp;<b> -&gt;nleft<\/b> = &quot;133&quot;<br>&nbsp;&nbsp;<b> -&gt;nright<\/b> = &quot;142&quot;<br>&nbsp;&nbsp;<b> -&gt;link_rewrite<\/b> = &quot;wide-format-printers&quot;<br>&nbsp;&nbsp;<b> -&gt;meta_title<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;meta_keywords<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;meta_description<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;date_add<\/b> = &quot;2020-03-02 09:58:43&quot;<br>&nbsp;&nbsp;<b> -&gt;date_upd<\/b> = &quot;2020-04-01 13:27:07&quot;<br>&nbsp;&nbsp;<b> -&gt;is_root_category<\/b> = &quot;0&quot;<br>&nbsp;&nbsp;<b> -&gt;id_shop_default<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;groupBox<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;id_image<\/b> = <i>false<\/i><br>&nbsp;&nbsp;<b> -&gt;id<\/b> = 60<br>&nbsp;&nbsp;<b> -&gt;id_lang<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;id_shop<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;id_shop_list<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;force_id<\/b> = <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$col_img_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;C:\\xampp\\htdocs\\development\\local-dev...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$come_from<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$comparator_max_item<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 3<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$compared_products<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$conditions<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$content_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$content_only<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$cookie<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Cookie Object (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$cover<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (5)<\/b><br>&nbsp;&nbsp;<b>cover<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>id_image<\/b> =&gt; &quot;677&quot;<br>&nbsp;&nbsp;<b>legend<\/b> =&gt; &quot;One&quot;<br>&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>id_image_only<\/b> =&gt; 677<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$css_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$css_files<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (34)<\/b><br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/global.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/autoload/highdpi.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/autoload/responsive-tables.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/autoload/uniform.default.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/js/jquery/plugins/fancybox/jquery.fancybox.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/product.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/print.css<\/b> =&gt; &quot;print&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/js/jquery/plugins/bxslider/jquery.bxslider.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/responsive.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/responsive-md.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/responsive-lg.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/responsive-lg-max.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/stthemeeditor/views/css/animate.min.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/product_list.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/js/jquery/ui/themes/base/jquery.ui.core.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/js/jquery/ui/themes/base/jquery.ui.slider.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/js/jquery/ui/themes/base/jquery.ui.theme.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/modules/blockcategories/blockcategories.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/modules/stmegamenu/views/css/stmegamenu.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/modules/blocksearch_mod/views/css/blocksearch.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/modules/blockcart_mod/blockcart.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/stblog/views/css/stblog.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/sthoverimage/views/css/style.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/rs-plugin/fonts/font-awesome/css/font-awesome.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/rs-plugin/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/rs-plugin/css/settings.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/rs-plugin/css/static-captions.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/rs-plugin/css/dynamic-captions.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/revsliderprestashop/views/css/css/front.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/scenes.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/themes/panda/css/category.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/pm_advancedsearch4/views/css/pm_advancedsearch4.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/pm_advancedsearch4/views/css/pm_advancedsearch4_dynamic.css<\/b> =&gt; &quot;all&quot;<br>&nbsp;&nbsp;<b>/development/local-dev-sites/new-onlinecopiers/modules/pm_advancedsearch4/views/css/chosen/chosen.min.css<\/b> =&gt; &quot;all&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$currencies<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (12)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_currency<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;South African Rand&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>iso_code<\/b> =&gt; &quot;ZAR&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>iso_code_num<\/b> =&gt; &quot;710&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>sign<\/b> =&gt; &quot;R&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>blank<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>format<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>decimals<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>conversion_rate<\/b> =&gt; &quot;1.000000&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>deleted<\/b> =&gt; &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>active<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_shop<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$currency<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Currency Object (18)<\/b><br>&nbsp;&nbsp;<b> -&gt;id<\/b> = 3<br>&nbsp;&nbsp;<b> -&gt;name<\/b> = &quot;South African Rand&quot;<br>&nbsp;&nbsp;<b> -&gt;iso_code<\/b> = &quot;ZAR&quot;<br>&nbsp;&nbsp;<b> -&gt;iso_code_num<\/b> = &quot;710&quot;<br>&nbsp;&nbsp;<b> -&gt;sign<\/b> = &quot;R&quot;<br>&nbsp;&nbsp;<b> -&gt;blank<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;conversion_rate<\/b> = &quot;1.000000&quot;<br>&nbsp;&nbsp;<b> -&gt;deleted<\/b> = &quot;0&quot;<br>&nbsp;&nbsp;<b> -&gt;format<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;decimals<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;active<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;auto_format<\/b> = <i>true<\/i><br>&nbsp;&nbsp;<b> -&gt;prefix<\/b> = &quot;R &quot;<br>&nbsp;&nbsp;<b> -&gt;suffix<\/b> = &quot;&quot;<br>&nbsp;&nbsp;<b> -&gt;id_lang<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;id_shop<\/b> = &quot;1&quot;<br>&nbsp;&nbsp;<b> -&gt;id_shop_list<\/b> = <i>null<\/i><br>&nbsp;&nbsp;<b> -&gt;force_id<\/b> = <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$currencyBlank<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$currencyFormat<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$currencyRate<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 1<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$currencySign<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;R&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$customerName<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$customer_group_without_tax<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;0&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$customizationFields<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$customizationFormTarget<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;/development/local-dev-sites/new-onli...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$description_short<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;&lt;p&gt;This is the short description / su...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$display_discount_price<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$display_footer<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$display_header<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$display_ht<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$display_qties<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 1<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$display_tax_label<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$ecotax<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$ecotaxTax_rate<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$ecotax_tax_exc<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;0.000000&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$ecotax_tax_inc<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$errors<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (0)<\/b><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$favicon_url<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;/development/local-dev-sites/new-onli...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$features<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (27)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Product Type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Wide Format Printer&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;8&quot;<br>&nbsp;&nbsp;<b>1<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Printer Type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;CAD &amp; Technical&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;31&quot;<br>&nbsp;&nbsp;<b>2<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;60 Months for&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;R715.00 per month&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;15&quot;<br>&nbsp;&nbsp;<b>3<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;36 Months for&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;R1 065.00 per month&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;16&quot;<br>&nbsp;&nbsp;<b>4<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Paper Size&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;A1 (24&quot;)&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;20&quot;<br>&nbsp;&nbsp;<b>5<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Colour&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Colour&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;21&quot;<br>&nbsp;&nbsp;<b>6<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Interface Connection&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;LAN, USB, WiFi&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;22&quot;<br>&nbsp;&nbsp;<b>7<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Print Resolution&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;2400 dpi x 1200 dpi&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;23&quot;<br>&nbsp;&nbsp;<b>8<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Standard Memory&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;3GB&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;35&quot;<br>&nbsp;&nbsp;<b>9<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Hard Disk&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;320GB&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;36&quot;<br>&nbsp;&nbsp;<b>10<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Operating Systems Supported&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Windows, Mac&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;51&quot;<br>&nbsp;&nbsp;<b>11<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Printer Languages&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;SG Raster (Swift Graphic Raster), PDF...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;52&quot;<br>&nbsp;&nbsp;<b>12<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Environmental Compliance&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;EnergyStar&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;53&quot;<br>&nbsp;&nbsp;<b>13<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Print Technology&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Canon Bubblejet on Demand 8 colours&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;55&quot;<br>&nbsp;&nbsp;<b>14<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Ink Capacity&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;160ml/330ml/700ml&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;56&quot;<br>&nbsp;&nbsp;<b>15<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Ink Type&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Pigment Inks - Black, Matte Black, Cy...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;57&quot;<br>&nbsp;&nbsp;<b>16<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Media Size&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Up to 60&quot;/1524mm&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;58&quot;<br>&nbsp;&nbsp;<b>17<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Media Feed and Output&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Roll Paper - Two Roll, Front-loading...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;59&quot;<br>&nbsp;&nbsp;<b>18<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Media Width&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Roll/Cut - 203.2mm - 1524mm&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;60&quot;<br>&nbsp;&nbsp;<b>19<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Media Thickness&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Roll/Cut - 0.07mm - 0.8mm&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;61&quot;<br>&nbsp;&nbsp;<b>20<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Minimum Printable Length&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;203.2mm&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;62&quot;<br>&nbsp;&nbsp;<b>21<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Maximum Printable Length&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Roll Paper - 18m. Cut Sheet - 1.6m.&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;63&quot;<br>&nbsp;&nbsp;<b>22<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Maximum Media Roll Diameter&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;170mm&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;64&quot;<br>&nbsp;&nbsp;<b>23<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Media Feed Capacity&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;Roll Paper - Two roll automatic switc...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;65&quot;<br>&nbsp;&nbsp;<b>24<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Software Included&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;imagePROGRAF PRO Printer Driver, Prin...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;66&quot;<br>&nbsp;&nbsp;<b>25<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Dimensions&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;38.0 x 42.0 x 34.0&quot; / 96.5 x 106.7 x ...&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;54&quot;<br>&nbsp;&nbsp;<b>26<\/b> =&gt; <b>Array (3)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name<\/b> =&gt; &quot;Weight&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>value<\/b> =&gt; &quot;50.8 kg (with Stand)&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_feature<\/b> =&gt; &quot;4&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$force_ssl<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$group_reduction<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$have_image<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (1)<\/b><br>&nbsp;&nbsp;<b>0<\/b> =&gt; 677<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$hide_left_column<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$hide_right_column<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>true<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$high_dpi<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$homeSize<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$hookName<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;home&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$id_category_current<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 60<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$id_category_parent<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 2<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$id_cgv<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;3&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$id_currency_cookie<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 3<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$id_customization<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>null<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$images<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;<b>677<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>cover<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_image<\/b> =&gt; &quot;677&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>legend<\/b> =&gt; &quot;One&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;1&quot;<br>&nbsp;&nbsp;<b>678<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>cover<\/b> =&gt; <i>null<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_image<\/b> =&gt; &quot;678&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>legend<\/b> =&gt; &quot;Two&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;2&quot;<br>&nbsp;&nbsp;<b>679<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>cover<\/b> =&gt; <i>null<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_image<\/b> =&gt; &quot;679&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>legend<\/b> =&gt; &quot;Three&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;3&quot;<br>&nbsp;&nbsp;<b>680<\/b> =&gt; <b>Array (4)<\/b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>cover<\/b> =&gt; <i>null<\/i><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>id_image<\/b> =&gt; &quot;680&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>legend<\/b> =&gt; &quot;Four&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>position<\/b> =&gt; &quot;4&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$imgWidth<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; 0<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_cat_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_col_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_formats<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <b>Array (2)<\/b><br>&nbsp;&nbsp;<b>webp<\/b> =&gt; &quot;image/webp&quot;<br>&nbsp;&nbsp;<b>jpg<\/b> =&gt; &quot;image/jpeg&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_lang_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_manu_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_prod_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_ps_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_ship_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_store_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$img_sup_dir<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;http://localhost/development/local-de...&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$img_update_time<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;1575894433&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$isIntalledBlockWishlist<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$isRtl<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;0&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$is_guest<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$is_logged<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; <i>false<\/i><br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"even\">\n <th>$jqZoomEnabled<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot;0&quot;<br><b>scope<\/b> =&gt; &quot;Smarty object&quot;<\/td>\n <\/tr>\n <tr class=\"odd\">\n <th>$js_def<\/th>\n <td><b>Array (2)<\/b><br><b>value<\/b> =&gt; &quot; I haven't added any new modules or changed any JS code since the last time I displayed the Smarty variables in the popup - so I've got no idea why it's doing this... Any help is appreciated! @datakick can you maybe shed some light onto this issue?
  14. Acer

    Goodbye

    I believe 1.1.1 has been in testing for quite some time now: And no, you don't have to upgrade to bleeding edge if you've downloaded 1.1.0. I do advise though that if you have an earlier version you should go up to 1.1.0. I have a few stores running on 1.1.0 and it's stable and I haven't had the need to upgrade to bleeding edge with these ones yet. @musicmaster Bytw, if you're experiencing problems on Bleeding Edge, I suggest you downgrade to 1.1.0 with the Core Updater. Then you can check if it's a glitch with the module. If it's working fine, then you know the problem is Bleeding Edge. You can then create a bug report or make a post in the "1.1.1 pre-release bug hunt" thread and stay on 1.1.0 until the problem is sorted.
  15. Acer

    Goodbye

    Because many of us are noobs here, myself included, I'm going to respect you and the comment about Core Updater and not add a LOL 😉 The thing is Core Updater is one of the best recently new advancements to TB. I'm sure that there are other guys who will defend it better. But here is my attempt: It does a great job at updating TB and it has roll back - which is a really great feature that most other ecommerce or CMS systems do not have. Update doesn't work? No problem just do roll back. Also, there is a setting there to not update the themes, so if your modifications are there then they will be preserved. Trust me, any self respecting Web system needs a descend update system, and this is one of the best I've seen. Ever tried to update Drupal core? Try manually. Let's not even go there... That being said, sometimes Core files do actually need to be modified due to bugs or other reasons (I can't remember all off hand, but I have a list of these modifications and they were necessary and justified). What I did was keep record of the files modified. Then before update, I manually copy files or updates and implement these again after update. It's not as tedious as it sounds if you kept track. If there is a way TB can cater for these situations, then great. Regarding your point about bugs, I think it's a good comment. If we ever go forward with TB as a community/company, we will need to tackle these. Create tickets or tasks for each and ensure that all bugs are dealt with systematically and professionaly. Like a normal development house would do it. And make sure that at the end the existing list has been dealt with. Also your comment about the Community Theme manager. Yeah this is one of those weird things that need to be fixed. I actually encountered this problem. For some bizarre reason Niara theme disables this module, but even more bizarrely, this module actually contains the fix (wtf) for the jZoom on product images problem (where it doesn't work if it's enabled due to out of date library). So if you need to fix it, without updating the library manually, then you need to have the community theme module enabled. This type of shit shouldn't be necessary and should be dealt with in a better way. And yeah, maybe the donation miner can renamed to something else or hidden for now. It could be repurposed in the future for a better cause (I've got some ideas) so I wouldn't recommend it gets removed just yet.
  16. Acer

    Goodbye

    Actually @datakick there were some interesting ideas proposed toward the end by @innercode @musicmaster and others that appear to be in line with what you seem to prefer for your continued involvement, like a Company and not an association. So the debate going nowhere maybe not? Maybe you lost interest a bit too fast? Yes, it's gotten a bit messy in the chat, but I believe that there are enough sober minded people with a similar outlook and view on what the right solution is to fix TB and take it forward. Perhaps you can read some of those comments and see that here is perhaps what you've been looking for? Might not look 100% or fully formed yet. .. We may just need to take these ideas forward somehow and with your buy-in perhaps we can?
  17. Acer

    Goodbye

    Trying to get you unbanned
  18. Acer

    Goodbye

    @wakabayashi @AnnaLisik I've let her know and asked her to unban. Was probably done by mistake. Pls let us know if you can access again..Also @AnnaLisikcan you please invite @M4ketech?
  19. Acer

    Goodbye

    What? Surely that was a mistake?
  20. Acer

    Goodbye

    Thanks 👍
  21. Acer

    Goodbye

    Hi @AnnaLisik Maybe add @netamismb to the Discord and maybe send @dynambee an invite as well. This the thread. You're there also https://forum.thirtybees.com/messenger/317/?page=6&tab=comments#comment-2270
  22. Acer

    Goodbye

    The message thread remember
×
×
  • Create New...