sukiwp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageDo you mean the cart page? I thought you were talking about the table on the checkout page.
Yes, we have modified the CSS of the cart page to use flexbox. Because it allows us to reposition some table cells. But the principle is still the same, you need to set
border-left: 0andborder-right: 0wherever it fits.The quick way to find the right CSS selectors is by using the Developer Tools on your browser.
Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageYou can add some CSS for the mobile as well. It has the same CSS selectors, but with the addition of media queries.
Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageYou could try this CSS:
.woocommerce table.shop_table {
border-left: 0;
border-right: 0;
}.woocommerce table.shop_table th:first-child, .woocommerce table.shop_table td:first-child, .woocommerce-page table.shop_table th:first-child, .woocommerce-page table.shop_table td:first-child {
padding-left: 0;
}.woocommerce table.shop_table th:last-child, .woocommerce table.shop_table td:last-child, .woocommerce-page table.shop_table th:last-child, .woocommerce-page table.shop_table td:last-child {
padding-right: 0;
}Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageIt’s possible to do. But it’s unlikely to be in our priority list for now.
By “community”, I meant all developers who are using Suki. Suki is an open source project and it’s available on GitHub. Everyone can join and contribute to improve or add new features.
So I was thinking that maybe there is someone that could contribute by creating a separate plugin for the WooCommerce endpoints Page Settings feature.
Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageHi @stevert
Page Settings for each WooCommerce endpoint is not yet available. You can only set the Page Settings on a static page level. In your example, “order received” is an endpoint of the Checkout page. So you can only configure the Page Settings for Checkout page. All endpoints of the Checkout page will inherit the settings.
But it’s totally doable to add the Page Settings on endpoints level. It would be nice to see an additional plugin from our community for this feature.
As for the footer bottom, yes it would be enabled by default. We think it’s the most common and standard way. Of course in your case, it would be tedious works, but if you only have a few static pages, it shouldn’t be a problem.
Regards,
DavidForum: Reviews
In reply to: [Suki] Great theme Great Support Great ProductThanks a lot for your feedback 🙂
Forum: Reviews
In reply to: [Suki] Leanest Theme Ever!Thanks for your feedback 🙂
Forum: Reviews
In reply to: [Suki] really nice for a personal siteThanks Hade! Happy to know Suki works great for you 🙂
Forum: Reviews
In reply to: [Suki] Best Hosting Ever!!!Thanks for your feedback 🙂
Forum: Themes and Templates
In reply to: [Suki] Formatting of Flickr images doesn’t workHi Alfred,
We did some improvements on Gutenberg embed CSS in our latest version. It should have fixed this issue.
I will close this ticket. You can re-open it if you still have the issues.
Regards,
DavidForum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Open via JavascriptHi,
We never tested it using manual trigger via JS. But you have to make sure to call that trigger after all Elementor scripts are initiated. Perhaps using the window load event.
Additionally, you should define the proper display conditions, otherwise, the popup won’t appear.
Regards
Forum: Themes and Templates
In reply to: [Suki] Sidebar Widget Title HeadingsHi,
As mentioned in https://codex.wordpress.org/Designing_Headings, using
<h2>tag as the widget title is normal.But, if you want to really change it to something other than
<h2>, please try this tutorial: https://docs.sukiwp.com/article/tips/changing-widget-titles-heading-level/.Regards
Forum: Themes and Templates
In reply to: [Suki] Formatting of Flickr images doesn’t workHi Alfred,
Looks like the embedded image is indeed very small (only 640px). I think you need to embed image higher resolution.
Regards,
DavidForum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Elementor provides Open By SelectorHi,
Yes, they added Open by Selector option and it works fine.
Some people might feel using the trigger URL (as provided by this plugin) is easier than adding selector. Maybe when you add a link in a content paragraph or text widget, etc.
You can choose whatever works best for you.
Forum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Any solution for hover action?Hi, thanks!
About the hover action: unfortunately no. The popup trigger URL is supposed to be used in a link’s
hrefattribute.Regards