sukiwp
Forum Replies Created
-
Forum: Reviews
In reply to: [Popup Trigger URL for Elementor Pro] Nice and neatThanks for your feedback ๐
Forum: Reviews
In reply to: [Popup Trigger URL for Elementor Pro] Trรจs pratique :)Merci pour vos commentaires ๐
Forum: Themes and Templates
In reply to: [Suki] A few things..Hi,
We’re not sure yet about when will those features will be released. We put your suggestions into our next features backlog, and they have different priorities. We will work on the higher priority first.
For example, the WooCommerce’s plus-minus quantity input is already being developed right now.
Regards,
DavidForum: Themes and Templates
In reply to: [Suki] A few things..Hi @rockysaxxx
1. This dropdown menu behavior is not yet supported on the current version. However, on the mobile devices, the dropdown menu will open when you click (tap) the parent menu item.
2. Currently, it has no animation at all. We will try to add some simple animation in the future.
3. Thanks for the suggestion, we would surely improve this in the future.
4. That’s a good idea. I think the plus and minus input is a great idea. This is something that we would improve in the future.
Regards,
DavidForum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Can’t get the display conditions rightThanks, Luis!
Forum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] JS ErrorsHi,
Which link / button do you put the popup trigger link on?
Forum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Can’t get the display conditions rightHi Luis,
You can use the Singular type, and then select the specific page in the next option.
Hope this helps.
Regards
Forum: Themes and Templates
In reply to: [Suki] settings customizerHi @andi0tx
Just checked the h3 line height, it works fine. Did you know that blog grid title can be separately configured in “Small Title”? Maybe you have configured the Small Title line height.
About the unit issue, we will fix it in the next release.
Regards
Forum: Reviews
In reply to: [Suki] Great themeThanks for your feedback, Pascal!
Forum: Themes and Templates
In reply to: [Suki] Product titleHi @fellter2
In order to move the product title to be above the product image, you need to do manual custom code and knowledge of WooCommerce hooks.
Also, it would be moved both on desktop and mobile view. You can’t just move it on mobile view.
Regards
Forum: Themes and Templates
In reply to: [Suki] Question backcallAs I mentioned, this is a question for WooCommerce and Collapseomatic. This has nothing to do with Suki theme at all.
You can try to remove the Collapseomatic shortcode wrapper. Let see if the “:” is also added. If yes, then it’s automatically added by WooCommerce.
Forum: Themes and Templates
In reply to: [Suki] Question backcallYou are using
$descriptionwhile it’s not yet defined anywhere inside the function. Of course, it is a blank variable.About the “:”, I think it’s added by default from the plugin. As you can see, we don’t add any “:” in the custom code.
By the way, this is not a theme issue, I just helped you pointing out how to do it. You might need to browse around WooCommerce documentation to know how to fetch the proper custom field you are using.
Forum: Themes and Templates
In reply to: [Suki] Question backcallTry to wrap it with
do_shortcodeSo it will be:
do_shortcode( '[expand title="trigger text"]' . $post_data->post_excerpt . '[/expand]' )If you want to display the custom field, you need to change the
$post_data->post_excerptwith your custom field.Forum: Themes and Templates
In reply to: [Suki] Question backcallHi @sorro445
From what I’ve seen, you want to “insert WooCommerce product description into cart table”. And you want the description to be in an accordion style (using Collapseomatic). This is not related to Suki, but we found something that would be helpful for you.
So the callback that they mention is called “hook” in WordPress terminology. WooCommerce has a hook that allows you to insert the product description into each cart item (maybe after the product name). You would need to do custom coding (via Child Theme or separate plugin) and it would require some PHP knowledge.
Please refer to these articles:
https://www.themelocation.com/display-product-short-description-in-woo/
To use the accordion style from Collapseomatic, you need to change the
$post_data->post_excerptpart to be'[expand title="trigger text"]' . $post_data->post_excerpt . '[/expand]'.Hope it helps ๐
Forum: Themes and Templates
In reply to: [Suki] Woocommerce endpoints/pageYeah, I think the only way to do it is targetting each cell CSS class and apply the no border CSS.
We did a lot of modification to the cart table on mobile view, because we believe it’s more intuitive than the original style.