ymih22
Forum Replies Created
-
Forum: Plugins
In reply to: [YMC Crossword] Display problemHello!
You will have to make changes to the styles (see screenshot) and then the inputs will have a square shape
Please specify in more detail where and in what place your shortcode does not work. We have reviewed your page – https://sheinllc.jp/en/test-2/ – and the filter is working correctly
- This reply was modified 1 year, 5 months ago by ymih22.
Forum: Plugins
In reply to: [Filter & Grids] Custom sort orderHello!
At the moment there is such a solution. Insert featured posts before the first post in the grid using the hook (https://github.com/YMC-22/smart-filter#list-filters):
/** * Add custom content after every second post * @param {int} increment_post - post counter * @param {array} arrOptions - array of additional post parameters. It includes: - arrOptions['paged'] - page number - arrOptions['per_page'] - number of posts per page - arrOptions['total'] - number of all posts * @returns {string} HTML markup card post */ function ymc_after_custom_layout( $increment, $arrOptions ) { if( $increment === 2 || $increment === ( 2 + $arrOptions['per_page'] ) ) { echo '<article class="post-item"> <h3>My Header</h3> <div>Custom text</div> </article>'; } } add_action( 'ymc_after_custom_layout_545_1', 'ymc_after_custom_layout', 10, 2 );
And then exclude those featured posts from the plugin admin panel.
This requires knowledge of coding (PHP and JS)
- This reply was modified 1 year, 9 months ago by ymih22.
Forum: Plugins
In reply to: [Filter & Grids] Custom sort orderHello!
We would like to clarify with you: do you mean custom sorting of terms or cards (posts)? Please send a screenshot of your filter, indicating what control you want to sort. Thanks.Thank you very much!
We seem to have found the issue. Tonight there will be an update of the plugin and everything will work correctly for you and all posts will be displayed. Thank you for your attention and participation in the development of our plugin.
send info [email protected]
Send a link to your site page where there is a Smart Filter and then we will try to analyze your task in more detail
- This reply was modified 1 year, 9 months ago by ymih22.
Thank you for your offer. We will look into this functionality in the future. Currently, filtering works by the specified taxonomies and terms, and the search for posts occurs in the context of these selected criteria.
Hello!
Currently, the search includes all posts, taking into account the selected taxonomies and terms. Perhaps you mean autocomlete when you enter a phrase in the search field.- This reply was modified 1 year, 9 months ago by ymih22.
Forum: Plugins
In reply to: [Filter & Grids] Update broke filtersPlease rate our work) Thanks
Forum: Plugins
In reply to: [Filter & Grids] Update broke filtersThis was one of the important plugin updates. In the future, such global changes are not yet in sight. Thanks for your feedback.
Forum: Plugins
In reply to: [Filter & Grids] Update broke filtersPlease let us know if you managed to solve this issues.
Forum: Plugins
In reply to: [Filter & Grids] Update broke filtersHi!
We have changed the IDs of all filters inside the plugin. You should now specify the filter name in the following order, for example:
add_filter(‘ymc_post_custom_layout_FilterID_LayoutID’, ‘my_custom_post_layout’, 10, 5);
where FilterID is ID of the filter inside Smart Filter Admin Panel Shortcode tab example [ymc_filter id=’165′]
LayoutID is serial number of the custom filter layout on the page. Can be find by inspecting the filter css class like: data-target-ymc1See documentation on github – https://github.com/YMC-22/smart-filter
This applies to other plugin filters as well. see documentation. Thanks