• Resolved chadrex

    (@chadrex)


    Hello, can I befriend this plugin with plugin:
    https://wordpress.org/plugins/woo-bulk-editor/

    When I load pictures through a tabular editor, I get the wrong thumbnails.

    Those rules didn’t help either:
    add_filter(‘wp_sir_process_media_library_upload’, ‘__return_true’);
    add_filter(‘wp_sir_process_frontend_upload’, ‘__return_true’);

    Can you help me?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Nabil Lemsieh

    (@nlemsieh)

    Hi @chadrex

    When I load pictures through a tabular editor, I get the wrong thumbnails.

    – Did you regenerate thumbnails and purge cache if you’re using a caching plugin?
    – How many products do you have in your shop since the free version allows resizing up to 150 images?
    – Can you share your shop URL or send it to support[at]sirplugin.com

    Best,
    Nabil

    Thread Starter chadrex

    (@chadrex)

    – Regeneration helps (the separate upload via the product editing page also works), but I would like to get the result right after downloading. No caching plugin.
    – Almost pure version woo, goods 10pcs.
    – There’s no url, I’m testing it for the openserver.

    Plugin Author Nabil Lemsieh

    (@nlemsieh)

    I would like to get the result right after downloading

    Can you elaborate please?

    Best,
    Nabil

    Thread Starter chadrex

    (@chadrex)

    Can you elaborate please?

    Wrong the translation, I mean uploading the image through a bulk editor

    Plugin Author Nabil Lemsieh

    (@nlemsieh)

    Hi @chadrex

    Adding this code snippet will enable resizing for images uploaded through Woo Bulk Editor:

    add_filter('wp_sir_is_attached_to', function($return){
    	if(function_exists('wp_sir_is_attachment_upload') && wp_sir_is_attachment_upload()
    		 && wp_get_referer() && strpos(wp_get_referer(), 'post_type=product')
    		 ){
    			 return true;
    		 }
    
    	return $return;
    });
    Thread Starter chadrex

    (@chadrex)

    This is it, thank you so much)

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Work with plugin “WOOBE – WooCommerce Bulk Editor and Products Manager”’ is closed to new replies.