Hello
First all thank you for module default2 theme
I using the extension EC Slidshow estension http://www.opencart.com/index.php?route ... n_id=13906 but with some problems, transition effects behave strangely and very fast if compare with opencart default theme.
can you help me solve?
I send ticket request with user/password in https://www.echothemes.com/tickets.html
First all thank you for module default2 theme
I using the extension EC Slidshow estension http://www.opencart.com/index.php?route ... n_id=13906 but with some problems, transition effects behave strangely and very fast if compare with opencart default theme.
can you help me solve?
I send ticket request with user/password in https://www.echothemes.com/tickets.html
Thanks for the great template. I'm currently converting my 1.5.4.1. template to your new template. I got a question about the menu. When you check the categoriemenu on a mobile and you go to a categorie that has multiple subcategory then you have to press it twice. Is it possible to open the subcategories in 1 click?
It goes like this on a mobile
1. Click on categories menu to expand it.
2. Click on component to select it.
3. click again on components to open the subcategory
4. Click on the subcategory.
If you try the same on demo.opencart.com then when you click on components is automatically opens the subcategory so step 2 is a extra step on your menu.
Can this be changed?
kind regards,
Rene
It goes like this on a mobile
1. Click on categories menu to expand it.
2. Click on component to select it.
3. click again on components to open the subcategory
4. Click on the subcategory.
If you try the same on demo.opencart.com then when you click on components is automatically opens the subcategory so step 2 is a extra step on your menu.
Can this be changed?
kind regards,
Rene
Thank you, I'm not notice this before.
My decission to inject .open class on hover cause this. It should be done with css like OpenCart.
The cause of this is at default2.js
If you decide to remove code above, make sure to add this on your stylesheet
I will fix this on next update
My decission to inject .open class on hover cause this. It should be done with css like OpenCart.
The cause of this is at default2.js
Code: Select all
//=== Bootstrap hack
// still touch device friendly
$('.dropdown').hover(
function() {
$(this).addClass('open');
}, function() {
$(this).removeClass('open');
}
);
Code: Select all
@media (min-width: 768px)
#nav-main .dropdown:hover .dropdown-menu {
display: block;
}
Hi Qahar,
I just updated to opencast 2.1.0.1 and the module shows this error
Notice: Undefined variable: icon in /home/doubledut/domains/djuricek.nl/public_html/oc21/catalog/view/theme/default2/template/common/header.tpl on line 21 Notice: Undefined variable: google_analytics in /home/doubledut/domains/djuricek.nl/public_html/oc21/catalog/view/theme/default2/template/common/header.tpl on line 54
How can i fix this?
I just updated to opencast 2.1.0.1 and the module shows this error
Notice: Undefined variable: icon in /home/doubledut/domains/djuricek.nl/public_html/oc21/catalog/view/theme/default2/template/common/header.tpl on line 21 Notice: Undefined variable: google_analytics in /home/doubledut/domains/djuricek.nl/public_html/oc21/catalog/view/theme/default2/template/common/header.tpl on line 54
How can i fix this?
@maccadon
default2 admin model is changed on how to install and save, this happen because OpenCart 2.1x change from serialize to json.
All template related change is only to make it compatible with OpenCart 2.1x like analytic at header.tpl, captcha at all information/contact and product template, also the change of product cart id at all cart template
default2 admin model is changed on how to install and save, this happen because OpenCart 2.1x change from serialize to json.
All template related change is only to make it compatible with OpenCart 2.1x like analytic at header.tpl, captcha at all information/contact and product template, also the change of product cart id at all cart template
It's possible, by modificating default2_theme.xml and related product template.
Backup related file before modificate incase something goes wrong.
1. Unreg content_btm_a from product page content_bottom
Find <file path="catalog/controller/common/content_bottom.php">
2. Reg content_btm_a directly to product page
Find <file path="catalog/controller/product/product.php">
3. Load content_btm_a at product template
Open the product template (product.tpl or product_d2_2.tpl) based on your default2 product template setting.
And add code below before the tab
Block position doesn't have styling (margin, padding, etc), you can wrap it with custome wrapper style.
The end result:
Backup related file before modificate incase something goes wrong.
1. Unreg content_btm_a from product page content_bottom
Find <file path="catalog/controller/common/content_bottom.php">
Code: Select all
// Replace:
$blockToLoad = array('content_btm_a', 'content_btm_b');
// With:
if (isset($this->request->get['product_id'])) {
$data['position_content_btm_a'] = '';
$blockToLoad = array('content_btm_b');
} else {
$blockToLoad = array('content_btm_a', 'content_btm_b');
}
Find <file path="catalog/controller/product/product.php">
Code: Select all
// Replace:
$blockToLoad = array('top_a', 'top_b', 'top_c', 'bottom_a', 'bottom_b', 'bottom_c');
// With:
$blockToLoad = array('top_a', 'top_b', 'top_c', 'bottom_a', 'bottom_b', 'bottom_c', 'content_btm_a');
Open the product template (product.tpl or product_d2_2.tpl) based on your default2 product template setting.
And add code below before the tab
Code: Select all
<?php echo $position_content_btm_a; ?>
<ul class="nav nav-tabs product-tab">
...
</ul>
Code: Select all
<div style="margin: -40px 0 30px;">
<?php echo $position_content_btm_a; ?>
</div>
@Qahar The problem is also visible on the default theme. I searched and found this thread
https://www.fastcomet.com/community/how ... ing-icons/
The problem is only on pages without www (http://website.com). When i check the same page with www in front of it then it works. So a .htacces to always direct to www and the problem is solved
Another problem: The table in wishlist.tpl isn't responsive on small screens. I think you forgot to put the table in a div (<div class="table-responsive">). After that it works like it should.
https://www.fastcomet.com/community/how ... ing-icons/
The problem is only on pages without www (http://website.com). When i check the same page with www in front of it then it works. So a .htacces to always direct to www and the problem is solved
Another problem: The table in wishlist.tpl isn't responsive on small screens. I think you forgot to put the table in a div (<div class="table-responsive">). After that it works like it should.
It's quite interesting issue. Even though thesolution is work, I'm still not understand why font-awesome not loaded without www
I assume you are talking about wishlist table at account page. default2 not come with this template, so it will fallback and use whatever default theme have.
I would suggest you to copy the template you need to default2 and modificate it (avoid modificate template at default theme).

I assume you are talking about wishlist table at account page. default2 not come with this template, so it will fallback and use whatever default theme have.
I would suggest you to copy the template you need to default2 and modificate it (avoid modificate template at default theme).
No problem, i works with the redirect so that's ok. I noticed some errors when browsing the theme in Safari 9 on mac.
Checkout steps
The backgrounds folds up and down twice
Product-grid (categories)
The price goes through the productname (sometimes)
productpage-featured products
Star rating goes beneath the product box
But in all other browsers i don't have these problems.
see images


Checkout steps
The backgrounds folds up and down twice
Product-grid (categories)
The price goes through the productname (sometimes)
productpage-featured products
Star rating goes beneath the product box
But in all other browsers i don't have these problems.
see images


Who is online
Users browsing this forum: No registered users and 2 guests