YMC
Forum Replies Created
-
Forum: Plugins
In reply to: [YMC Filter] Advanced query to filter results based on current taxonomy pageThe essence of a callback function is that it overrides the basic filter settings you initially set in the plugin settings. If you specify the taxonomy parameter in the callback function—’taxonomy’ => ‘leistung’—it will completely replace the ‘leistung’ taxonomy in the plugin settings. Callback functions are designed for more fine-grained customization and configuration of the query itself if the plugin’s default settings don’t allow it!
Regarding the second question, this is a completely custom implementation of the functionality.Forum: Plugins
In reply to: [YMC Filter] Advanced query to filter results based on current taxonomy pageHi!
First of all, the filter doesn’t use the WordPress template building architecture that comes with WordPress. It works based on AJAX queries, meaning it’s asynchronous, which allows for complete flexibility in query management. Additionally, the filter uses the global WP_query object, and all its functionality is based on it. You can create a callback function in the Advanced Query plugin settings and then completely override the WP_query object settings to suit your needs. See the documentation for usage:
https://github.com/YMC-22/Filter-Grids?tab=readme-ov-file#advanced-developer-hooks
You configure WP_query yourself by specifying the desired parameters in the callback function. For more details on using WP_query, see the documentation: https://developer.ww.wp.xz.cn/reference/classes/wp_query
We hope this helps you solve your problem.
https://prnt.sc/5NtcV37hbYm4Forum: Plugins
In reply to: [YMC Filter] How can I stylize the excerpt?Hi!
Perhaps you mean this option that controls the display of Truncate Post Excerpt (see screenshot)
Forum: Plugins
In reply to: [YMC Filter] Not Working When Update NeededGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Not Working When Update NeededHi!
It’s hard to say what the problem is. It could be the cache, server settings, and so on… If the plugin works now, then everything is fine. Most importantly, stay tuned for updates. The plugin is constantly being developed and improved! Thanks for using our plugin! Good luck!Forum: Plugins
In reply to: [YMC Filter] Category not displaying on postHi!
Please provide a link to the page with the filter. Then, we need to check the plugin settings. Please provide screenshots or access to the admin panel so we can investigate your issue in more detail.
You may want to customize how the desired elements are displayed in the post card.- This reply was modified 4 months, 3 weeks ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] WPML compatabilityHi!
We’ve verified the translations of all pages, including the pagination buttons (Next and Prev). Everything is translated correctly using the WPML plugin (see screenshots).
Please use the domain name “ymc-smart-filter” as a basis, as the new version of the plugin uses this domain name for translations.
https://prnt.sc/eCUUx6l7hjH9
https://prnt.sc/SXBaJWogAlaE
https://prnt.sc/Y30AYVacSGY6
https://prnt.sc/IYITU8ugxe_oForum: Plugins
In reply to: [YMC Filter] Slow loading of post gridAfter updating the plugin, all settings are completely reset and changed. Here’s a link to the documentation: https://github.com/YMC-22/Filter-Grids/blob/main/UPGRADE-NOTICE.md
You will need to reset all post grid and filter settings. You can revert to the older version of the plugin:
Go to Filter & Grids → Settings in your WordPress admin panel.
Enable the Legacy Mode option.
Click Save settings. If you have cache issues, clear your website.
However, in any case, we recommend using the latest version of the plugin, as the older version is no longer supported!- This reply was modified 4 months, 4 weeks ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] Slow loading of post gridHi!
The problem isn’t with the plugin, but with the server handling the requests. This is a server error, and you should check your hosting settings. Most importantly, you’re using an old version of the plugin, which is no longer supported. You should update the plugin to the new version. To do this, click the green button in the filter list and update to version 3.3.3. But be careful: if you’re not using your own custom templates, you’ll have to edit the code again.
Forum: Plugins
In reply to: [YMC Filter] dependent filterGood Luck!
Forum: Plugins
In reply to: [YMC Filter] dependent filterCurrently, you need to manually close the window by clicking outside the drop-down list area or by clicking the cross icon. To implement your idea, you’ll need to implement this custom way in JavaScript.
Forum: Plugins
In reply to: [YMC Filter] dependent filterHi!
You need to configure the dependent filter correctly. The “No terms available” message indicates that the terms in this taxonomy are unavailable. You need to build a dependency chain between taxonomies and terms. Additionally, the terms must be available in each taxonomy. Carefully check all the settings for this filter, as there are many of them, and it’s difficult for us to advise you without seeing the current settings.
Forum: Plugins
In reply to: [YMC Filter] Select several filters on frontendGood luck!
Forum: Plugins
In reply to: [YMC Filter] Select several filters on frontendUpdate the plugin to the latest version. The update button should be at the top of the page. You are working with an older version.
Forum: Plugins
In reply to: [YMC Filter] Select several filters on frontendHi!
If you need to allow users to select multiple tags within a single taxonomy (category), you should enable the Multiple Taxonomy filter settings option (see screenshot). This will allow users to simultaneously filter posts by multiple criteria (terms). We hope this is what you meant.