Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author allaerd

    (@allaerd)

    hi there,

    I am working on the attribute part. Will take me 2 weeks i think.

    Thread Starter nyon

    (@nyon)

    Great, thanks! Again, want to show my appreciation for you developing this for free! The Plugin works like a treat so far!

    Hi there,
    I add this code

    //product attributes
    		if ($num > 17){
    			$prod_catt = array();
    			$catt_count = 0;
    			for ($i = 17; $i < $num; $i++){
    				$custom_field = explode(':', $data[$i]);
    		 		$custom_values = esc_html(stripslashes($custom_field[1]));
    		 		// Text based, separate by pipe
    		 		$custom_values = explode('|', $custom_values);
    		 		$custom_values = array_map('trim', $custom_values);
    		 		$custom_values = implode('|', $custom_values);
    
    			 	$prod_catt[ sanitize_title( $custom_field[0] ) ] = array(
    			 		'name'	=> htmlspecialchars(stripslashes($custom_field[0])),
    			 		'value' => $custom_values,
    			 		'position'	=> $catt_count,
    			 		'is_visible' 	=> 1,
    			 		'is_variation'	=> 0,
    			 		'is_taxonomy'	=> 0
    			 	);
    				$catt_count++;
    
    			}
    			$prod_catt = maybe_serialize($prod_catt);
    			update_post_meta( $post_id, '_product_attributes', $prod_catt);
    		}

    into function woocsv_import_products_from_csv before end of foreach( $content as $data ) {

    Please have you been able to work on the attribute update yet? My very use of the plugin could depend on this! Thanks so much.

    Hi there,

    your plugin is exactly what i have been finding for.

    Can you pls update if attribute functionality is yet added or will be added soon.

    Thanks and great plugin.

    Wellton

    (@wellton)

    How to get attributes to work with this plugin?

    I really need attributes to work and i believe others also need it. Other than that, it’s perfect!

    ormagon

    (@ormagon)

    That would be great indeed. I would like to add things like inner sizes, color, etcetera.

    cjeys

    (@cjeys)

    Could you please explain how the attributes should be formatted in csv?

    when are you planning to release the next update of the plugin with the full attributes import feature?

    Thanks!

    Ramiro

    (@ecovirtual)

    First of all, thank you for the plugin!! It really save me.

    I’m also waiting for the attribute update. If you manage to do it I thing it’s a good idea to put a little price for the plugin. It’s really the only alternative for the 99$ plugin form Woocommerce.

    Thanks again!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘many many more attributes’ is closed to new replies.