sur
Forum Replies Created
-
Fixed in 1.6.1
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] Add ShortcutsHi,
At this point is not posible, I would need to extend the admin, etc but it is a nice feature, perhaps in future releases.
Anyway if you want to create a template or use static html in your post editor I write the html structure, fill it, paste it in your home page and you′ll get 3 static extra boxes.
If you are displaying your last post (not static page) in frontpage this solution is not useful.<div class="home-boxes row-fluid"> <div class="span4 box box-left"> <div class="thumbnail box-banner"> <a href=""> <img src="" alt="" /> </a> <h3 class="entry-title"><a href="">Title</a></h3> </div> <div class="caption"> <p>Text description</p> </div> </div> <div class="span4 box box-center"> <div class="thumbnail box-banner"> <a href=""> <img src="" alt="" /> </a> <h3 class="entry-title"><a href="">Title</a></h3> </div> <div class="caption"> <p>Text description</p> </div> </div> <div class="span4 box box-right"> <div class="thumbnail box-banner"> <a href=""> <img src="" alt="" /> </a> <h3 class="entry-title"><a href="">Title</a></h3> </div> <div class="caption"> <p>Text description</p> </div> </div> </div>
Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] Possible to change the size of the Carousel?Hi,
The carousel width is responsive, but the height is fixed.
Anyway you can customize it with styles:/* carousel container */ #template-carousel .carousel-inner { height: 320px; /* actual value, customize it */ } /*post featured img in carousel */ #template-carousel .bs-carousel-img .slide-post-thumbnail img { max-height: 260px; /* actual value, customize it */ }
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] wrong sidebar in blog templateHi,
Fixed in 1.6.1 version.Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] How to remove "Posted by" section completely?Groundfire,
.home footer.entry-meta { display:none; }
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] Boot Store Theme Carousel image sizesHi,
The image is a background with cover value, so you are right, no matter the image size because always covers the carousel area. But if you don′t want to display scaled images it is recommended to use 1170*Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] Another question about the carouselPlease get 1.6.1 version
Best regardsForum: Themes and Templates
In reply to: [Boot Store] Version 1.6 messed up CarouselAll fixed in 1.6.1?
Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] Css for blocks, content and other questionsHi,
1. Boot Store uses bootstrap 2.2.2 fluid and responsive layout (.row-fluid)
So there is not an easy way to overwrite the layout efficiently.
These styles could be a start point but securely would be more efficient to chosse a static theme..row-fluid #secondary.span3 { width: 300px; } .row-fluid #primary.span9 { width: 64%; } @media (min-width: 768px) and (max-width: 979px) { .row-fluid #secondary.span3 { width: 300px; } .row-fluid #primary.span9 { width: 54%; } } @media (max-width: 767px) { .row-fluid #secondary.span3 { width: 100%; } .row-fluid #primary.span9 { width: 100%; } } /* If you have the sidebar in right side you also need float right /* #secondary.tcp-bse-layout { float: right; }
You could add more media queries to optimize/adjust the primary container width (.row-fluid #primary.span9)
2- WP Appaerance > Boot store: 3 Shortcuts section
3- I dmake child themes without problem.. an url to take a look?
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] carousel and blog postsHi,
By deafult carousel display your last 5 posts but if you check ‘add to carousel’ option then only posts checked will display.
Best RegardsForum: Themes and Templates
In reply to: [Boot Store] How to remove search bar in the upper right cornerForum: Themes and Templates
In reply to: [Boot Store] How to remove search bar in the upper right cornerHi,
To hide search box you can use styles:
.secondary-menu-bs .nav.pull-right {
display:none;
}
About dutch, there isn′t yet a dutch translation, create a de_DE.mo file to translate. You can find the .po file in boot-store/languages/bre-bootostrap-ecommerce.poBest regards
Forum: Themes and Templates
In reply to: [Boot Store] Can I unlink Carousel Image?Hi,
You can customize the html output of the carousel editing header.php
(better create a child theme with your custom header)Best regards
Forum: Themes and Templates
In reply to: [Boot Store] shortcutsHi,
If you check the box the 3 shortcut aren′t visibles, uncheck it.
Best RegardsForum: Themes and Templates
In reply to: [Boot Store] Caroussel in subpageHi,
Using TheCartPress plugin you can do it easily.
You could use TheCartPress shortcode tool to create product (or post) lists using a carousel loop: loop-carousel-fullwidth.php (included in Boot Store theme)
You can see it in action, TheCartPress demo:
https://demo.thecartpress.com/showcase/Securely you need to customize the loop-carousel-fullwidth.php to suit your needs, duplicate and rename it as loop-mycarousel.php and you will be able to use it from TheCartPress tools.
Also you can create product lists with “TCP Product list” widget, you can select the loop in widget settings.
Best regards