Deal Plaza Template
- Posted by Welliton venicius gervickas (15) Offline
Before change language en-gb to pt-BR i see 1146 ERRO 1146
But, if comment on template(deal)/html (com_k2 to com_k2_) component k2 WORK!
or change language front end back again to en-GB all template work.
NEEED HELPP!!
9 years 1 month ago #1
by Welliton venicius gervickas
But, if comment on template(deal)/html (com_k2 to com_k2_) component k2 WORK!
or change language front end back again to en-GB all template work.
NEEED HELPP!!
Please Log in or Create an account to join the conversation.
- Posted by Welliton venicius gervickas (15) Offline
I believe the problem is these lines, because in a way I was putting out the codes up to find out what was affecting.
9 years 1 month ago #2
by Welliton venicius gervickas
<?php if(isset($this->leading) && count($this->leading)): ?>
<!-- Leading items -->
<div id="itemListLeading">
<?php foreach($this->leading as $key=>$item): ?>
<?php
// Define a CSS class for the last container on each row
if( (($key+1)%($this->params->get('num_leading_columns'))==0) || count($this->leading)<$this->params->get('num_leading_columns') )
$lastContainer= ' itemContainerLast';
else
$lastContainer='';
?>
<div class="itemContainer<?php echo $lastContainer; ?>">
<?php
// Load category_item.php by default
$this->item=$item;
echo $this->loadTemplate('item');
?>
</div>
<?php if(($key+1)%($this->params->get('num_leading_columns'))==0): ?>
<div class="clr"></div>
<?php endif; ?>
<?php endforeach; ?>
<div class="clr"></div>
</div>
<?php endif; ?>
<?php if(isset($this->primary) && count($this->primary)): ?>
<!-- Primary items -->
<div id="itemListPrimary">
<?php foreach($this->primary as $key=>$item): ?>
<?php
// Define a CSS class for the last container on each row
if( (($key+1)%($this->params->get('num_primary_columns'))==0) || count($this->primary)<$this->params->get('num_primary_columns') )
$lastContainer= ' itemContainerLast';
else
$lastContainer='';
?>
<div class="itemContainer<?php echo $lastContainer; ?>">
<?php
// Load category_item.php by default
$this->item=$item;
echo $this->loadTemplate('item');
?>
</div>
<?php if(($key+1)%($this->params->get('num_primary_columns'))==0): ?>
<div class="clr"></div>
<?php endif; ?>
<?php endforeach; ?>
<div class="clr"></div>
</div>
<?php endif; ?>
Please Log in or Create an account to join the conversation.
- Posted by Welliton venicius gervickas (15) Offline
Remembering, I changed the subject. However, the main theme also happens the same mistake.
I already configured components to work on my theme.
9 years 1 month ago #3
by Welliton venicius gervickas
I already configured components to work on my theme.
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi I have entered your website and found that the error is something related to virtuemart.
<h3>1146 - Table 'ambiente_maz.dvcdq_virtuemart_products_pt_br' doesn't exist SQL=SELECT `dvcdq_virtuemart_products`.* ,`dvcdq_virtuemart_products_pt_br`.* FROM `dvcdq_virtuemart_products` INNER JOIN `dvcdq_virtuemart_products_pt_br` using (`virtuemart_product_id`) WHERE `dvcdq_virtuemart_products`.`virtuemart_product_id` = "4"</h3>
<p>Ir para página inicial
<a href="/mazah">Página inicial</a>.</p>
Did you ever make change to virtuemart ? Can you try to update or reinstall the virtuemart?
9 years 1 month ago #4
by TemplatePlazza
<h3>1146 - Table 'ambiente_maz.dvcdq_virtuemart_products_pt_br' doesn't exist SQL=SELECT `dvcdq_virtuemart_products`.* ,`dvcdq_virtuemart_products_pt_br`.* FROM `dvcdq_virtuemart_products` INNER JOIN `dvcdq_virtuemart_products_pt_br` using (`virtuemart_product_id`) WHERE `dvcdq_virtuemart_products`.`virtuemart_product_id` = "4"</h3>
<p>Ir para página inicial
<a href="/mazah">Página inicial</a>.</p>
Did you ever make change to virtuemart ? Can you try to update or reinstall the virtuemart?
Please Log in or Create an account to join the conversation.
- Posted by Welliton venicius gervickas (15) Offline
No, the way I bought the theme, I installed it, just put the language of my country.
9 years 1 month ago #5
by Welliton venicius gervickas
Please Log in or Create an account to join the conversation.
- Posted by Welliton venicius gervickas (15) Offline