codings
Forum Replies Created
-
Forum: Plugins
In reply to: [Mail Queue] Manual Send Controls / Pause ButtonThat is exciting! Happy to help. Thank you so much for the excellent plugin and support!
Anyone wanting to prevent use of spaces in usernames, the above code is incorrect.
The correct answer is here, with code below placed in the functions.php (I still think this would be a good option to put in the settings).
add_action( 'um_submit_form_register', 'um_submit_form_register_no_spaces', 9, 1 ); function um_submit_form_register_no_spaces( $args ) { if ( isset( $args['user_login']) && strpos( trim( $args['user_login'] ), ' ' ) > 0 ) { UM()->form()->add_error( 'user_login', __( 'You are not allowed to have spaces in your username.', 'ultimate-member' ) ); } }UM Team, is there a way to add to that function to also prevent use of capitalization in usernames?
Forum: Plugins
In reply to: [Generate Images (AI) - Magic Post Thumbnail] Bulk Generation Status FailedBetter than nothing! At least until you find a way to keep using the Google method. Thank you so much for working on this!
Forum: Plugins
In reply to: [Generate Images (AI) - Magic Post Thumbnail] Bulk Generation Status FailedThank you for the update. Premium user here who mostly uses that method 😛
Looking forward to the fix!
Forum: Plugins
In reply to: [Add Missing Link Titles] What happens when plugin is deactivated?Thank you for the reply!
I think I am reading these as contradictory statements: “You are not setting up anything that will be lost after deactivation. The plugin does not write anything to the database.” If it doesn’t write anything to the database, then it will be lost upon deactivation, right?
If it fills in all of the missing titles, then the plugin is deactivated, do the titles that were filled in when activated become missing/empty titles again, or will the filled in titles remain unchanged from the action taken by the plugin while it was activated?
Thank you again for your hard work on this plugin.
Thank you for the reply.
Can you please add the code below to wp-config.php and check if it solves the issue? I have tried basic settings but can not replicate the issue.
define('AIOS_NO_FIREWALL', true);Done. No difference.
Most of the options are enabled in this install. Will try some other things (deactivate other plugins, test different theme) before sharing settings.
Forum: Plugins
In reply to: [wpForo Forum] Uploading more than one file@ldeschenes plus one on this. It’s really the main thing holding this forum plugin back.
The concept of the Advanced Attachments plugin is great, but the stock upload form and the Advanced Attachments plugin are two extremes. Just a simple method to upload more than one image without a My Media gallery and all the other bells and whistles would be even better for some of us. I would happily pay for a less “advanced” attachments plugin that simply allows more than one basic image upload!
Forum: Plugins
In reply to: [Internal Links Manager] Partial Replacement CheckboxThank you for the reply. Using Version 3.0.0.

Thank you for the reply and the excellent plugin.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Blank Avatars for Registered UsersThank you
Forum: Plugins
In reply to: [Name Your Price: Make Your Own Offer for WooCommerce] Excellent plugin!Thank you!
Forum: Plugins
In reply to: [SlimStat Analytics] 5.2.12 slimstat stopped recording IPExperiencing the same reduced traffic stats in version 5.2.11 and 5.2.12.
@joelfan using the plugin WP Rollback to roll back to to 5.2.10 worked for me.
Hello, I am experiencing the same with Version 13.4.1.2. Rolled back to 13.4.1.1 and it’s creating the feed again.
Thank you for this plugin.
Thank you for the detailed reply and for this plugin.
When the AJAX issue was occurring, I was testing different things and didn’t realize the code was still active. So, it turns out that creating a post type breakdown for search results code (I was trying to separate products from the blog posts) didn’t agree with how the theme delivers results. Your reply wasn’t a waste because it led me further into your documentation.
It’s extra work and your documentation is already better than the majority of plugins, but if you can add screenshots to some pages it might help people understand what to expect from the snippets.
Thanks again!
Thanks @missveronicatv
Will try that. Thank you so much for taking the time to reply and provide the snippet!