Umesh Kumar
Forum Replies Created
-
@zahardoc Thank you so much!
Forum: Plugins
In reply to: [User Taxonomy & Directory] Compatibility with WP 5.6Hey @slayaz, I did check the plugin with 5.6 and it works just fine. It doesn’t seems to cause any trouble with Gutenberg.
So it’s probably something else. Did you try installing it on a new setup or maybe with other plugins deactivated?
Forum: Plugins
In reply to: [User Taxonomy & Directory] Compatibility with WP 5.6@slayaz, Thank you for reporting this and sorry for any trouble that plugin might be causing with Gutenberg.
Give me some time to review this and fix the issue if any.
Thanks, Umesh
Forum: Plugins
In reply to: [User Taxonomy & Directory] Compatibility with WP 5.6Hey @slayaz , Can you list down the issue you’re facing with the plugin?
Thanks, Umesh
- This reply was modified 4 years, 1 month ago by Umesh Kumar.
Forum: Reviews
In reply to: [Lazy Load for Comments] Simple and works@american2020 You can probably use the WordPress Discussion settings to enable comment pagination.
Follow the below steps:1. In your WordPress admin, navigate to Settings > Discussion.
2. Set “Break Comments into pages with” with 5 or 20.This would load your comments with pagination, enabling you to load the comments faster.
Thanks, Umesh
@gastronimo, The query is ok just that the timestamp needs to be inside single quotes and not backtick. Probably the code formatting is changing quotes to backtick.
This should work ok:
CREATE TABLE mydb_smush_dir_images ( id mediumint(9) NOT NULL AUTO_INCREMENT, path text NOT NULL, resize varchar(55), lossy varchar(55), error varchar(55) DEFAULT NULL, image_size int(10) unsigned, orig_size int(10) unsigned, file_time int(10) unsigned, last_scan timestamp DEFAULT "0000-00-00 00:00:00", meta text, UNIQUE KEY id (id), UNIQUE KEY path (path(191)), KEY image_size (image_size) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
Thanks, Umesh
- This reply was modified 6 years, 5 months ago by Umesh Kumar.
@kronos1705, Are you hosted in Russia? Or somewhere else.
Because you might be having problem with Smush because of the recent IP ban in Russia, if that’s the case we will figure out a possible solution.
@kronos1705, We’ve updated the API recently it might be because of that. I’m looking into it.
Thanks, Umesh
- This reply was modified 6 years, 9 months ago by Umesh Kumar.
Forum: Plugins
In reply to: [User Taxonomy & Directory] fatal error on UserTags.phpHey @laurawpheroes,
I wasn’t able to work on it earlier. Apologies for taking so long to respond to you. Since the issue is fixed I thought I’ll just drop you an update.
Thanks, Umesh
Can you guys please contact us via our contact form: https://premium.wpmudev.org/contact
Select “I’ve a different question” from dropdown, in subject “Attn. Umesh Kumar”. Add a link to this thread in message section and send it over.
I’d need some more details from you which I’d communicate to you once you send the request via contact form.
The two problems are different but I’d need to take a look.
Thanks, Umesh
Heya @helloadorable,
Thanks for sharing the detailed information about the issue. I can’t really think of a reason for Smush causing issue with admin-ajax.php so it might be possibly a conflict with other plugin.
Would it be possible for you to deactivate all other plugins and just run Smush and see if the problem persists?
Another option is to re-install the plugin, just to make sure that it is updated properly.
Also, if you could check for any errors in browser console and maybe you can use Query Monitor plugin to check for any other errors.
Let me know how it goes.
Thanks, Umesh
@robinroelofsen, Is it resolved already, I see the thread status been updated to Resolved?
Yep, able to replicate it. Hope to fix it soon.
For the time being, you can add this code to a plugin or theme’s function.php Be very careful while adding the code. This will make sure everything keeps working even if Smush is enabled.
This bit of code removes a JS file that Smush enqueue, which is having conflict with the plugin. Removing this won’t cause or disable any functional issue of Smush.
/** * Dequeue Smush script. * * Hooked to the wp_print_scripts action, with a late priority (100), * so that it is after the script was enqueued. */ function dequeue_smush_script() { wp_dequeue_script( 'smush-backbone-extension' ); } add_action( 'wp_print_scripts', 'dequeue_smush_script', 100 );
Thanks, Umesh
@robinroelofsen, Woah! Quite some debugging there. Thanks for narrowing it down, I’m trying to replicate it.
Sorry for all the trouble that Smush might have caused you.
@kronos1705, Thanks for your patience in here.
Only you’re allowed to update the feedback I don’t have permission for that. So it’d be really amazing if you could please do that.
Thanks already.
Cheers, Umesh