YMC
Forum Replies Created
-
Forum: Plugins
In reply to: [YMC Filter] Problem with javascriptHi!
Inside the post grid, audio files are launched and played. You need to take into account that the requests in the filter are asynchronous and this requires logic algorithms for working with JavaScript. Use plugin hooks (see docs) to manage the entire loading process.
https://github.com/YMC-22/smart-filter#js-api-filter–gridsForum: Plugins
In reply to: [YMC Filter] Only logged users can see the posts listGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Only logged users can see the posts listHi!
You have a wp is not defined object
This is a library that is connected from the WordPress core. For some reason, the system does not see it. I It is possible that the issue may be caused by plugin conflicts.. Try disabling plugins and checking again. Clear the cache, disable cached plugins.
The plugin connects wp.hooks during plugin initialization, so this is an important point.
https://prnt.sc/KF9q-uoRnu5Q- This reply was modified 1 year ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] Filter & Grid plugin issue, freezes after a few filtersHi!
We tested your filter on the page (https://www.tsvoe.at/vereine/) and would like to note the following:- the server returns “parsererror” – this means that the server returned invalid JSON or Incorrect Content-Type of response.
The thing is that we expect to receive data in JSON format, but we receive something else.
thus, this means that this is a server error of your hosting. Requests are processed periodically. The server works a little slowly and does not always give the necessary answers. Please contact your hosting support with this problem. From our side, I do not see any critical plugin errors. - If the server returns JSON but does not specify Content-Type: application/json, jQuery will not parse it as an object, but will leave it as a regular string. This may lead to errors or parsererror.
- This reply was modified 1 year ago by YMC.
Forum: Plugins
In reply to: [YMC Filter] sidebar filter without toggleHi!
To make sure all filter buttons are always visible in the sidebar, you should apply custom styles to override the default plugin settings. This will make the entire button panel appear open.Forum: Plugins
In reply to: [YMC Filter] Filter & Grid plugin issue, freezes after a few filtersHi!
We have checked the operation of your filter on the site and have not seen any issues with loading the content yet. Posts are loading quickly (less than 1s). Perhaps there is a issues with your hosting (server). Since you have cacheable plugins installed on your site, this will allow the rest of the content to load quickly. Please clarify how and when you have issues loading content.We will be happy to help you.
Forum: Plugins
In reply to: [YMC Filter] Duplicate postsCheck the code for correctness: this is the code you should have
function my_custom_post_layout( $layout, $post_id, $filter_id, $increment_post, $arrOptions ) {
$outfitter_title = get_the_title( $post_id );
$outfitter_link = get_permalink($post_id);
$outfitter_img = get_the_post_thumbnail_url( $post_id, ‘full’ );$layout = ''; $layout .= $outfitter_title; $layout .= $outfitter_link; return $layout;}
add_filter( ‘ymc_post_custom_layout_47569_1’, ‘my_custom_post_layout’, 10, 5 );In addition, fix the errors that are on the site, as this may cause a failure in the execution of Ajax requests – https://prnt.sc/rExvxzsaSvLe
Forum: Plugins
In reply to: [YMC Filter] Duplicate postsWe hope that you were able to solve your issue.
Forum: Plugins
In reply to: [YMC Filter] Duplicate postsHi!
Send us a link to the page of your site where the filter is located. We need to test it on your side since everything works correctly on our side.
- This reply was modified 1 year ago by YMC.
Forum: Reviews
In reply to: [YMC Filter] Powerful, flexible and comprehensiveThanks
Forum: Plugins
In reply to: [YMC Filter] “All Posts” takes ages to loadGood Luck!
Forum: Plugins
In reply to: [YMC Filter] “All Posts” takes ages to loadWe hope you were able to solve your issues.
Forum: Plugins
In reply to: [YMC Filter] “All Posts” takes ages to loadHi!
Send us a link to the page of your site where you observe a delay in receiving a response from the server. We will need to analyze this in more detail.Forum: Plugins
In reply to: [YMC Filter] Sort orderGood Luck!
Forum: Plugins
In reply to: [YMC Filter] Sort orderYes, of course you can use any custom fields inside the post card (for example, ACF and so on). You should override the custom card template using the filter (hook) add_filter(‘ymc_post_custom_layout_545_1’, ‘my_custom_post_layout’, 10, 5);
See the plugin documentation
https://github.com/YMC-22/smart-filter#:~:text=add_filter(%27ymc_post_custom_layout_545_1%27%2C%20%27my_custom_post_layout%27%2C%2010%2C%205)%3B