Jonathan Bossenger
Forum Replies Created
-
Forum: Accessibility
In reply to: Audio Description for menus/navigationAha, I see, gotcha.
I’m not personally aware of any plugins that do this, but a quick search of the plugins repository indicates there are some options you can try.
Forum: Accessibility
In reply to: Audio Description for menus/navigationHello @dancingbear1965
Can you confirm, do you want the test of the menu items to be read out when a user hovers over them with a mouse, or do you want to make sure that the menus are accessible, and that screen readers can access their content correctly?
Forum: Localhost Installs
In reply to: HTML differences between WAMP and “live”Hi @michaelh99
This looks like it’s related to the default responsive image support in WordPress.
To start, can you check if your WAMP environment is able to create the resized images on upload?
To do this, upload an image either to a post, page, or the media library, then open your Windows Explorer, browse to the
/wp-content/uploads/2023/09directory, and see if any additional resized images have been created alongside the original upload.If it does not create any additional resized images, you might need to check if the PHP GD extension is enabled on your WAMP environment.
Forum: Fixing WordPress
In reply to: Excerpt not showing on Tag archive pageHello @onsensuki94
The first thing you could try is to test if the
get_the_excerptfunction is able to generate the excerpt on that specific post.Do you have a way to run arbitrary PHP code on your WordPress site, maybe in a custom plugin or a child theme functions.php?
If you do, please try to run the following PHP code, replacing the number 1 with the post ID of that post, and see what is output.
echo get_the_excerpt(1);Forum: Developing with WordPress
In reply to: How to intregrate WhatsApp calls to WordPress?Hello @eulerarthur
You would probably need to make requests to the WhatsApp API, and then depending on where you want to access the API, either make an HTTP request from PHP or use something like Axios to make a request from JavaScript.
This also depends on whether the WhatsApp API supports voice calls, which looking at the API documentation, it does not currently seem to do so, but you could confirm this by asking the folks at Meta.
If you want to integrate WhatsApp chat, there do seem to be a number of plugins available to do this.
Forum: Fixing WordPress
In reply to: stray closing p tagHello @vi54
Are you using the block editor or the classic editor?
I just tested this out in the block editor in a post, and when I added an empty paragraph, the opening <p> and closing </p> tags were present in my RSS feed.
If you are using the block editor, is there something else that is possibly processing your post content, and causing this error?
Forum: Fixing WordPress
In reply to: WP Cron – Task scheduler past due issuesHello @rhenalyn
Are you able to share a screenshot of the error you are seeing?
Forum: Fixing WordPress
In reply to: Website problemsHello @jorgensenson23
You mentioned you are with Bluehost, are you able to use a Bluehost staging environment to make a copy of the site, and then downgrade the staging site’s WordPress version to 6.3 or the latest 6.2 (which would be 6.2.2) to see if it reverts the issues.
If it does, do you have any custom plugins or custom code in a theme that might be breaking due to the upgrade? I know that 6.3 included quite a few changes, so if any plugins or a theme were not updated, it could cause this.
Forum: Fixing WordPress
In reply to: 6.2.2 keeps trying to ‘upgrade’ to 4.6.1Hi @steveua
Can you check what’s currently in your wp-includes/version.php file? It might be that this file is either not readable or out of date?
Forum: Developing with WordPress
In reply to: find where synced pattern is usedHi @bobstayton
I’m not aware of any tool that does this, but if you have access to your database, you could run a SQL query on the posts table to search the post_content field for your synced block.
The first step would be to get the code for the synced block. So for example created a synced block in a post with some text and an image, then I switched to the code editor view and the code for the synced block looked something like this
<!-- wp:block {"ref":77} /-->Then, in my database tool (I use phpmyadmin) I can run the following query on the wp_posts table
SELECT * FROMwp_postsWHEREpost_contentLIKE '%<!-- wp:block {\"ref\":77} /-->%'Note the backslashes before the ” characters, this is required to escape the quotes.
This query returns a result of all the records (posts, pages, templates) that include the synced pattern code.
Forum: Developing with WordPress
In reply to: WordPress plugin: props parameter is empty in save methodHi @davaaron
Are you able to share the full plugin code here, either through GitHub or some other code hosting platform?
The reason I ask is that there might be something outside the Edit and save that could be causing this, and it will make it easier for me to debug the issue if I have the full code.
- This reply was modified 2 years, 8 months ago by Jonathan Bossenger.
Forum: Developing with WordPress
In reply to: Can’t add site url by using rest apiHello @topedan
Is the /wp/v2/sites endpoint something that is added to WordPress by a theme or plugin? I’m not aware of a sites endpoint, and I don’t see one in the WP REST API reference of core endpoints.
I’m glad you were able to get it sorted out.
Hi @mondayzpl
You mentioned that this happens on both product and news custom post types. Do you have any background processes that run (something automated or using WP Cron) that could cause this?
Forum: Networking WordPress
In reply to: Blog_id issues on Multisite NetworkHi @hilgo.
The problem you’re describing sounds like the template being used to render the home page for each subdomain is somehow switching to the main blog to get something, but then not switching back to the subdomain blog.
I noticed you posted this question about a week ago, so before I start suggesting troubleshooting steps, I wanted to first check whether you’ve been able to figure anything out in the meantime.