Title: codings's Replies | WordPress.org

---

# codings

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 81 total)

1 [2](https://wordpress.org/support/users/codings/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codings/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/codings/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/codings/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codings/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/codings/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mail Queue] Manual Send Controls / Pause Button](https://wordpress.org/support/topic/manual-send-controls/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 month ago](https://wordpress.org/support/topic/manual-send-controls/#post-18874568)
 * That is exciting! Happy to help. Thank you so much for the excellent plugin and
   support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Username Spaces](https://wordpress.org/support/topic/username-spaces/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 month, 1 week ago](https://wordpress.org/support/topic/username-spaces/#post-18866327)
 * Anyone wanting to prevent use of spaces in usernames, the above code is incorrect.
 * [The correct answer is here](https://wordpress.org/support/topic/re-restrict-usernames-to-not-include-spaces/#post-16837796),
   with code below placed in the functions.php (I still think this would be a good
   option to put in the settings).
 *     ```wp-block-code
       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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Generate Images (AI) - Magic Post Thumbnail] Bulk Generation Status Failed](https://wordpress.org/support/topic/bulk-generation-status-failed/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 month, 1 week ago](https://wordpress.org/support/topic/bulk-generation-status-failed/#post-18865656)
 * Better 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Generate Images (AI) - Magic Post Thumbnail] Bulk Generation Status Failed](https://wordpress.org/support/topic/bulk-generation-status-failed/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/bulk-generation-status-failed/#post-18860413)
 * Thank you for the update. Premium user here who mostly uses that method 😛
 * Looking forward to the fix!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add Missing Link Titles] What happens when plugin is deactivated?](https://wordpress.org/support/topic/what-happens-when-plugin-is-deactivated/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [2 months, 1 week ago](https://wordpress.org/support/topic/what-happens-when-plugin-is-deactivated/#post-18835266)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] Cannot Edit Images With Plugin AIOS Activated](https://wordpress.org/support/topic/cannot-edit-images-with-plugin-aios-activated/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/cannot-edit-images-with-plugin-aios-activated/#post-18772032)
 * 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.
   >     ```wp-block-code
   >     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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpForo Forum] Uploading more than one file](https://wordpress.org/support/topic/uploading-more-than-one-file/)
 *  [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [4 months, 2 weeks ago](https://wordpress.org/support/topic/uploading-more-than-one-file/#post-18763877)
 * [@ldeschenes](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Internal Links Manager] Partial Replacement Checkbox](https://wordpress.org/support/topic/partial-replacement/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/partial-replacement/#post-18620226)
 * Thank you for the reply. Using Version 3.0.0.
 * ![](https://i0.wp.com/i.imgur.com/oXlaoDE.jpeg?ssl=1)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Maker - Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popup Builder] Deactivated plugin lost all settings](https://wordpress.org/support/topic/deactivated-plugin-lost-all-settings/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [9 months, 4 weeks ago](https://wordpress.org/support/topic/deactivated-plugin-lost-all-settings/#post-18552562)
 * Thank you for the reply and the excellent plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Comments - wpDiscuz] Blank Avatars for Registered Users](https://wordpress.org/support/topic/avatars-37/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [10 months ago](https://wordpress.org/support/topic/avatars-37/#post-18546638)
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Name Your Price: Make Your Own Offer for WooCommerce] Excellent plugin!](https://wordpress.org/support/topic/excellent-plugin-9572/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/excellent-plugin-9572/#post-18470928)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlimStat Analytics] 5.2.12 slimstat stopped recording IP](https://wordpress.org/support/topic/5-2-12-slimstat-stopped-recording-ip/)
 *  [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 year ago](https://wordpress.org/support/topic/5-2-12-slimstat-stopped-recording-ip/#post-18440358)
 * Experiencing the same reduced traffic stats in version 5.2.11 and 5.2.12.
 * [@joelfan](https://wordpress.org/support/users/joelfan/) using the plugin [WP Rollback](https://wordpress.org/plugins/wp-rollback/)
   to roll back to to 5.2.10 worked for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Newest version doesn’t work – 13.4.1.2](https://wordpress.org/support/topic/newest-version-doesnt-work-13-4-1-2/)
 *  [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/newest-version-doesnt-work-13-4-1-2/#post-18273017)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Theme based AJAX load more issue with Relevanssi](https://wordpress.org/support/topic/theme-based-ajax-load-more-issue-with-relevanssi/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/theme-based-ajax-load-more-issue-with-relevanssi/#post-18100658)
 * 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](https://www.relevanssi.com/knowledge-base/search-results-breakdown-by-type/)
   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!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Sync Username on Comments Posted Before Creating Account](https://wordpress.org/support/topic/sync-username-on-comments-posted-before-installing-um/)
 *  Thread Starter [codings](https://wordpress.org/support/users/codings/)
 * (@codings)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/sync-username-on-comments-posted-before-installing-um/#post-17941831)
 * Thanks [@missveronicatv](https://wordpress.org/support/users/missveronicatv/)
 * Will try that. Thank you so much for taking the time to reply and provide the
   snippet!

Viewing 15 replies - 1 through 15 (of 81 total)

1 [2](https://wordpress.org/support/users/codings/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codings/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/codings/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/codings/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codings/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/codings/replies/page/2/?output_format=md)