maniu
Forum Replies Created
-
Forum: Plugins
In reply to: [Postie] Seeing Fatal Error with simple_html_dom@wayneallen-1 Sorry for confusion, I have posted my comment in wrong place:)
Forum: Plugins
In reply to: [Postie] Seeing Fatal Error with simple_html_dom@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
In reply to: [Simple Calendar - Google Calendar Plugin] Calendar drop down emptyI 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 withif ( is_admin() || wp_is_json_request() ) { $this->calendars = simcal_get_calendars(); }
Hope that helps!
Forum: Themes and Templates
In reply to: [Resonar] Featured image not working following upgrade to 5.6This 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
In reply to: [Revisionize] Is support for Gutenberg planned??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
In reply to: [Regenerate Thumbnails] Regenerate thumbnails in S3Try 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
@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.
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
In reply to: GD Star Rating – Change the position of the Rich snippetthis 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
In reply to: GD Star Rating Google Rich Snippetsthis 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:)