Towhid
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Limit excerpt length on shop pagesHey @lrunnells
Insert this in your themes functions.php
add_filter('woocommerce_short_description', 'custom_woocommerce_short_description', 10, 1); function custom_woocommerce_short_description($post_excerpt){ if (!is_product()) { $post_excerpt = substr($post_excerpt, 0, 10); } return $post_excerpt; }
Thanks
Hi @severinen
Insert this in your theme functions.php
add_filter('storefront_product_categories_shortcode_args','custom_storefront_category_per_page' ); // Category Products function custom_storefront_category_per_page( $args ) { $args['limit'] = 10; return $args; }
Check out this tutorial for more storefront customization tips.
Thanks
Forum: Themes and Templates
In reply to: [Storefront] change homepage articleHi
Can you please post your site address here.
Thanks
Forum: Themes and Templates
In reply to: [Storefront] How to remove “Shop by Category” etc. from homepageHi
You can change this section header by using filters provided with Storefront. For example, if you want to change the section title of Homepage Featured Products, insert this in your themes functions.php
add_filter( 'storefront_featured_products_args', 'custom_storefront_product_featured_title'); // Frontpage Featured Products Title function custom_storefront_product_featured_title( $args ) { $args['title'] = __( 'New Featured Products Title Here', 'storefront' ); return $args; }
Here is a detailed tutorial on customizing Storefront Homepage.
Thanks
Forum: Themes and Templates
In reply to: [Storefront] Storefront Main PageHi
You can either increase the header width:
.woocommerce-active .site-header .col-full{ max-width:90%; }
or decrease the title font size:
.site-branding .site-title a { font-size: 50px; }
Thanks
Forum: Themes and Templates
In reply to: [Storefront] sidebar do not floatHi
Can you paste your site address here?
Hi
Insert this in Custom CSS
.storefront-full-width-content .woocommerce-products-header{ padding-bottom:1em; }
Thanks
Forum: Themes and Templates
In reply to: [Storefront] Change Blog LayoutHi
You can insert this in Additional CSS to remove the meta & make the blog section full width:
article aside.entry-meta {display:none;} article.hentry.type-post .entry-content{width:100%;}
Thanks
Forum: Themes and Templates
In reply to: [Storefront] Styling questionHi
Insert this in Additional CSS to hide the search bar.
.site-header .site-search {display:none;}
Thanks
Forum: Themes and Templates
In reply to: [Storefront] Storefront with WooCommerce – Pictures on Shop PageHi
Can you please post a screenshot here?
Can you please post your site address here.
Forum: Themes and Templates
In reply to: [Bellini] Single Product Page: Content not displayedHey @jdembowski
Yes. I’m the theme author ??
Forum: Themes and Templates
In reply to: [Bellini] Single Product Page: Content not displayedHi @ellidoeswp
We need to take a closer look. Can you please send us an email using below contact form:
https://atlantisthemes.com/contact/Thanks
Forum: Themes and Templates
In reply to: [Bellini] Single Product Image not displaying correctlyHi Andy
We implemented Adaptive Background library in Bellini 1.43.5. The way it works – If the image is smaller than the box it contains, the box takes the dominant color. You can upload larger image to fix that issue.
Or do you want to completely remove the adaptive background?
Thanks
Asif- This reply was modified 7 years, 7 months ago by Towhid.