Home Forums WoodMart support forum Some issues with the new version

Some issues with the new version

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #419302

    hofitd
    Participant

    Hi,
    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
    Hofit

    #419622

    Luke Nielsen
    Keymaster

    Hello,

    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

    #420052

    hofitd
    Participant

    Hi
    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.
    Thanks

    #420338

    Luke Nielsen
    Keymaster

    Hello,

    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

    #431147

    hofitd
    Participant

    Hi
    Attached are my access details so you can investigate it further.

    #431320

    Luke Nielsen
    Keymaster

    Hello,

    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

    #431553

    hofitd
    Participant

    Hi
    Please try again with the new password.

    #431829

    Luke Nielsen
    Keymaster

    Hello,

    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

    #431834

    hofitd
    Participant

    Solved.
    Thank you very much!

    #431840

    Luke Nielsen
    Keymaster

    You 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

Viewing 10 posts - 1 through 10 (of 10 total)

The topic ‘Some issues with the new version’ is closed to new replies.