The shortcode generator doesn't work after upgrade and the widget (slider) is now showing ALL the testimonials down the page instead of 1 at a time. Console says
Uncaught Error: Syntax error, unrecognized expression: "div.testimonial_slide"
????jQuery 16 error
Plugin version is: Version 3.9.5
WordPress: 6.6.2
PHP 8.1 and also on 8.2. Not tested with obsolete versions.
]]>
Does anyone know how to export the plugins as the plugin wont load on any sites so we cant export them?
]]>When a YouTube video link is entered into a post, it shows up on the front end as that video embedded in the content, but not in testimonials. This is due to the use of wp_kses_post()
on the testimonial contents, which doesn’t allow iframe
elements.
Unfortunately, there’s no way to override the allowed HTML before the call to wp_kses_post()
, so the only way to get around this is with the wp_kses_allowed_html
filter, which applies to all posts.
Plugin developer(s), please allow video embedding in testimonials, because this creates a richer experience on the site, or at least let site developers choose what to allow via a special filter that only applies to testimonials or a plugin setting.
The allowed HTML also doesn’t contain the type
attribute of scripts, which causes ld+json
to be stripped from the plugin’s Schema Review markup. Besides fixing this, adding a filter for allowed HTML can help work around this.
Uncaught SyntaxError: Unexpected token ‘:’
The issue originated from the plugin file located at /wp-content/plugins/easy-testimonials/include/lib/gp-testimonial.class.php, specifically on line 73. The error was triggered by the use of wp_kses before the output, like this: echo wp_kses($output, $tags);. Consequently, wp_kses was converting <script type=”application/ld+json”> to <script>.
To resolve this issue, I made a modification in wp_kses to allow the ‘script’ tag. The fix involved adding the following line: $tags[‘script’] = array(‘type’ => true);. This is fixed in the plugin file due to a bug in the plugin.
In order to implement the solution, I had to modify the plugin file.
so please fix it and update the latest version
Hi.
How do I get the Easy Testimonials Cycle widget for Elementor?
We have Easy Testimonials v3.9.5 installed, but don’t see the Easy Testimonials Cycle widget in Elementor.
]]>If I update the Easy Testimonials plugin then this page on my site breaks and looks like the screenshot above.
Here are the errors reported:
I have reverted to a previous version for now but would appreciate advise on how to fix and update please.
Thank you
Tamsin
]]>Hello, and help! The ‘easy testimonials’ widget/carousel isn’t working anymore. On the Courses and Weekends page you just see the title, ‘What others are saying about Healing Complex Trauma’, but the list of testimonials beneath it has vanished, and there is no longer a random/rotating testimonial at the top right of each page. I didn’t make any modifications to Easy Testimonials – as far as I can tell :-/
Any help would be very much appreciated
]]>Hi, I’ve just updated the plugin to the latest version and my testimonials are now sitting as a long list on top of each other instead of a slider. I’ve tried deactivating all other plugins to see if there’s a conflict, and I’ve noticed this error in console – https://snipboard.io/ewxnqP.jpg
Are you able to help?
]]>What’s the deal with this plugin? I thought it had been abandoned, yet a new version (v3.9.5) was just released four days ago. Honestly, I’m not sure I can trust these guys anymore. Does anyone have any insight into what’s going on?
]]>Hi
Our testimonial cycle has stopped working. Also when we click previous and next nothing happens. I look at the code and although it looks like a hyperlink, it actually links to nothing. On inspection I get this error message:
Uncaught Error: Syntax error, unrecognized expression: "div.testimonial_slide"
jQuery 26
error
tokenize
select
se
find
find
addInitialSlides
gp_cycle
each
each
gp_cycle
gp_cycle
e
t
setTimeout handlerDeferred/then/l/< c fireWith fire c fireWith ready $ EventListener.handleEvent
jquery.min.js:2:13639
Please could you resolve this please?
]]>If you’re viewing this thread, it’s probably because your Easy Testimonials Cycle Widget is no longer working, and you’ve been unable to get in touch with the developers. I was having the same problem. Here’s the solution.
That’s it! You should be good to go—at least for now. This is only a temporary fix that could break the next time there’s a WordPress update, so I would suggest that you start looking for another testimonial plugin ASAP. Good luck!
]]>The testimonial cycle feature in a widget is no longer working. I’m getting a blank space in my widget area on the front end, and when I inspect the code there isn’t any kind of widget code at all.
]]>I just noticed that despite having not changed the shortcode, my testimonials are no longer cycling. And pressing on the previous or next button doesn’t do anything anymore. So now all of pages with cycling shortcodes show only one testimonial. I have five pages that should show cycling testimonials (each one being a different category). I have checked the shortcodes, and they all look correct. I even tried deleting the shortcode that was there and pasting in a new one. It doesn’t work.
]]>Is it possible to add text translation to star rating text that are printed out?
I add a code that i already use in project but i need it official so i can update plugin without correcting it every time
easy-testimonials.php 534 line
$rating_text = '<span class="rating_text">'. __("Rated",'easy-testimonials') . ' <span class="easy_t_aggregate_rating_top_count">' . $average_rating . '</span>/5 '. __("based on",'easy-testimonials') . ' <span class="easy_t_aggregate_rating_review_count" >' . $total_rated_testimonials . '</span> '. __("customer reviews",'easy-testimonials') . '</span>';
]]>
Hello, folks,
We’ve noticed after a recent update that YouTube embeds no longer show up. Is there a setting we can disable to stop filtering out YouTube embed snippets?
]]>I have noticed that the Easy Testimonials widget has stopped working on my client’s site https://www.greenstripemk.co.uk. The widget was blank other than the heading. By doing test restores of old backups it seems that the problem arose with the v3.93 update as the v3.92 was still working satisfactorily on the website on 9th January. I have reverted to this version temporarily but would appreciate a fix. I am using WordPress 6.1.1 and PHP version 8.4.
]]>After the latest update there is a problem with the Grid layout displaying Schema markup. It appears that the script tags are being stripped out.
]]>In safely_display_testimonial()
, this line:
$tags['script'] = true;
causes the script attribute type="application/ld+json"
to be stripped, which causes script errors. To fix this, this line needs to change to:
$tags['script'] = [ 'type' => true ];
Also, wp_kses()
is now applied twice to the Schema markup, and that’s unnecessary.
In the Classic post editor, when I select any shortcode generation option from the Testimonials widget, there’s a 500 error in the browser console, the below message appears in wp-admin/error_log and nothing more happens.
[16-Jan-2023 01:54:15 UTC] PHP Fatal error: Uncaught TypeError: max(): Argument #1 ($value) must be of type array, int given in ROOT/wp-content/plugins/easy-testimonials/include/lib/GP_Media_Button/gold-plugins-media-button.class.php:141
Stack trace:
#0 ROOT/wp-content/plugins/easy-testimonials/include/lib/GP_Media_Button/gold-plugins-media-button.class.php(141): max()
#1 ROOT/wp-includes/class-wp-hook.php(308): Gold_Plugins_Media_Button->output_media_button_page()
#2 ROOT/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters()
#3 ROOT/wp-includes/plugin.php(517): WP_Hook->do_action()
#4 ROOT/wp-admin/admin-ajax.php(188): do_action()
#5 {main}
thrown in ROOT/wp-content/plugins/easy-testimonials/include/lib/GP_Media_Button/gold-plugins-media-button.class.php on line 141
]]>
I’ve updated to 3.9.3 on several sites and it’s breaking the testimonial widget completely on every one.
The widget no longer displays anything on the front-end.
]]>OK this is a weird one.
We’ve been using this plugin and it’s great.
Today, while working on a category archive page, we noticed that it’s showing us OTHER post types (TOURS) instead of testimonials.
It’s only happening (apparently) on the category archive pages.
It’s fine on the home page; testimonials only there.
Any idea why?
Any idea how to fix?
THANKS!
Trying to email support about billing. emails to [email protected] are bouncing. No other way to contact this company. Need to cancel subscription. HELP!!
]]>Hello
Your plugin is crashing my site;
Fatal error: Uncaught ValueError: DOMDocument::loadHTML(): Argument #1 ($source) must not be empty in wp-content/plugins/easy-testimonials/include/lib/gp-testimonial.class.php:951
It eappears to refer to:
$doc = new DOMDocument();
$doc->loadHTML($html);
$image_tags = $doc->getElementsByTagName('img');
if ( empty($image_tags) ) {
return '';
}
]]>
Fairly recently, we’ve added a testimonials slider to our site – all the various recommendations shifting every 15 seconds or so.
A number of clients have complained about the article text shifting back and forth as the recommendation text changed.
Our tech guy claimed the only solution was a fixed testimonial slider size – but as you can see on the site, that leaves us with a testimonial and a huge stretch of empty space occasionally filled in by the largest testimonial text.
Are there any alternatives that neither shift the text back and forth nor require a fixed slider that takes up more space than the testimonial?
]]>The easy_t_single_testimonial_html
doesn’t seem to be applied to testimonials in a grid (although I haven’t been able to find out why). Please make this bit consistent.
Also, please provide filters for the easy_t_single_testimonial
container classes and every element of the testimonials – author, date, etc. Rather than filtering them through easy_t_clean_html()
, run them through apply_filters()
and use easy_t_clean_html()
as one of those filters.
While adding any Easy Testimonial Gutenberg Blocks in page/post, am getting the below warning
Warning: Cannot update a component (<code>EditorProvider<code>) while rendering a different component (<code>Unknown</code>). To locate the bad setState() call inside<code>Unknown</code>, follow the stack trace as described in https://reactjs.org/link/setstate-in-render
.edit<@https://wordpress.test/wp-content/plugins/easy-testimonials/blocks/testimonials-grid/index.js?ver=1655444168:167:14
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2244:10
Edit@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12920:7
withToolbarControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12275:7
withInspectorControl</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12487:26
custom_class_name_withInspectorControl</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12594:35
withBlockControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36341:33
withDuotoneControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36708:32
withInspectorControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36954:7
queryTopInspectorControls</<@https://wordpress.test/wp-includes/js/dist/block-library.js?ver=016c65731f009ca1e5b5974727017d18:36063:7
withMultipleValidation</<@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:368:9
withDispatch/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4316:46
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2244:10
FilteredComponentRenderer@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:74251:9
BlockEdit@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12981:7
div
Block@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:18670:7
BlockCrashBoundary@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:13330:5
BlockListBlock@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:18699:7
withDataAlign</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12326:7
withBorderColorPaletteStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:32288:7
withColorPaletteStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:34116:7
withFontSizeInlineStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:35342:31
withElementsStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36354:112
withDuotoneStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36752:29
withLayoutStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36974:7
FilteredComponentRenderer@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:74251:9
ifCondition/</<@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2201:8
withDispatch/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4316:46
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2236:12
Items@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31598:7
BlockListItems
div
Root@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31548:7
BlockToolsBackCompat@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:30607:7
BlockList@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31584:3
useNoRecursiveRenders/Provider<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:49319:9
div
WritingFlow@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:20657:7
MaybeIframe@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:3639:7
div
VisualElementHandler@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31540:42
MotionComponent@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31595:35
div
VisualElementHandler@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31540:42
MotionComponent@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31595:35
InsertionPoint@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:25920:7
div
BlockTools@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:48505:7
VisualEditor@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:3675:7
div
div
div
div
InterfaceSkeleton@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:1611:7
Layout@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:8670:7
ErrorBoundary@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:5669:5
BlockRefsProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:9764:7
BlockEditorProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:19415:7
withRegistryProvider</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:19115:9
WithRegistryProvider(BlockEditorProvider)
BlockContextProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12873:7
EntityProvider@https://wordpress.test/wp-includes/js/dist/core-data.js?ver=95df951bbac4c9f2fd2e6da80561595d:5574:7
EntityProvider@https://wordpress.test/wp-includes/js/dist/core-data.js?ver=95df951bbac4c9f2fd2e6da80561595d:5574:7
EditorProvider@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:11581:7
withRegistryProvider</<@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:11346:7
WithRegistryProvider(EditorProvider)
SlotFillProvider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23059:7
provider_SlotFillProvider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23086:5
Provider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23237:7
div
ShortcutProvider@https://wordpress.test/wp-includes/js/dist/keyboard-shortcuts.js?ver=418fddac042f08102c4110f70e13cd47:763:75
Editor@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:8955:7</code></pre>
================================================================================
Warning: Each child in a list should have a unique "key" prop.
Check the top-level render call using <PanelBody>. See https://reactjs.org/link/warning-keys for more information.
SelectControl@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:43338:7
.edit<@https://wordpress.test/wp-content/plugins/easy-testimonials/blocks/testimonials-grid/index.js?ver=1655444168:167:14
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2244:10
Edit@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12920:7
withToolbarControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12275:7
withInspectorControl</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12487:26
custom_class_name_withInspectorControl</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12594:35
withBlockControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36341:33
withDuotoneControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36708:32
withInspectorControls</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36954:7
queryTopInspectorControls</<@https://wordpress.test/wp-includes/js/dist/block-library.js?ver=016c65731f009ca1e5b5974727017d18:36063:7
withMultipleValidation</<@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:368:9
withDispatch/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4316:46
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2244:10
FilteredComponentRenderer@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:74251:9
BlockEdit@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12981:7
div
Block@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:18670:7
BlockCrashBoundary@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:13330:5
BlockListBlock@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:18699:7
withDataAlign</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12326:7
withBorderColorPaletteStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:32288:7
withColorPaletteStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:34116:7
withFontSizeInlineStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:35342:31
withElementsStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36354:112
withDuotoneStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36752:29
withLayoutStyles</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:36974:7
FilteredComponentRenderer@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:74251:9
ifCondition/</<@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2201:8
withDispatch/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4316:46
withSelect/</<@https://wordpress.test/wp-includes/js/dist/data.js?ver=38ad563aa39c8f314fe6f6e430d81a69:4160:31
@https://wordpress.test/wp-includes/js/dist/compose.js?ver=da94d523b115836ddbf0b3b774ddd94a:2236:12
Items@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31598:7
BlockListItems
div
Root@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31548:7
BlockToolsBackCompat@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:30607:7
BlockList@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:31584:3
useNoRecursiveRenders/Provider<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:49319:9
div
WritingFlow@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:20657:7
MaybeIframe@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:3639:7
div
VisualElementHandler@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31540:42
MotionComponent@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31595:35
div
VisualElementHandler@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31540:42
MotionComponent@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:31595:35
InsertionPoint@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:25920:7
div
BlockTools@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:48505:7
VisualEditor@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:3675:7
div
div
div
div
InterfaceSkeleton@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:1611:7
Layout@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:8670:7
ErrorBoundary@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:5669:5
BlockRefsProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:9764:7
BlockEditorProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:19415:7
withRegistryProvider</<@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:19115:9
WithRegistryProvider(BlockEditorProvider)
BlockContextProvider@https://wordpress.test/wp-includes/js/dist/block-editor.js?ver=39c7981dd22ec80281080455892940e6:12873:7
EntityProvider@https://wordpress.test/wp-includes/js/dist/core-data.js?ver=95df951bbac4c9f2fd2e6da80561595d:5574:7
EntityProvider@https://wordpress.test/wp-includes/js/dist/core-data.js?ver=95df951bbac4c9f2fd2e6da80561595d:5574:7
EditorProvider@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:11581:7
withRegistryProvider</<@https://wordpress.test/wp-includes/js/dist/editor.js?ver=3f6371e7599e6cefa5d43fae1b61f643:11346:7
WithRegistryProvider(EditorProvider)
SlotFillProvider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23059:7
provider_SlotFillProvider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23086:5
Provider@https://wordpress.test/wp-includes/js/dist/components.js?ver=79d190e9af232aeaa59c1b40aa22932c:23237:7
div
ShortcutProvider@https://wordpress.test/wp-includes/js/dist/keyboard-shortcuts.js?ver=418fddac042f08102c4110f70e13cd47:763:75
Editor@https://wordpress.test/wp-includes/js/dist/edit-post.js?ver=0066e2a76eff88129280c12c9a52b6b4:8955:7=
]]>
google search console has sent the below
Review snippets issues detected on website.
Search Console has identified that your site is affected by 1 Review snippets issues:
Top Errors
Errors can prevent your page or feature from appearing in Search results. The following errors were found on your site:
Missing field "name"
We recommend that you fix these issues when possible to enable the best experience and coverage in Google Search.
I have checked the forum and changed the “name” as suggested previously however this doesn’t seem to work. Is there another way of fixing it please?
]]>The function easy_testimonials_setup_custom_css()
outputs inline style blocks with the options easy_t_custom_css
, easy_t_custom_tablet_css
and easy_t_custom_phone_css
even when those options are empty.
Please check that the options contain some styles and only output the respective HTML when they do.
It’s also good to provide filters for the output.
]]>I need to delete easy testimonials entirely but there are over 7000 spam testimonials in draft status that I want to delete first before I uninstall the plugin. I can not delete them through the wordpress dashboard because each time I go to view the testimonials it crashes my host.
What are the php tables I need to delete to do this manually?
]]>Your plugin is giving off a message:
PHP Warning: DOMDocument::loadHTML(): Empty string supplied as input in /home/public_html/wp-content/plugins/easy-testimonials/include/lib/gp-testimonial.class.php on line 951
]]>