Title: Kelly Choyce-Dwan's Replies | WordPress.org

---

# Kelly Choyce-Dwan

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [the tag cloud can not show my selected tag](https://wordpress.org/support/topic/the-tag-cloud-can-not-show-my-selected-tag/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/the-tag-cloud-can-not-show-my-selected-tag/#post-16974920)
 * Hi [@mambabryant](https://wordpress.org/support/users/mambabryant/). The Tag 
   Cloud widget is meant to show all your tags, it can’t be configured to show just
   one. It looks like you’re using the Avada builder plugin, but I’m not familiar
   with it. Are you able to use [the “Tags” block](https://wordpress.org/documentation/article/post-tags-block/)?
 * If that doesn’t help, I recommend trying the [Avada Help Center](https://avada.com/help-center/)
   so Avada’s developers and support community can help you with this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [http 500 – PHP Fatal error: Cannot declare class WP_Metadata_Lazyloader](https://wordpress.org/support/topic/http-500-php-fatal-error-cannot-declare-class-wp_metadata_lazyloader/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/http-500-php-fatal-error-cannot-declare-class-wp_metadata_lazyloader/#post-16974848)
 * Hi [@jingchak](https://wordpress.org/support/users/jingchak/). It looks like 
   there have been other reports of this issue. The core team is trying to determine
   the cause of the issue, you can track that on this ticket: [https://core.trac.wordpress.org/ticket/59057](https://core.trac.wordpress.org/ticket/59057)—
   it could help if you share details about your setup there.
 * The [recommendation](https://core.trac.wordpress.org/ticket/59057#comment:19)
   if you’ve updated to WordPress 6.3, is to check the `wp-settings.php` file and
   make sure it was properly updated— the `class-wp-metadata-lazyloader.php` file
   should not be loaded there.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Block Context in editor.BlockEdit filter](https://wordpress.org/support/topic/block-context-in-editor-blockedit-filter/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/block-context-in-editor-blockedit-filter/#post-13788135)
 * Hm, I tried out your code and I also wasn’t able to get the context to work when
   extending a block. However, if all you want is to check whether you’re in the`
   card/main` block, you could do this:
 *     ```
       const addImageControls = createHigherOrderComponent( ( BlockEdit ) => {
       	return ( props ) => {
       		const isBlockInCard = useSelect( ( select ) => {
       			const { getBlockParents, getBlocksByClientId } = select( 'core/block-editor' );
   
       			const parentIds = getBlockParents( props.clientId, [ 'card/main' ] );
       			const parents = getBlocksByClientId( parentIds );
       			return parents.some( block => 'card/main' === block.name );
       		} );
   
       		if ( props.name === 'core/image' && isBlockInCard ) {
       			// Do your custom stuff here.
       			return <BlockEdit { ...props } />;
       		}
   
       		return <BlockEdit { ...props } />;
       	};
       }, "addImageControls" );
   
       addFilter(
       	'editor.BlockEdit',
       	'gutenstrap/image-context',
       	addImageControls
       );
       ```
   
 * And you don’t need the `addImageContext` function.
 * This uses [`useSelect`](https://developer.wordpress.org/block-editor/packages/packages-data/#useSelect)
   to get data from the block editor, pull out the parents of the current block,
   and checks if any are the `card/main` block.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot Edit in Block Editor](https://wordpress.org/support/topic/cannot-edit-in-block-editor-2/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/cannot-edit-in-block-editor-2/#post-13777867)
 * Hi [@erinvanhandel](https://wordpress.org/support/users/erinvanhandel/). It sounds
   like you’ve tracked the issue to your theme. I took at look at your site, and
   your theme is a child theme of a commercial theme, Samantha. Unfortunately, volunteers
   here don’t have access to commercial themes, so we can’t say why it wouldn’t 
   work.
 * The creators of the theme should be able to help you more, you can contact their
   support here:
 * [https://help.bluchic.com/](https://help.bluchic.com/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“convert to regular blocks” not working since update](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/#post-13777542)
 * This may be a plugin or theme conflict. Please attempt to disable all plugins,
   and use one of the default (Twenty*) themes. If the problem goes away, enable
   them one by one to identify the source of your troubles.
 * If you can install plugins, install and activate “Health Check”: [https://wordpress.org/plugins/health-check/](https://wordpress.org/plugins/health-check/)
 * It will add some additional features under Tools > Site Health. On its troubleshooting
   tab, you can Enable Troubleshooting Mode. This will disable all plugins, switch
   to a standard WordPress theme (if available), and allow you to turn your plugins
   on and off and switch between themes, **without affecting normal visitors to 
   your site**.
 * There’s a more detailed description about how to use the Health Check plugin 
   and its Troubleshooting Mode at [https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/](https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/)
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Image Issue](https://wordpress.org/support/topic/image-issue-30/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/image-issue-30/#post-13773462)
 * Hi [@hsledge](https://wordpress.org/support/users/hsledge/), I think this notice
   is coming from the plugin Smush – Lazy Load Images, Optimize & Compress Images.
   I recommend asking at [https://wordpress.org/support/plugin/wp-smushit/](https://wordpress.org/support/plugin/wp-smushit/)
   so the plugin’s developers and support community can help you with this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“convert to regular blocks” not working since update](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/#post-13773351)
 * Hi [@janschattling](https://wordpress.org/support/users/janschattling/), do you
   see any text in the Developer Console when you click the Convert button? If you
   need, here’s [how to view the Developer Console](https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/#step-3-diagnosis)
   for each browser.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [iFrame issue in Twenty Twenty-One (WordPress 5.6)](https://wordpress.org/support/topic/iframe-issue-in-twenty-twenty-one-wordpress-5-6/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/iframe-issue-in-twenty-twenty-one-wordpress-5-6/#post-13773252)
 * Hi [@marco-raaphorst](https://wordpress.org/support/users/marco-raaphorst/), 
   this issue is already being worked on. You can [track the progress here](https://core.trac.wordpress.org/ticket/52004).
 * Until it’s fixed, you can put the iframe into a Group block, which should fix
   the alignment issue.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Update Button off the Screen](https://wordpress.org/support/topic/update-button-off-the-screen/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/update-button-off-the-screen/#post-13768013)
 * Hi [@1791delegates](https://wordpress.org/support/users/1791delegates/), I think
   that section is being added by a plugin, like something to add fields to the 
   profile screen or a visual editor to the user’s biography.
 * If possible, could you disable all plugins, and use one of the default (Twenty*)
   themes? If the problem goes away, you can enable them one by one to identify 
   the source of your troubles.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Gutenberg Block Template for Page Template or Category](https://wordpress.org/support/topic/gutenberg-block-template-for-page-template-or-category/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/gutenberg-block-template-for-page-template-or-category/#post-13767823)
 * They don’t, no. You’d be able to add the layout you want, but then users could
   still and or remove other blocks.
 * I looked into this a bit more, and it looks like you can filter the settings 
   passed to the editor with [block_editor_settings](https://developer.wordpress.org/reference/hooks/block_editor_settings/).
   So you could do something like this:
 *     ```
       function yourplugin_block_editor_settings( $settings, $post ) {
       	if ( check $post type and category here ) {
       		$settings['template'] = array(
       			array(
       				'core/paragraph',
       				array(
       					'placeholder' => 'Add Description...',
       				)
       			),
       		);
       		$settings['templateLock'] = 'all';
       	}
       	return $settings;
       }
       add_filter( 'block_editor_settings', 'yourplugin_block_editor_settings', 10, 2 );
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Use Website In a Screen-Reader Mode Key site-map pages](https://wordpress.org/support/topic/use-website-in-a-screen-reader-mode-key-site-map-pages/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/use-website-in-a-screen-reader-mode-key-site-map-pages/#post-13767781)
 * Hi [@gabberton](https://wordpress.org/support/users/gabberton/). This could be
   coming from your theme or a plugin for improving your site’s accessibility. Please
   attempt to disable all plugins, and use one of the default (Twenty*) themes. 
   If the problem goes away, you can enable them one by one to identify the source
   of the message.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Gutenberg Block Template for Page Template or Category](https://wordpress.org/support/topic/gutenberg-block-template-for-page-template-or-category/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/gutenberg-block-template-for-page-template-or-category/#post-13767701)
 * Hi [@joshuaharbor](https://wordpress.org/support/users/joshuaharbor/), as far
   as I know, there isn’t a great way to do this. Even from a user perspective, 
   it would be tricky – the person creating the page would need to refresh the whole
   page to make the template take effect, and if they entered any content, it would
   trigger the “The content of your post doesn’t match the template assigned to 
   your post type.” warning.
 * Would [block patterns](https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/)
   help? You could create patterns for the different layouts you want, and post 
   authors would pick the pattern to use.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Video and page title](https://wordpress.org/support/topic/video-and-page-title/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/video-and-page-title/#post-13767221)
 * Hi [@carsten-lorenzen](https://wordpress.org/support/users/carsten-lorenzen/),
   I think you’re using a commercial theme, Supernova, and this is a feature of 
   that theme. Is that correct? If so, please ask in their official support channel.
   Volunteers here don’t have access to commercial themes, so we can’t say why it
   wouldn’t work.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS Borders viewing differently on Safari and other browsers](https://wordpress.org/support/topic/css-borders-viewing-differently-on-safari-and-other-browsers/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/css-borders-viewing-differently-on-safari-and-other-browsers/#post-13767132)
 * Hi [@mrcuta](https://wordpress.org/support/users/mrcuta/), It looks like Safari
   is using the 3px border around the whole element when used with `border-image`.
   Here’s [a discussion with more technical details](https://stackoverflow.com/questions/10164393/use-border-image-only-for-bottom-border-our-css-seems-to-replicate-the-image-ac).
 * You can fix this by setting the border size for the other elements to 0, by adding`
   border-width: 0 0 3px;`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font not working on Mobile Devices](https://wordpress.org/support/topic/font-not-working-on-mobile-devices/)
 *  [Kelly Choyce-Dwan](https://wordpress.org/support/users/ryelle/)
 * (@ryelle)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/font-not-working-on-mobile-devices/#post-13766965)
 * Hi [@redazione1](https://wordpress.org/support/users/redazione1/) – The font 
   needs to be available to the browser to be displayed. You probably have the IBM
   Plex fonts installed on your computer, but not on your phone. You can provide
   the font by using [Google Fonts](https://fonts.google.com/specimen/IBM+Plex+Sans?sidebar.open=true&selection.family=IBM+Plex+Sans|IBM+Plex+Serif),
   and adding the following to your Custom CSS:
 * `@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans');`
    `@import
   url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif');`

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

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