WordPress.org Forums » All Posts https://wordpress.org/support/forum/accessibility/feed/ Tue, 11 Mar 2025 15:20:44 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/core-web-vital-issue/#post-18340386 <![CDATA[Reply To: Core Web Vital issue]]> https://wordpress.org/support/topic/core-web-vital-issue/#post-18340386 Tue, 04 Mar 2025 06:53:02 +0000 alaricthornton You can improve your Core Web Vitals and accessibility by optimizing your site’s speed, reducing unused JavaScript/CSS, enabling lazy loading for images, and improving mobile responsiveness. Use tools like Lighthouse or PageSpeed Insights to identify specific issues. For accessibility, ensure proper color contrast, alt text for images, and keyboard navigation. If you need professional help, consider hiring a developer to audit and fix these issues.

]]>
https://wordpress.org/support/topic/put-wrong-website/#post-18339709 <![CDATA[Reply To: Put wrong website]]> https://wordpress.org/support/topic/put-wrong-website/#post-18339709 Mon, 03 Mar 2025 19:37:37 +0000 bcworkz Access the phpMyAdmin app via your hosting account. Find your WP site’s database there. Navigate to the wp_options table (the “wp_” part will vary, the “options” part will not). Find your errant entries and correct then directly by editing each errant record.

Do so very carefully, don’t alter other data. To be extra safe, you could first, as a backup, export the table or entire DB as a .sql file. It’s always good to have a recent backup 😉

]]>
https://wordpress.org/support/topic/put-wrong-website/#post-18339706 <![CDATA[Reply To: Put wrong website]]> https://wordpress.org/support/topic/put-wrong-website/#post-18339706 Mon, 03 Mar 2025 19:34:19 +0000 threadi To solve this you have to change the URL in the database or in the wp-config.php file. Both ways are described in the article here: https://developer.wordpress.org/advanced-administration/upgrade/migrating/#changing-the-site-url

If you need help accessing your domain via FTP or an interface, please contact your host’s support team.

]]>
https://wordpress.org/support/topic/put-wrong-website/#post-18339583 <![CDATA[Put wrong website]]> https://wordpress.org/support/topic/put-wrong-website/#post-18339583 Mon, 03 Mar 2025 18:09:07 +0000 colleenginty Hi there. Super new to this- but I put the wrong web address in my settings. Instead of homekeepingacademy.com, I messed with it and mistakenly put THEhomekeepingacademy.com-now I can’t get into my admin at all. Can anyone help!? Thank you so much!!

]]>
https://wordpress.org/support/topic/need-sql-query-to-create-wp_actionscheduler_actions-table-in-database/#post-18338758 <![CDATA[Reply To: Need Sql query to create wp_actionscheduler_actions table in Database]]> https://wordpress.org/support/topic/need-sql-query-to-create-wp_actionscheduler_actions-table-in-database/#post-18338758 Mon, 03 Mar 2025 11:53:35 +0000 threadi This table is not part of WordPress Core. However, it comes with some plugins that include this software component, e.g. WooCommerce. It is therefore not possible to tell you here in the forum what the structure should be. You would have to contact the support team for the plugin in your project that includes this table.

]]>
https://wordpress.org/support/topic/need-sql-query-to-create-wp_actionscheduler_actions-table-in-database/#post-18338539 <![CDATA[Need Sql query to create wp_actionscheduler_actions table in Database]]> https://wordpress.org/support/topic/need-sql-query-to-create-wp_actionscheduler_actions-table-in-database/#post-18338539 Mon, 03 Mar 2025 10:07:48 +0000 davidpalaparthi1234 While checking the server logs, we encountered the following table error in the Apache logs:

WordPress database error:
“Table ‘ABCdev.wp_actionscheduler_actions’ doesn’t exist for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook=’action_scheduler/migration_hook’ AND a.status IN (‘pending’) ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1 made by require_once(‘wp-load.php’), require_once(‘wp-config.php’)”.

Upon checking with our database team, we found that the wp_actionscheduler_actions table is missing from our database. The DB team has suggested creating the missing table, but they require the SQL query to do so.

Since we are not aware of the exact SQL query needed to create this table, could you please provide us with the necessary query or guidance on how to proceed?

Looking forward to your support.

Best regards,
David Palaparthi

]]>
https://wordpress.org/support/topic/cant-log-in-my-wp-admin-for-my-website-update/#post-18337571 <![CDATA[Reply To: Can’t log in my wp-admin for my website update]]> https://wordpress.org/support/topic/cant-log-in-my-wp-admin-for-my-website-update/#post-18337571 Sun, 02 Mar 2025 16:32:24 +0000 threadi @alaricthornton: please create your own topic for your own issue: https://wordpress.org/support/forum/how-to-and-troubleshooting/#new-topic-0

]]>
https://wordpress.org/support/topic/cant-log-in-my-wp-admin-for-my-website-update/#post-18337294 <![CDATA[Reply To: Can’t log in my wp-admin for my website update]]> https://wordpress.org/support/topic/cant-log-in-my-wp-admin-for-my-website-update/#post-18337294 Sun, 02 Mar 2025 12:29:56 +0000 alaricthornton I had the same issue before, and it’s usually caused by a plugin conflict, a corrupted .htaccess file, or PHP errors. Here’s what worked for me:
Disable Plugins – Connect via FTP or cPanel, go to wp-content/plugins, and rename the folder to plugins_old. This will deactivate all plugins. Try logging in.

Check .htaccess – Rename the .htaccess file in your root directory to .htaccess_old, then try logging in. If it works, reset permalinks in Settings > Permalinks.

Increase PHP Memory – Add this to wp-config.php:

define(‘WP_MEMORY_LIMIT’, ‘256M’);
Enable Debug Mode – Add this to wp-config.php to see errors in wp-content/debug.log:

define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
If none of these work, it might be a hosting issue—reaching out to your provider could help. Hope this helps!

]]>
https://wordpress.org/support/topic/how-to-add-aria-live-property-to-notice/#post-18313665 <![CDATA[Reply To: How to add aria-live property to notice]]> https://wordpress.org/support/topic/how-to-add-aria-live-property-to-notice/#post-18313665 Tue, 18 Feb 2025 14:11:22 +0000 Andrea Roenning When I test the following JSX, I don’t see an aria-live attribute added to the HTML output in the editor

JSX
<Notice status="warning" politeness="polite" isDismissible={false}> Here is a test notice</Notice>

HTML
<div class="components-notice is-warning"><div data-wp-c16t="true" data-wp-component="VisuallyHidden" class="components-visually-hidden ec-fd-ad-ac-adbdbfb-0 e19lxcc00" style="border: 0px; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; overflow-wrap: normal;">Warning notice</div><div class="components-notice__content">Here is a test notice<div class="components-notice__actions"></div></div></div>

]]>
https://wordpress.org/support/topic/how-to-add-aria-live-property-to-notice/#post-18307223 <![CDATA[How to add aria-live property to notice]]> https://wordpress.org/support/topic/how-to-add-aria-live-property-to-notice/#post-18307223 Fri, 14 Feb 2025 21:46:14 +0000 Andrea Roenning The developer documentation states that in the block editor, the notice will accept a property of politeness with a value of assertive or polite. In testing a warning notice with a politeness value of polite, I am unable to see an aria-live property on the notice HTML.

]]>