Title: maniu's Replies | WordPress.org

---

# maniu

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postie] Seeing Fatal Error with simple_html_dom](https://wordpress.org/support/topic/seeing-fatal-error-with-simple_html_dom/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/seeing-fatal-error-with-simple_html_dom/#post-15415338)
 * [@wayneallen-1](https://wordpress.org/support/users/wayneallen-1/) Sorry for 
   confusion, I have posted my comment in wrong place:)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postie] Seeing Fatal Error with simple_html_dom](https://wordpress.org/support/topic/seeing-fatal-error-with-simple_html_dom/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/seeing-fatal-error-with-simple_html_dom/#post-15415051)
 * [@wayneallen-1](https://wordpress.org/support/users/wayneallen-1/) “Ultimate 
   Blocks” now has “simple_html_dom_node” class renamed to “ub_simple_html_dom_node”
   but it does not have functions like “file_get_html” and “str_get_html” renamed.
   So even if other plugin checks if class exists, it checks for “simple_html_dom_node”
   and it fails to find it so it loads its own version which leads to fatal error
   because functions are duplicated.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Calendar - Google Calendar Plugin] Calendar drop down empty](https://wordpress.org/support/topic/calendar-drop-down-empty/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/calendar-drop-down-empty/#post-15239839)
 * I had the same issue. Its caused by WP 5.8 using block editor to manage widgets.
   Plugin will not load available calendars for it.
    To fix it, you can replace 
   lines 56-62 in includes/widgets/calendar.php with
 *     ```
       if ( is_admin() || wp_is_json_request() ) {
       	$this->calendars = simcal_get_calendars();
       }
       ```
   
 * Hope that helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Resonar] Featured image not working following upgrade to 5.6](https://wordpress.org/support/topic/featured-image-not-working-following-upgrade-to-5-6/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/featured-image-not-working-following-upgrade-to-5-6/page/2/#post-13992655)
 * This issue is related to jQuery changes in 5.6. Installing “Enable jQuery Migrate
   Helper” and enabling legacy jQuery version makes it work again.
    More proper 
   fix involves changing line 20-in js/functions.js to: `headerImageHeight = $( '.
   header-image' ).length ? $( '.header-image' ).height() : 0,` Hope that helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Revisionize] Is support for Gutenberg planned??](https://wordpress.org/support/topic/is-support-for-gutenberg-planned/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/is-support-for-gutenberg-planned/#post-12235883)
 * Just wanted to note that I have solved all my issues I had with revisionize and
   gutenberg by changing line 242 from:
    `wp_update_post($data);` to `wp_update_post(
   wp_slash($data));`
 * and line 255 from:
    `$new_id = wp_insert_post($data);` to `$new_id = wp_insert_post(
   wp_slash($data));`
 * I hope that it helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Regenerate Thumbnails] Regenerate thumbnails in S3](https://wordpress.org/support/topic/regenerate-thumbnails-in-s3/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/regenerate-thumbnails-in-s3/#post-7308146)
 * Try replacing
    `$fullsizepath = get_attached_file( $image->ID );` line 365 in
   regenerate-thumbnails.php with
 *     ```
       $temp_file = download_url(wp_get_attachment_url($image->ID));
       $relative_file_orginal = get_post_meta( $image->ID, '_wp_attached_file', true );
       $file = array(
       'name' => basename($relative_file_orginal),
       'type' => $image->post_mime_type,
       'tmp_name' => $temp_file,
       'error' => 0,
       'size' => filesize($temp_file),
       );
       $saved = wp_handle_sideload( $file, array('test_form' => FALSE), dirname($relative_file_orginal) );
       $fullsizepath = $saved['file']'
       ```
   
 * I have not tested it with the plugin you are using but this piece of code at 
   least gives a chance for it to work:)
 * PS. Dev, feel free to include this somehow if you think it is worth it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] "Email to User" Not Working](https://wordpress.org/support/topic/email-to-user-not-working-1/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/email-to-user-not-working-1/#post-4210011)
 * [@james](https://wordpress.org/support/users/james/) Laws
 * i might be blind but can you tell me where actually i can find this option? I
   know what i have done, i though this option was removed.
 * 2.2.52 is the first version of plugin i ever used.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] "Email to User" Not Working](https://wordpress.org/support/topic/email-to-user-not-working-1/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/email-to-user-not-working-1/#post-4209971)
 * Yes i have idea:)
 * This is a bug!
 * includes\display\processing\email-user.php
 * line 20 should be:
    `if(isset($field_row['data']['email'])){` and 21 should be:`
   $send_email = $field_row['data']['email'];`
 * send_email > email
 * Plugin author, please include it:)
    Overall, this is very solid and powerful 
   plugin. It really surprised me in positive way!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [GD Star Rating – Change the position of the Rich snippet](https://wordpress.org/support/topic/gd-star-rating-change-the-position-of-the-rich-snippet/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/gd-star-rating-change-the-position-of-the-rich-snippet/#post-2470300)
 * this is the code that you should add in you theme file (probably single.php):
 * <?php do_action( ‘gdsr_gsr_insert_snippet’); ?>
 * that will generate code for google:)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [GD Star Rating Google Rich Snippets](https://wordpress.org/support/topic/gd-star-rating-google-rich-snippets/)
 *  [maniu](https://wordpress.org/support/users/maniu/)
 * (@maniu)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/gd-star-rating-google-rich-snippets/#post-1995791)
 * this is the code that you should add in you theme file (probably single.php):
 * <?php do_action( ‘gdsr_gsr_insert_snippet’); ?>
 * that will generate code for google:)

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