Home › Forums › WoodMart support forum › Some issues with the new version
Some issues with the new version
- This topic has 9 replies, 2 voices, and was last updated 1 year, 11 months ago by Luke Nielsen.
-
AuthorPosts
-
November 7, 2022 at 5:40 pm #419302
hofitdParticipantHi,
The new version is great.
However, I have some issues.On Frequently bought together
1. when searching for a product it only shows tp to 5 results and there is no way to see more than 5 matching products.
2. also it’s impossible to search by a product ID, which sometimes make the search easier (in case you know which product you are searching for)
3. I’ve also noticed that sometimes the main product is not displayed in the results, but only the variables (we want to let the user choose the colors, not us chosing the color for him)
4. in the future – will it be possible to assign each variable it’s own matching FBT products?On the new Variations products feature
is it possible to choose which products to split into several products and which products to keep as one product?
we prefer splitting it when there is a small amount of variables and keep it as 1 product when there are many variables.Thank you
HofitNovember 8, 2022 at 6:10 pm #419622
Luke NielsenKeymasterHello,
1. Sorry but there is no option in Theme Settings available for that.
2. For now, you can search only by the name of the product.
3. Actually, the user can choose the color of the main product (https://monosnap.com/file/BifBRb4R9Yn6cH1ll5LiELqZhYSx7i)
4. I will send your suggestion to the team, they will consider it.
Unfortunately, there is no way to choose which products to split into several products, but thank you for your suggestion.
Kind Regards
November 10, 2022 at 11:56 am #420052
hofitdParticipantHi
Thank you for the reply.
I think I need to explain myself a bit more clearly.
issues 1-3 are more like a bug than a feature request. as it prevents us from choosing the correct product.
I attach a video in Private content so you can see what I’m talking about.
Please advise.
ThanksNovember 11, 2022 at 10:41 am #420338
Luke NielsenKeymasterHello,
Sorry for the delay and thank you for the video explanation.
On my side the main product appeared in the search, could you please provide access to the admin dashboard so I can check and investigate the issue on your side?
https://monosnap.com/file/Z5jULqqn8AvGtsdcavom5dCQE7pChA
As for the search by product ID, there is no working such searching, unfortunately.
I await your response.
Kind Regards
December 25, 2022 at 12:16 pm #431147
hofitdParticipantHi
Attached are my access details so you can investigate it further.December 26, 2022 at 4:01 pm #431320
Luke NielsenKeymasterHello,
Seems that the password is incorrect: https://prnt.sc/mHMR6p1f6wYk
May I request you update it?
I look forward to hearing from you.
Kind Regards
December 27, 2022 at 3:54 pm #431553
hofitdParticipantHi
Please try again with the new password.December 28, 2022 at 4:48 pm #431829
Luke NielsenKeymasterHello,
Please add the below code to the
functions.php
file in your child theme to fix it.if ( ! function_exists( 'woodmart_get_post_by_query_autocomplete' ) ) { /** * Autocomplete by post. * * @since 1.0.0 */ function woodmart_get_post_by_query_autocomplete() { $output = array(); $args = array( 'post_type' => $_POST['value'], 's' => isset( $_POST['params']['term'] ) ? $_POST['params']['term'] : '', // phpcs:ignore 'post_status' => 'publish', 'numberposts' => 20, 'exclude' => isset( $_POST['selected'] ) ? $_POST['selected'] : array(), 'order' => 'ASC', ); $posts = get_posts( $args ); if ( count( $posts ) > 0 ) { // phpcs:ignore foreach ( $posts as $value ) { $output[] = array( 'id' => $value->ID, 'text' => $value->post_title . ' ID:(' . $value->ID . ')', ); } } echo wp_json_encode( $output ); die(); } add_action( 'wp_ajax_woodmart_get_post_by_query_autocomplete', 'woodmart_get_post_by_query_autocomplete' ); add_action( 'wp_ajax_nopriv_woodmart_get_post_by_query_autocomplete', 'woodmart_get_post_by_query_autocomplete' ); }
Kind Regards
December 28, 2022 at 5:40 pm #431834
hofitdParticipantSolved.
Thank you very much!December 28, 2022 at 5:47 pm #431840
Luke NielsenKeymasterYou are welcome!
If there’s anything you need, please write me or another member of our help desk team.
We’re here for you!
Kind Regards
-
AuthorPosts
The topic ‘Some issues with the new version’ is closed to new replies.
- You must be logged in to create new topics. Login / Register