sukiwp
Forum Replies Created
-
Forum: Reviews
In reply to: [Suki] Great theme! Fast & easy to customize.Thanks @wtassis ! Glad you love Suki 🙂
Forum: Reviews
In reply to: [Suki] Very flexible en good working!Thanks @astrid21 🙂
Forum: Reviews
In reply to: [Suki] Great themeThanks Bruno! thanks also for contributing to the French translation 🙂
Forum: Reviews
In reply to: [Suki] Top themeThanks Michael 🙂
Forum: Reviews
In reply to: [Suki] Simple and effectiveThanks @sjanej, glad you like Suki 🙂
Forum: Reviews
In reply to: [Suki] Slim Theme!Thanks for your feedback 🙂
Forum: Themes and Templates
In reply to: [Suki] Moving sidebar above products on mobileCan you try this CSS snippet:
@media screen and ( max-width: 1023px ) { .woocommerce.archive .suki-content-row { display: flex; flex-direction: column-reverse; } }- This reply was modified 6 years, 7 months ago by sukiwp.
Forum: Themes and Templates
In reply to: [Suki] Moving sidebar above products on mobileHi @mecevik
Can you share your page URL?
Forum: Themes and Templates
In reply to: [Suki] Post Meta and Breadcrumb at TopYeah, overriding
suki_entry_meta_elementcould work.Thanks Sanjay, happy to know that you love Suki 🙂
Forum: Themes and Templates
In reply to: [Suki] Whats new in 1.2.0?Forum: Themes and Templates
In reply to: [Suki] Post Meta and Breadcrumb at TopSorry for the long delay on this.
So for your questions:
1. Yes, currently there is no way to include the post meta in the Page Header section. It’s been in our TODO list, but we haven’t found the right implementation for this.
The ideal layout would be: post title, post meta, breadcrumb inside the page header.
2. Currently, there is no available syntax for the Last Modified date. We would consider to add this on the next update.
Regards,
DavidForum: Themes and Templates
In reply to: [Suki] Cart Icon customizationHi @lexroid
Sorry for the long delay.
You can change the cart counter’s style using this CSS selector:
.suki-header-shopping-cart .shopping-cart-count { /* your custom CSS here */ }Regards
Forum: Themes and Templates
In reply to: [Suki] Moving sidebar above products on mobileHi @mecevik
Thanks for using Suki.
As for your question, you can try this Custom CSS to move the Sidebar above Products grid on mobile:
@media screen and ( max-width: 1023px ) { .woocommerce.archive .suki-content-row { display: flex; flex-wrap: wrap; flex-direction: row-reverse; } }Hope this helps 🙂
Forum: Themes and Templates
In reply to: [Suki] How to remove the inline style added by themeYou are welcome Sanjay 🙂
Forum: Themes and Templates
In reply to: [Suki] How to remove the inline style added by themeHi Sanjay,
We found a solution for this. You can try adding this into your
functions.php:function suki_remove_dynamic_css() { remove_all_filters( 'suki/frontend/dynamic_css' ); remove_all_filters( 'suki/frontend/woocommerce/dynamic_css' ); remove_all_filters( 'suki/frontend/pro_dynamic_css' ); remove_all_filters( 'suki/frontend/woocommerce/pro_dynamic_css' ); } add_action( 'wp_enqueue_scripts', 'suki_remove_dynamic_css', 0 );