Title: royalguy's Replies | WordPress.org

---

# royalguy

  [  ](https://wordpress.org/support/users/royalguy/)

 *   [Profile](https://wordpress.org/support/users/royalguy/)
 *   [Topics Started](https://wordpress.org/support/users/royalguy/topics/)
 *   [Replies Created](https://wordpress.org/support/users/royalguy/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/royalguy/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/royalguy/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/royalguy/engagements/)
 *   [Favorites](https://wordpress.org/support/users/royalguy/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SliceShow] White screen mediauploader](https://wordpress.org/support/topic/white-screen-mediauploader/)
 *  [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [12 years ago](https://wordpress.org/support/topic/white-screen-mediauploader/#post-4092002)
 * in js/custom-js.js
    near line 22
 * replace
 *     ```
       window.send_to_editor = function(html) {
       	imgurl = jQuery('img',html).attr('src');
       	classes = jQuery('img', html).attr('class');
       	id = classes.replace(/(.*?)wp-image-/, '');
       	formfield.val(id);
       	preview.attr('src', imgurl);
       	tb_remove();
       }
       ```
   
 * with
 *     ```
       window.send_to_editor = function(html) {
       	jQuery('body').append('<div id="myTmpDiv">'+html+'</div>');
       	imgurl = jQuery('#myTmpDiv img').attr('src');
       	classes = jQuery('#myTmpDiv img').attr('class');
       	jQuery('#myTmpDiv').remove();
       	id = classes.replace(/(.*?)wp-image-/, '');
       	formfield.val(id);
       	preview.attr('src', imgurl);
       	tb_remove();
       }
       ```
   
 * here, first, i set html response to temp div and then read IMG SRC and CLASSES
   from there and then remove that temp div.
 * Good luck
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Category Thumbnails] No option showing to add/select thumbnail.](https://wordpress.org/support/topic/no-option-showing-to-addselect-thumbnail/)
 *  Thread Starter [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/no-option-showing-to-addselect-thumbnail/#post-7789264)
 * Never mind.
 * i found the solution.
 * all we need to do is, add `add_theme_support( 'category-thumbnails' );` in theme’s
   functions.php file.
 * GREAT plugin.
 * Thanks
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Category Thumbnails] Nice](https://wordpress.org/support/topic/nice-347/)
 *  [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/nice-347/#post-7788000)
 * Hi
 * Can u please help me to start, i unable to find that how to set thumbnail.
 * No option showing to add/select thumbnail.
 * Thanks in advance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPress Newsletters] Not receiving Newsletter(email automatically)](https://wordpress.org/support/topic/not-receiving-newsletteremail-automatically/)
 *  Thread Starter [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [13 years ago](https://wordpress.org/support/topic/not-receiving-newsletteremail-automatically/#post-3995846)
 * Hi,
 * No, no post notifications.
 * I mean just simple newsletter functionality i.e. when someone subscribes to our
   newsletter and s/he starts receiving newsletter/emails automatically.
    Daily 
   or weekly newsletters
 * My case:
    i created two emails(named as :English, German ) and same with lists
   i created two lists (public can subscribe to any). now, i want to send English
   email to English List Subscribers & same with Spanish.
 * Q. is there any way to send emails/newsletter automatically instead of adding
   them to queue for each send.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPress Newsletters] Not receiving Newsletter(email automatically)](https://wordpress.org/support/topic/not-receiving-newsletteremail-automatically/)
 *  Thread Starter [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [13 years ago](https://wordpress.org/support/topic/not-receiving-newsletteremail-automatically/#post-3995841)
 * Hi
 * first of all thanks for your time.
 * no email in queue.
    1. is this plugin sends auto emails(newsletter) to all of
   subscribers or only option is to send from backend.
 * 2.if yes, i have 2 emails and 2 lists (named as english, german)
    point is that
   how plugin came to know that which email is for which list.
 * Thanks
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SendPress Newsletters] Fantastic Newsletter Solution](https://wordpress.org/support/topic/fantastic-newsletter-solution/)
 *  Thread Starter [royalguy](https://wordpress.org/support/users/royalguy/)
 * (@royalguy)
 * [13 years ago](https://wordpress.org/support/topic/fantastic-newsletter-solution/#post-7781276)
 * Thanks for your time.
 * i just posted same with System Info here:
    [http://wordpress.org/support/topic/not-receiving-newsletteremail-automatically?replies=1](http://wordpress.org/support/topic/not-receiving-newsletteremail-automatically?replies=1)

Viewing 6 replies - 1 through 6 (of 6 total)