Title: Ryan's Replies | WordPress.org

---

# Ryan

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Customize permalinks problems](https://wordpress.org/support/topic/customize-permalinks-problems/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [3 days, 19 hours ago](https://wordpress.org/support/topic/customize-permalinks-problems/#post-18929162)
 * Hello,
 * Thank you for clarifying.
 * It looks like the issue may be that WordPress is already using blog for the category
   archive URL.
 * For example, this URL works:
 *     ```wp-block-code
       /blog/expert-articles/
       ```
   
 * So WordPress may be treating that as the category archive and according to the
   output of that page on your site that seems to be the case.
 * Then when you try this post URL:
 *     ```wp-block-code
       /blog/expert-articles/how-internet-marketing-increases-business-sales/
       ```
   
 * WordPress may try to read it as another category level instead of a post, and
   that can cause the 404.
 * I would suggest checking this first:
 * **Settings > Permalinks**
 * Then look at the optional field:
 * **Category base**
 * If it is set to:
 *     ```wp-block-code
       blog
       ```
   
 * try removing it or changing it to something else, then click **Save Changes**.
 * For example, you could use:
 *     ```wp-block-code
       /blog/%category%/%postname%/
       ```
   
 * for posts, but avoid also using **blog** as the category base.
 * So the conflict may not be the post slug now. It may be that both the category
   archive and the post permalink are trying to use the same /blog/category/ structure.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Customize permalinks problems](https://wordpress.org/support/topic/customize-permalinks-problems/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [5 days, 2 hours ago](https://wordpress.org/support/topic/customize-permalinks-problems/#post-18927821)
 * Hi,
 * I noticed the URL you are getting has the category twice:
 *     ```wp-block-code
       /blog/expert-articles/expert-articles/how-internet-marketing-increases-business-sales/
       ```
   
 * That usually means one of these things is happening:
    1. The post slug or custom permalink already includes expert-articles/
    2. A permalink/custom permalink plugin has saved a manual URL for the post
    3. The permalink rules need to be refreshed
 * I would suggest checking the post edit screen first. Make sure the post slug 
   is only:
 *     ```wp-block-code
       how-internet-marketing-increases-business-sales
       ```
   
 * and not:
 *     ```wp-block-code
       expert-articles/how-internet-marketing-increases-business-sales
       ```
   
 * Then go to:
 * Settings > Permalinks
 * and click Save Changes without changing anything. This refreshes the rewrite 
   rules.
 * Also check if you are using any permalink-related plugin. If yes, look for a 
   custom permalink value on that post and remove the extra expert-articles/ part.
 * I believe the correct structure should be:
 *     ```wp-block-code
       /blog/category-slug/post-slug/
       ```
   
 * not:
 *     ```wp-block-code
       /blog/category-slug/category-slug/post-slug/
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Anyone know what wp 6.94-en_au update is](https://wordpress.org/support/topic/anyone-know-what-wp-6-94-en_au-update-is/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [3 weeks ago](https://wordpress.org/support/topic/anyone-know-what-wp-6-94-en_au-update-is/#post-18910518)
 * Seems like a language update for en_au for WP 6.94. If you have that language
   enabled on your profile or maybe anyone does then it might download that language
   pack and then it will update it every now and then when an update is released
   for it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2 question about child-theme and extra css file ?](https://wordpress.org/support/topic/2-question-about-child-theme-and-extra-css-file/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [1 year ago](https://wordpress.org/support/topic/2-question-about-child-theme-and-extra-css-file/#post-18483687)
 * Hello,
 * The child theme might be important, it depends if you or whoever created it added
   any code to override anything or added any new features, etc. What files are 
   in the child theme and what do they do? You have to look at them to figure out
   if they are important.
 * If you’re just wondering if a child theme is necessary, it’s not if the parent
   theme does everything you want it to, but since underscores is pretty basic you
   will likely have wanted to add some styles. If it isn’t working you may have 
   not loaded it correctly, but since that theme isn’t intended to use with a child
   theme you could just modify the main theme.
 * That theme is specifically designed to modify without a child theme and use as
   a base to create another theme with rather than using it as a parent theme with
   a child theme.
 * If you’re looking for something more modern that gets updates frequently check
   out [Sage](https://roots.io/sage/). I’m sure there are plenty of others and you
   can always check the WP docs out as well and read up on the FSE or block themes
   which is the newer page editing system built into WP.
 * Best of luck!
 * Ryan
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Documentation for historical WP versions](https://wordpress.org/support/topic/documentation-for-historical-wp-versions/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [1 year ago](https://wordpress.org/support/topic/documentation-for-historical-wp-versions/#post-18483192)
 * Hello,
 * Is this what you’re after? [https://codex.wordpress.org/Creating_a_Search_Page](https://codex.wordpress.org/Creating_a_Search_Page)
 * The old Codex is still available but things have moved to the new articles format.
 * Is there a specific reason you wouldn’t want to update WP? Is it incompatibilities
   with plugins or a theme or do you just not like the block features? I’m just 
   curious and maybe there’s a way around whatever it is that’s stopping you from
   updating if you are at all interested in updating.
 * Ryan
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [A Free Theme](https://wordpress.org/support/topic/a-free-theme/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [1 year ago](https://wordpress.org/support/topic/a-free-theme/#post-18483172)
 * Hello,
 * You could use an e-commerce plugin like WooCommerce and the Storefront theme 
   or any theme that supports WooCommerce such as Kadence, Blocksy, and many others.
 * Then in WP Admin go to Products and edit your product. Down below the Product
   description set it to a variable product. Now you can see below various tabs 
   and you can add variations of it. You can also add attributes to them.
 * [Check here for more info.](https://woocommerce.com/document/variable-product/)
 * Hopefully this is what you’re looking for but if not feel free to post back and
   ask for more help.
 * Ryan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] got CRITICAL Uncaught Error after woocommerce update](https://wordpress.org/support/topic/got-critical-uncaught-error-after-woocommerce-update/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/got-critical-uncaught-error-after-woocommerce-update/#post-16272107)
 * This appears to be an error with Elementor. Perhaps you updated Elementor but
   have yet to upgrade Elementor Pro as well, or perhaps it didn’t complete it’s
   upgrade for some reason. Maybe you can try to manually upload it’s plugin files
   to make sure they’re all there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Email notifications not working](https://wordpress.org/support/topic/email-notifications-not-working-28/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/email-notifications-not-working-28/#post-14150620)
 * I have the exact same issue too.
 * A Stripe payment form isn’t working but the same exact form with PayPal is. I
   have AJAX option on. Going to try with both the AJAX options off maybe.
 * Not only does it not send emails it doesn’t even save the submission in the database
   and occasionally people report other issues with it not working too randomly.
 * Payment goes through. No idea what they actually want until they contact me.
 * Form has pagination so not sure if that could be an issue or what it could be.
 * Update: Apparently it shows an error for them of some sort on submit but I wasn’t
   able to figure out what it is. When I run it in test mode it works perfectly 
   fine.
    -  This reply was modified 5 years, 3 months ago by [Ryan](https://wordpress.org/support/users/rrhode/).
    -  This reply was modified 5 years, 3 months ago by [Ryan](https://wordpress.org/support/users/rrhode/).
 *   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] Personal data export blocked by login page](https://wordpress.org/support/topic/personal-data-export-blocked-by-login-page/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/personal-data-export-blocked-by-login-page/#post-13002075)
 * Sorry, I no longer have that site setup like that so I don’t really know how 
   it should look. I actually switched to using some other plugin for now.
 *   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] Personal data export blocked by login page](https://wordpress.org/support/topic/personal-data-export-blocked-by-login-page/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/personal-data-export-blocked-by-login-page/#post-12999947)
 * I removed the code that was redirecting the login page and let it use it.
 * You could use WordFence to protect your site from brute force attacks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[hCaptcha for WP] sitekey for this hCaptcha is incorrect](https://wordpress.org/support/topic/sitekey-for-this-hcaptcha-is-incorrect/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [6 years ago](https://wordpress.org/support/topic/sitekey-for-this-hcaptcha-is-incorrect/#post-12848256)
 * OK I figured it out. I still had recaptcha enabled on Ultimate Member and didn’t
   realize it was automatically converting it to use hcaptcha. Nice!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] 4.0 and 4.0.1 db-update issue with stock](https://wordpress.org/support/topic/4-0-and-4-0-1-db-update-issue-with-stock/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/4-0-and-4-0-1-db-update-issue-with-stock/#post-12592407)
 * I just got this from upgrading from 3.x to 4.0.1. It appears to be caused by 
   a failed scheduled action.
 * I was testing upgrading locally on WordPress 5.3.2 with Laragon and PHP 7.4.4,
   Maria DB 10.4.12, Apache 2.4.35, Windows 10 if it matters.
 * I don’t see how this could be a plugin conflict since it’s an undefined constant
   in a WooCommerce file.
 * I’m curious what issues I might have due to this fail.
 * Hook: woocommerce_run_update_callback
    Status: Failed Arguments: 0 => ‘wc_admin_update_0251_remove_unsnooze_action’
   Group: woocommerce-db-updates Recurrence: Non-repeating Scheduled Date: 2020-
   03-27 16:17:18 +0000 (6 minutes 3 seconds ago) Log:
 *     ```
       1. 2020-03-27 16:17:18 +0000
       action created
       2. 2020-03-27 16:17:20 +0000
       action started via WP Cron
       3. 2020-03-27 16:17:20 +0000
       unexpected shutdown: PHP Fatal error Uncaught Error: Undefined class constant 'QUEUE_GROUP' in E:\www\example.com\wp-content\plugins\woocommerce\packages\woocommerce-admin\includes\wc-admin-update-functions.php:70 Stack trace: #0 E:\www\example.com\wp-content\plugins\woocommerce\includes\class-wc-install.php(223): wc_admin_update_0251_remove_unsnooze_action() #1 E:\www\example.com\wp-includes\class-wp-hook.php(288): WC_Install::run_update_callback('wc_admin_update...') #2 E:\www\example.com\wp-includes\class-wp-hook.php(312): WP_Hook->apply_filters('', Array) #3 E:\www\example.com\wp-includes\plugin.php(544): WP_Hook->do_action(Array) #4 E:\www\example.com\wp-content\plugins\woocommerce\packages\action-scheduler\classes\actions\ActionScheduler_Action.php(22): do_action_ref_array('woocommerce_run...', Array) #5 E:\www\example.com\wp-content\plugins\woocommerce\packages\action-scheduler\classes\abstracts\ActionScheduler_Abstract_QueueRunner.php(65): ActionScheduler_Action in E:\www\example.com\wp-content\plugins\woocommerce\packages\woocommerce-admin\includes\wc-admin-update-functions.php on line 70
       ```
   
 * Claim ID: 0
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-cli: choose php version](https://wordpress.org/support/topic/wp-cli-choose-php-version/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/wp-cli-choose-php-version/#post-12548749)
 * Sounds like you may want to consider a new host. I personally really like FastComet
   and they have wp-cli built in from the start. Their support is usually great 
   as well.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-cli: choose php version](https://wordpress.org/support/topic/wp-cli-choose-php-version/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/wp-cli-choose-php-version/#post-12546773)
 * What about this: [https://www.knownhost.com/wiki/control-panels/directadmin/wrong-php-version-detected-using-multiple-php-versions](https://www.knownhost.com/wiki/control-panels/directadmin/wrong-php-version-detected-using-multiple-php-versions)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I have a problem with the other attribute](https://wordpress.org/support/topic/i-have-a-problem-with-the-other-attribute/)
 *  [Ryan](https://wordpress.org/support/users/rrhode/)
 * (@rrhode)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/i-have-a-problem-with-the-other-attribute/#post-12544826)
 * Also it would have been great of you to link to your other post here: [https://wordpress.stackexchange.com/questions/360692/i-want-to-add-the-alt-attribute-to-all-the-photos](https://wordpress.stackexchange.com/questions/360692/i-want-to-add-the-alt-attribute-to-all-the-photos)

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

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