sur
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Boot Store] Displaying blog posts of category in Carousel?Hi,
.slide-summary { display:none; }
Best regards
I can′t replicate your issue.
You could try deactivating other plugins to detect conflicts.Best regards
Forum: Themes and Templates
In reply to: [Boot Store] boot-store and dm-confirm-emailHi, yes, you can use Boot Store to run a blog and an e-Commerce together.
Customer can register in checkout as customer.
Blog user (suscriber users): you can create a Wp menu item linking to the registration page:
<li><a href="https://your-domain/wp-login.php?action=register">Register</a></li>
Or you could create a page promoting and explaining the benefits of registering on the blog and linking to the registration page:
<li><a class=btn btn-large btn-primary" href="https://your-domain/wp-login.php?action=register">Register</a></li>
Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] boot-store and dm-confirm-emailHi,
Note Boot Store 1.6 version remove the register option because it generate issues for many users.
Did you solved the issue
best regardsForum: Themes and Templates
In reply to: [Boot Store] What/where/usage: 'In TCP Loop'?At this point it is not working.
The idea is to have a widgetized area inside your TCP loop, this way you can insert many diferents things (static or dynamic) in your TCP loops.I should delete it or finish it.. what do you think about’
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] Displaying blog posts of category in Carousel?Hi @rustywriter
by default carousel displays last 5 posts.
but when you check “Add to carousel” in one post type, then only checked post types will be visible in carousel.To display posts from a taxonomy (eg category) you must customize your header.php (better create a child theme so upgrades doesn′t overwrite your changes)
Cutom code to display post or any post type in certain category:
header.php from line 158 (version 1.6):Replace:
$carousel_args = array( 'post_type' => get_post_types( array( 'public' => true ) ), 'posts_per_page' => -1, 'post_status' => 'publish', 'order' => 'DESC', 'meta_query' => array( array( 'key' => 'bre_add_to_home_carousel', 'value' => true, 'compare' => '=', ), ), 'fields' => 'ids' );
With (replace people and bob with your values):
$carousel_args = array( 'post_type' => get_post_types( array( 'public' => true ) ), 'posts_per_page' => -1, 'post_status' => 'publish', 'order' => 'DESC', 'tax_query' => array( array( 'taxonomy' => 'people', 'field' => 'slug', 'terms' => 'bob' ) ), 'fields' => 'ids' );
Thanks Karen
Best RegardsForum: Themes and Templates
In reply to: [Boot Store] woocommerceBoot Store has support for TheCartPress plugin, it takes advantage of template tags and template hierarchy from TheCartpress. Securely you could create extra templates to work with woocommerce… I can′t help you because I don′t know woocommerce.
Sorry about the delay in my reply,
Best regardsForum: Themes and Templates
In reply to: [Boot Store] Carousel – timer setHi,
header.php line 155:interval: 8000
Customize with custom value. It would be better to create a child theme with ypur custom header.php so updates not overwrite your changes
Best regards
Forum: Themes and Templates
In reply to: [Boot Store] Changing the foreground's background color?Eg: red background color
#page-top { background-color: #ff0000; }
Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] Specify what order to show the carousel inHi Rusty,
line 164 in 1.6 version.Thanks
Forum: Themes and Templates
In reply to: [Boot Store] Change Log for 1.5.8?Sorry there wasn′t a changelog…
I′ve created it for 1.6 version. In next version I will be more detailed.Thanks
Forum: Themes and Templates
In reply to: [Boot Store] How to change color of text in carouselHi @wishmyr, paste this style in your child theme or in TheCartPress > Appaerance > Custom styles
Eg: red text
#template-carousel .carousel-caption h2 a, .carousel-caption .lead { color: #FF0000; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); }
Best Regards
Forum: Themes and Templates
In reply to: [Boot Store] Caroussel in subpage@staalkop Please download 1.6 version, I think carouselk in subpage is fixed.
best Regards
Forum: Themes and Templates
In reply to: [Boot Store] CarouselHi, Please download 1.6 version, there are some fixes about this post: (template in subpage @nospam2k )
Carousel background image: now has a cover style, so the image will be scaled to fill the carousel area. Anyway recommended size is 1170px*320px
@pelikortti_wbw your issue seems a javascrip conflict, take a look to console to see javascript issues or try deactivating other plugins. (be sure bootstrap javascript is not loading twice)
Best Regards