Jump to content
thirty bees forum

Guido Buldrighini

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by Guido Buldrighini

  1. Problem solved, I added the NEXI IP addresses in the cloudflare whitelist.
  2. Hi, I have a problem with the Nexi Xpay module installed on an e-commerce based on thirtybees 1.0.8, the order finalized with payment method "NEXI" is created correctly within the administration panel of nexi but the cart on thirtybees is not converted in order , remains as the customer's abandoned cart. In order to convert the order it is necessary our manual intervention creating an order from the customer's abandoned cart.
  3. Thank you very much @musicmaster, I solved, you gave me the opportunity to better understand the problem. I checked the ps_tab table and actually the tabs: - AdminAccess - AdminTabs - AdminEmployees for some strange reason they were no longer present. In this way I added them by hand via database and now they are again present in the menù and accessible through the control panel.
  4. Hi, I recently migrated an ecommerce from prestashop 1.6.1.24 to thirtybees 1.0.8 using the migration module recommended by you: The whole migration and import was successful. The only problem is that I no longer risk accessing the sections: - index.php?controller=AdminAccess&token=f1824d41565b1e39b224af7b4f8cb073 - index.php?controller=AdminTabs&token=f1824d41565b1e39b224af7b4f8cb073 - index.php?controller=AdminEmployees&token=f1824d41565b1e39b224af7b4f8cb073 getting the error reported in the screenshots. I also checked the ps_access table but I didn't find any problems. I also imported the ps_access table from another clean installation of thirtybees but I still get the same result. Do you have any idea what might have happened?
  5. Hi, in the end I found the solution, in the product.tpl file (coming from a prestashop template) I have this: {if $have_image} <span id="view_full_size"> {if $jqZoomEnabled && $have_image && !$content_only} <a class="jqzoom" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" rel="gal1" href="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')|escape:'html':'UTF-8'}"> <img itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default')|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}"/> </a> {else} <img id="bigpic" itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default')|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" width="{$largeSize.width}" height="{$largeSize.height}"/> {if !$content_only} <span class="span_link no-print">{l s='View larger'}</span> {/if} {/if} </span> {else} <span id="view_full_size"> <img itemprop="image" src="{$img_prod_dir}{$lang_iso}-default-large_default.jpg" id="bigpic" alt="" title="{$product->name|escape:'html':'UTF-8'}" width="{$largeSize.width}" height="{$largeSize.height}"/> {if !$content_only} <span class="span_link"> {l s='View larger'} </span> {/if} </span> {/if} Instead of this: {if $have_image} <a class="fancybox" data-fancybox-group="product" id="view_full_size" href="1" onclick="return false;" > <noscript> <img class="img-responsive center-block" itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default', null, ImageManager::retinaSupport())|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" width="{$largeDefaultWidth|intval}" height="{$largeDefaultHeight|intval}" > </noscript> <picture id="bigpic"> <!--[if IE 9]><video style="display: none;"><![endif]--> {if !empty($webp)} <source class="img-responsive center-block" itemprop="image" srcset="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default', 'webp', ImageManager::retinaSupport())|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" type="image/webp" > {/if} <!--[if IE 9]></video><![endif]--> <img class="img-responsive center-block" itemprop="image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" srcset="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default', null, ImageManager::retinaSupport())|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" width="{$largeDefaultWidth|intval}" height="{$largeDefaultHeight|intval}" > </picture> {if !$jqZoomEnabled && !$content_only} <span class="span_link" title="{l s='Zoom in'}"> <i class="icon icon-search-plus"></i> </span> {/if} </a> {else} <span id="view_full_size"> <noscript> <img class="img-responsive center-block" itemprop="image" src="{$img_prod_dir|escape:'html':'UTF-8'}{$lang_iso|escape:'html':'UTF-8'}-default-large_default.jpg" title="{$product->name|escape:'html':'UTF-8'}" width="{$largeDefaultWidth|intval}" height="{$largeDefaultHeight|intval}" > </noscript> <picture id="bigpic"> <!--[if IE 9]><video style="display: none;"><![endif]--> {if (!empty($webp))} <source class="img-responsive center-block" itemprop="image" srcset="{$img_prod_dir|escape:'html':'UTF-8'}{$lang_iso|escape:'html':'UTF-8'}-default-large_default.webp" title="{$product->name|escape:'html':'UTF-8'}" type="image/webp" > {/if} <!--[if IE 9]></video><![endif]--> <img class="img-responsive center-block" itemprop="image" src="{$img_prod_dir|escape:'html':'UTF-8'}{$lang_iso|escape:'html':'UTF-8'}-default-large_default.jpg" srcset="{$img_prod_dir|escape:'html':'UTF-8'}{$lang_iso|escape:'html':'UTF-8'}-default-large_default.jpg" title="{$product->name|escape:'html':'UTF-8'}" width="{$largeDefaultWidth|intval}" height="{$largeDefaultHeight|intval}" > </picture> </span> {/if}
  6. Thank you very much Jonny, you were right, now I've got the default template product.js but I get this error. P.S. musicmaster is the only js error:
  7. Hi, I've found an error on TB. If I check jqZoom instead of Fancybox in the product page. This is the error console. Has it already happened to someone? does anyone have a solution? (TB 1.0.8)
×
×
  • Create New...