YMC
Forum Replies Created
-
Forum: Plugins
In reply to: [States Map US] Editor not working in State optionsWe would like to note that initially only text can be added inside the pop-up window. For security reasons, the ability to embed media files and other html text has been disabled. But your proposal will be considered by us in the near future. So far, you can only paste text.
Thanks for your feedback.Forum: Plugins
In reply to: [States Map US] Editor not working in State optionsHello! Are you using Gutenberg to build blocks on the page? Please tell me, you can’t add media files (image) inside the pop-up window? See screenshot.
https://drive.google.com/file/d/1p-cSb7ZgF3WhroQ_mEQ4gLo1JhgGiDhE/view?usp=sharing
https://drive.google.com/file/d/1lKdDqKFIa-Q-D1FX3_qfDTSPJqn9dHzv/view?usp=sharing
- This reply was modified 2 years, 1 month ago by YMC.
Forum: Plugins
In reply to: [States Map US] Trying to install short code in popupHello! Please specify where you want to place your code, in what place?
Your link is unfortunately not working.Forum: Reviews
In reply to: [Filter & Grids] It works well and it’s super easy to configureThank you very much Luca.
Forum: Plugins
In reply to: [Filter & Grids] One of the great plugin!You can create your own custom card and then add your own html code (see documentation) https://github.com/YMC-22/smart-filter#layouts.
Place this code in function.php
Here is an example code:/** * Creating a custom post template * @param {string} layout - HTML markup * @param {int} post_id - Post ID * @param {int} cpt_id - Custom Post Type ID * @returns {string} HTML markup card post */ function custom_post_layout_1($layout, $post_id, $cpt_id) { $layout .= '<h2>'.get_the_title($post_id).'</h2>'; $layout .= '<p>'.wp_trim_words(get_the_content($post_id), 30).'</p>'; $layout .= '<a href="'.get_the_permalink($post_id).'">Read More</a>; return $layout; } add_filter('ymc_post_custom_layout_ID', 'custom_post_layout_1', 10, 3);
Or you can use filter
add_filter('ymc_post_read_more_ID', $ymc_post_read_more, 3, 1);
Replace link Read More with link to cart.
Learn more about the WooCommerce API to create an Add to Cart button.I hope this helps you.
Forum: Plugins
In reply to: [Filter & Grids] One of the great plugin!Added ability to filter Products from WooCommerce plugin.
All post card layouts can be customized to suit your needs. You can use filters for this. See plugin documentation at: https://github.com/YMC-22/smart-filterForum: Plugins
In reply to: [Filter & Grids] One of the great plugin!We will take into account your wishes and get back to you as soon as possible.
Thanks.Forum: Plugins
In reply to: [Filter & Grids] One of the great plugin!Hey, Arun Kumar!
Thanks for your feedback.
This plugin was originally developed without linking with Woocommerce. Therefore, we would like to clarify with you on your questions in more detail and describe your wishes.
1. “Can we show custome post type?”.
2. “Like product with add the cart button in product card?”
Currently, there are the following layouts for filters that can be used:
– Simple Posts Filter (merged taxonomies)
– Grouped Taxonomies Filter
-DropdownFilter
– Custom Filter Layout
What do you mean “provide a list layout for mobile first”.
We will be glad for any suggestions you make to improve our plugin.
Thanks.Forum: Plugins
In reply to: [Filter & Grids] What filters can I useHey ultimat0r!
All plugin settings are located in the admin panel. You can find all options in sections: Layouts, Appearance. If you have any other questions, we will be happy to help you.
Thanks.