YMC
Forum Replies Created
-
Forum: Reviews
In reply to: [YMC Filter] Best filter pluginThanks
Forum: Plugins
In reply to: [YMC Filter] Can I make it work with my own grid template?Hi!
You can try to set up text truncation in the Excerpt field using the Truncate Post Excerpt plugin option
https://prnt.sc/T8NozotGYlP8
If this does not suit you, then you can override the custom post layout using the filters (hooks) of the plugin
add_filter(‘ymc_post_custom_layout_545_1’, ‘my_custom_post_layout’, 10, 5);See doc – https://github.com/YMC-22/smart-filter
In the custom layout, you can independently create the logic of text truncation and so on. All possible functionality of WordPress and PHP is used here(
We hope this will help you solve your task.- This reply was modified 11 months, 3 weeks ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] Pagination is hidden because of its positionHi!
You should undo the custom styles that were applied to the posts grid columns and then the pagination will be displayed below the grid (see screenshot)
https://prnt.sc/J_W7KdLf8KjlForum: Plugins
In reply to: [YMC Filter] Opens in a new tab when clicking on a filterGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Opens in a new tab when clicking on a filterHi!
Very strange behavior when clicking on the filter buttons. Perhaps you should check all enabled plugins and, if possible, disable them one by one to determine if the plugins conflict. Then check the connected scripts on the site, perhaps something is overriding the default plugin events. In any case, you will need to test this functionality.
Forum: Plugins
In reply to: [YMC Filter] Filter stuck on loadingHi!
Check your scripts for errors and fix them.
Your server takes a very long time to respond, which is why there is no response (check your server) and also possibly your cache.
Your server does not return data in JSON format (check your server settings for correct response)
https://prnt.sc/qBjAgwNRdCLAForum: Plugins
In reply to: [YMC Filter] Issue with “and” taxonomyUse callback function plugin
https://github.com/YMC-22/smart-filter#callback-functionForum: Plugins
In reply to: [YMC Filter] Change date display order?Good Luck!
Forum: Plugins
In reply to: [YMC Filter] Issue with “and” taxonomyHi!
The Hide Term option on the frontend hides them only on the fly (intermediate environment), but does not affect the database query itself. You need to configure the query itself taking into account all the requirements that relate to the global WP_Query object. The plugin provides fine-tuning for receiving filtered posts and works mainly only on the basis of this object. If this is not enough for you, you can use the Advanced Query option and independently specify the parameters for receiving the desired posts in the grid.Forum: Plugins
In reply to: [YMC Filter] Change date display order?Hi!
You need to make edits to the file we specified (screenshot) yourself. Unfortunately, this is beyond the scope of our plugin technical support.Forum: Plugins
In reply to: [YMC Filter] Change date display order?If this is critical for you, you can change the date format to the one you need in the plugin itself. But keep in mind that any update of the plugin will overwrite the data. Here is a screenshot where you can make the changes.
Forum: Plugins
In reply to: [YMC Filter] Search Field Doesn’t Display All OptionsGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Change date display order?Hi!
if you use the filter “Date” there is no such possibility to change the date format. At the moment, dates are displayed in this format: “Y-m-d”. Perhaps in the future, we will be able to implement such a possibility to change the date format.Forum: Plugins
In reply to: [YMC Filter] Search Field Doesn’t Display All OptionsHi!
We’ve looked through all your posts in the grid and found only one match for the title of the post called “Wootton”. It’s possible that your second post has a Draft status. The search is based on the following criteria:
- title
- content
- meta fields
search results display only posts that have been published.
Hi!
You can hide the All button using custom styles.
Use JavaScript hooks to control loading and displaying content inside the filter grid.
https://github.com/YMC-22/smart-filter#js-api-filter–grids