YMC
Forum Replies Created
-
Forum: Plugins
In reply to: [YMC Filter] Unable to do anything in the “Edit Filter & Gird” sectionGood Luck
Forum: Plugins
In reply to: [YMC Filter] Unable to do anything in the “Edit Filter & Gird” sectionAll bugs have been fixed! Download the plugin from the WordPress repository https://ww.wp.xz.cn/plugins/ymc-smart-filter and re-upload the plugin archive (and install it) to your site. All errors should disappear. We hope this helps.
Forum: Plugins
In reply to: [YMC Filter] Unable to do anything in the “Edit Filter & Gird” sectionPlease update the plugin.
Forum: Plugins
In reply to: [YMC Filter] Unable to do anything in the “Edit Filter & Gird” sectionWe’re sending you a file that you should minify within the plugin for now. Here’s the path to the file you should completely replace:
wp-content/plugins/ymc-smart-filters/ymc2/src/admin/FG_UiLabels.php
After you make the replacement, please let us know if everything is working correctly in Divi Builder. We look forward to hearing from you.
https://drive.google.com/file/d/1nFGcyQ1DeT1COapzQt-2qT_rGRHn3-nQ/view?usp=sharingForum: Plugins
In reply to: [YMC Filter] Unable to do anything in the “Edit Filter & Gird” sectionHi!
It’s hard to say right now because you’re using the Divi builder, and there might be a conflict somewhere. To understand your problem, we need error logs in the admin panel. Most likely, there’s a problem in the JavaScript scripts of the plugin and the Divi builder. However, this requires more detailed investigation. You can still use an older version of the plugin for now (however, it’s no longer supported). Also, your site may have a cache that needs to be cleared. Remove the plugin and reinstall it after clearing the site’s cache. However, in any case, a conflict between the plugin and external themes (builders) is possible, and this needs to be investigated further!Forum: Plugins
In reply to: [YMC Filter] Date picker – other time option not closing properlyPlease update the plugin.
Forum: Plugins
In reply to: [YMC Filter] Date picker – other time option not closing properlyHi!
Thanks for clarifying this issue. Our specialists will look into it.Forum: Plugins
In reply to: [YMC Filter] Saving filter choices (Cookies, Local storage?)Hi!
To select the desired term in the taxonomy drop-down list, you must implement this customly, as there is no such option in the plugin settings.
Forum: Plugins
In reply to: [YMC Filter] Align Text to ThumbnailHi!
By default, the text under the thumbnail image is aligned to the left of the post card. To control text alignment, use custom CSS. On the current page you provided, the text is aligned to the left. Could you please clarify what you mean if this is not the case?
Forum: Reviews
In reply to: [YMC Filter] Very useful pluginThanks!
Forum: Plugins
In reply to: [YMC Filter] How can I stylize the excerpt?Good Luck!
Forum: Plugins
In reply to: [YMC Filter] How can I stylize the excerpt?This option only truncates the text based on the number of words specified, and that’s all. Highlighting in red requires styles (CSS). To do this, you’ll need to either use a custom post layout (if the structure of the post card differs significantly from the plugin’s default layout) or
Forum: Plugins
In reply to: [YMC Filter] How can I stylize the excerpt?Hi! Use the post card settings: Appearance – Post Settings – Post Excerpt Length
- This reply was modified 4 months ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] Advanced query to filter results based on current taxonomy pageGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Advanced query to filter results based on current taxonomy pageIn the plugin’s callback function, you can specify all the settings you need to achieve the desired result. The WP_Query object allows you to flexibly manage all the settings available for queries (refer to the official WordPress documentation – WP_Query). The plugin operates entirely on the WP_Query core and nothing more. Create a valid query with the required parameters and specify them in the callback function. This will override the plugin’s default settings. By the way, you can combine the default settings with the callback function. For convenience, enable the debugger in the plugin settings to track WP_Query query creation – https://prnt.sc/l6RxwBx2Va54
For example, you can use the following query in the callback function (just specify your parameters):return array( 'post_type' => 'post', 'posts_per_page' => 10, 'tax_query' => array( array( 'taxonomy' => 'leistung', 'field' => 'term_id', 'terms' => $current_term->term_id, ), ), );