WordPress.org Forums » [Gutenberg] Support https://wordpress.org/support/plugin/gutenberg/feed/ Thu, 09 Jan 2025 13:54:43 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/missing-link-on-cover-block/ <![CDATA[Missing link on cover block]]> https://wordpress.org/support/topic/missing-link-on-cover-block/ Sat, 04 Jan 2025 18:56:44 +0000 panconpescao Replies: 0

Pretty much title, i need to add a link to a cover block but doesn’t give me the option to, what i could do?

I am using editorskit also

]]>
https://wordpress.org/support/topic/translation-issue-with-the-comments-link-block/ <![CDATA[Translation issue with the “Comments Link” block]]> https://wordpress.org/support/topic/translation-issue-with-the-comments-link-block/ Wed, 18 Dec 2024 02:06:44 +0000 Adeline Replies: 0

Hello,

I am experiencing an issue with the translation of the “Comments Link” block in the Gutenberg plugin.

When I place this block in the site editor, it is correctly displayed in French. For instance, if there are no comments, the text displayed is “aucun commentaire”.

However, once the site is published, the same block appears in English: “no comments” instead of “aucun commentaire”.

Here are some additional details:

  • My site is set to French as the default language.
  • The WordPress version I’m using is 6.7.1.
  • The Gutenberg version installed is 19.8.0.
  • I cleared the cache of my site and browser, but the issue persists.

Could you help me understand why this inconsistency occurs and how to fix it?

Thank you for your assistance!

]]>
https://wordpress.org/support/topic/wrong-gutember-editor-formatting/ <![CDATA[wrong Gutember editor formatting]]> https://wordpress.org/support/topic/wrong-gutember-editor-formatting/ Mon, 16 Dec 2024 10:29:31 +0000 paolatarocchi Replies: 0

After updating the Hello theme, the gutember editor suddenly lost formatting. Elementor support says to write to you thank you

]]>
https://wordpress.org/support/topic/doesnt-gutenberg-come-with-responsive-header-and-paragraph-blocks/ <![CDATA[Doesn’t Gutenberg come with responsive header and paragraph blocks?]]> https://wordpress.org/support/topic/doesnt-gutenberg-come-with-responsive-header-and-paragraph-blocks/ Fri, 13 Dec 2024 05:46:46 +0000 heheha Replies: 1

Doesn’t Gutenberg come with responsive header and paragraph blocks? Doesn’t Gutenberg come with responsive header and paragraph blocks? I’m adding headings and paragraph blocks to add text to a page, but I can’t set different font sizes individually for computer, tablet, and mobile, and when I set the font for the mobile, the font on the computer and tablet will change with it.

]]>
https://wordpress.org/support/topic/weird-behavior-on-widgets-2/ <![CDATA[Weird Behavior on Widgets]]> https://wordpress.org/support/topic/weird-behavior-on-widgets-2/ Mon, 09 Dec 2024 16:01:09 +0000 2chicks Replies: 1

In widgets, when I click the + button (inside the widget, not the top left) to add a block to a widget, then click Browse All, the modal closes. This is unexpected and non-functional behavior. This happens across multiple sites with many different themes. It happens in sites with no plugins. Instead, if I hit the blue + at the top of the widget page, a fly out appears and I can see all of the available blocks and add one to the widget.

]]>
https://wordpress.org/support/topic/my-pages-are-no-longer-editable/ <![CDATA[My pages are no longer editable]]> https://wordpress.org/support/topic/my-pages-are-no-longer-editable/ Thu, 05 Dec 2024 15:51:38 +0000 sonnjohnek Replies: 1

As of this morning, I can not edit any of my page content. I get a message saying, “This will be your post’s content block. It will display all the blocks in any single post or page.” I can still edit post content. Just not pages.

]]>
https://wordpress.org/support/topic/problems-with-the-alignment-of-the-designed-header/ <![CDATA[Problems with the alignment of the designed header]]> https://wordpress.org/support/topic/problems-with-the-alignment-of-the-designed-header/ Thu, 05 Dec 2024 03:05:40 +0000 heheha Replies: 1

1, the first picture is the style I designed in the editor, the containers are horizontally aligned, but after publishing it becomes vertically aligned, why is that?
2, there is a large margin on both sides of the edit area in the editor page, causing the image to not display fully when I add a larger image. Like this picture below

]]>
https://wordpress.org/support/topic/adding-product-categories-to-query-block/ <![CDATA[Adding Product Categories to Query Block]]> https://wordpress.org/support/topic/adding-product-categories-to-query-block/ Tue, 03 Dec 2024 18:24:27 +0000 hebhansen Replies: 0

Hey Gutenbergs

I am adding product taxonomy to Gutenberg Query Block: Product Categories, Product Tags and Product Attributes. Not as filters under taxonomy but as post types, so that Query can throw out a grid of product categories with a nice icon and overlay txt etc.

I have succesfully added the 3 taxonomies to the custom > post type selector like so:

// Register WooCommerce Taxonomies (Product Categories, Product Tags & Product Attributes) as Post Types for the Query Block
function draupnir_add_product_taxonomies_to_query_block() {
// Register Product Categories as a custom post type
register_post_type( 'product_cat', array(
'label' => __( 'Product Categories', 'draupnir-9' ),
'public' => true,
'show_in_rest' => true,
'rest_base' => 'product_cat', // REST API endpoint
'supports' => array( 'title' ), // Only show the title for categories
'show_in_graphql' => true,
'has_archive' => false,
'show_ui' => true,
));

// Register Product Tags as a custom post type
register_post_type( 'product_tag', array(
'label' => __( 'Product Tags', 'draupnir-9' ),
'public' => true,
'show_in_rest' => true,
'rest_base' => 'product_tag', // REST API endpoint
'supports' => array( 'title' ), // Only show the title for tags
'show_in_graphql' => true,
'has_archive' => false,
'show_ui' => true,
));

// Register Product Attributes as custom post types (for all attribute terms)
register_post_type( 'pa_*', array(
'label' => __( 'Product Attributes', 'draupnir-9' ),
'public' => true,
'show_in_rest' => true,
'rest_base' => 'pa_*', // REST API endpoint
'supports' => array( 'title' ),
'show_in_graphql' => true,
'has_archive' => false,
'show_ui' => true,
));
}
add_action( 'init', 'draupnir_add_product_taxonomies_to_query_block' );

Now I need to loop toplevel if no filters are set and then filter/select fx a category as top level to filter children cats. Here I try to add taxonomy filter, which does not happen. Why?

// Add taxonomy filters to the Query Block in the Full Site Editor
function draupnir_add_taxonomy_filters_to_query_block( $settings ) {
// Check if we are in the block editor (FSE)
if ( isset( $settings['core/query'] ) ) {
// Add support for taxonomy filters for product categories, product tags, and attributes
$settings['core/query']['supports']['filters'] = array(
'taxonomy' => array(
'product_cat' => __( 'Product Categories', 'draupnir-9' ),
'product_tag' => __( 'Product Tags', 'draupnir-9' ),
'pa_*' => __( 'Product Attributes', 'draupnir-9' ),
),
);
}
return $settings;
}
add_filter( 'block_editor_settings_all', 'draupnir_add_taxonomy_filters_to_query_block' );

Finally I try to get top level categories if no filters are set….

// Filter the query for top-level product categories when no filters are applied
function draupnir_set_default_category_query( $query_args, $block_instance ) {
// Only apply this filter to the Query Block for Product Categories
if ( isset( $block_instance['post_type'] ) && 'product_cat' === $block_instance['post_type'] ) {
// If no filters are set, return top-level categories
if ( empty( $block_instance['filters'] ) ) {
// Set the parent parameter to 0 to get top-level categories
$query_args['tax_query'] = array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => 0, // Parent 0 for top-level categories
'operator' => 'IN',
),
);
} elseif ( isset( $block_instance['filters']['product_cat'] ) ) {
// If a specific category filter is selected, make sure the parent category is included
$query_args['tax_query'][] = array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $block_instance['filters']['product_cat'],
'operator' => 'IN',
);
}
}

return $query_args;
}
add_filter( 'block_query_args', 'draupnir_set_default_category_query', 10, 2 );
  • draupnir is the name of my child theme

Can anyone give me advice on how to get this further?

  • Tax is available in selector
  • Under filters taxonomy does not show
  • Nothing is actually queried, result is empty
  • I should be able to select category by name, once category is selected, this I cannot

Wishlist:

How can I make image size/res selectible in the settings panel of editor. I would prefer if this was default wordpress, rather than the woo formats (Original, 4:3, 3:4, 3:2, 2:3 etc). I hope that makes sense 🙂

How can we push this to core? Should it go in woo or go in Gutenberg?

]]>
https://wordpress.org/support/topic/wp-bakery-to-elementor-shifting/ <![CDATA[WP Bakery to Elementor Shifting]]> https://wordpress.org/support/topic/wp-bakery-to-elementor-shifting/ Tue, 03 Dec 2024 11:08:59 +0000 junaidkhalil Replies: 1

We’ve created pages using Gutenberg and currently have WP Bakery as the active page builder. If we switch to Elementor, will it affect or disrupt the current design of the pages created with Gutenberg?

]]>
https://wordpress.org/support/topic/block-social-lcon-cant-be-inserted/ <![CDATA[Block “Social lcon” can’t be inserted.]]> https://wordpress.org/support/topic/block-social-lcon-cant-be-inserted/ Sat, 30 Nov 2024 15:14:15 +0000 xuexuelive Replies: 1

I can’t insert the spotify link module, when I click on it it says Block “Social lcon” can’t be inserted.

]]>
https://wordpress.org/support/topic/gutenberg-editing-pages-cant-fully-pre-empt-the-entire-page/ <![CDATA[<abbr title="Not Safe For Work / Mature content">[NSFW]</abbr> Gutenberg editing pages can’t fully pre-empt the entire page]]> https://wordpress.org/support/topic/gutenberg-editing-pages-cant-fully-pre-empt-the-entire-page/ Thu, 28 Nov 2024 09:12:56 +0000 heheha Replies: 0

The area in the Gutenberg editor that displays the block is only part of the center, with large margins on the left and right sides, which leads to the fact that when I set the height of the container higher, and add an image to the container, half of the image doesn’t show up in the editor any more, which prevents me from seeing the effect of the adjustment in real time. Where can I adjust this please.

]]>
https://wordpress.org/support/topic/write-and-design-modes-missing-on-version-19-7/ <![CDATA[Write and Design modes missing on version 19.7]]> https://wordpress.org/support/topic/write-and-design-modes-missing-on-version-19-7/ Wed, 27 Nov 2024 15:53:06 +0000 rose18 Replies: 0

On version 19.4, it introduced Write and Design modes in the top toolbar:

However, on version 19.7, I can’t find those modes. Was this removed from the latest version? If not, where can I switch to ‘Write’ mode?

]]>
https://wordpress.org/support/topic/publishing-failed-you-are-probably-offline-error-with-gutenberg/ <![CDATA[“Publishing failed. You are probably offline.” Error with Gutenberg]]> https://wordpress.org/support/topic/publishing-failed-you-are-probably-offline-error-with-gutenberg/ Sun, 17 Nov 2024 16:56:20 +0000 Vasantsinh Rajput Replies: 0

Issue Summary:
I’ve set up a new WordPress website using the following theme and plugins:

  • Active Theme: Twenty Twenty-Five
  • Active Plugins: Gutenberg and WooCommerce

When I try to create or publish a new page or post, I encounter the error:
“Publishing failed. You are probably offline.”

Additionally, the Full Site Editor fails to load. Checking the browser console, I see the same error:
“Publishing failed. You are probably offline.”

—–

Steps to Reproduce:

  1. Activate the Twenty Twenty-Five theme.
  2. Activate the Gutenberg and WooCommerce plugins.
  3. Navigate to Posts > Add New or Pages > Add New.
  4. Attempt to publish the post/page or access the Full Site Editor.

—–

Additional Details:

  • WordPress Version: 6.7
  • PHP Version: 7.4.33
  • WooCommerce Version: 9.4.1
  • Gutenberg Version: 19.6.2

—–

Request for Support:

Could you please help me resolve this issue? Is there any configuration I might have missed, or are there known compatibility issues between the Twenty Twenty-Five theme, Gutenberg, and WooCommerce?

Thank you!

]]>
https://wordpress.org/support/topic/how-do-i-disable-attachments-when-linking-from-a-post/ <![CDATA[How do I disable attachments when linking from a post?]]> https://wordpress.org/support/topic/how-do-i-disable-attachments-when-linking-from-a-post/ Sat, 16 Nov 2024 08:10:20 +0000 cheonmu Replies: 0

Hello.

After updating to WordPress 6.7 a while ago, I have a problem where when I link from the P block of a post, media files are searched together instead of the post or post.

Is there a way to set it so that attachments are not displayed?

Screenshot – https://i.imgur.com/K4mm7pB.png

Thank you.

  • This topic was modified 1 month, 3 weeks ago by cheonmu.
]]>
https://wordpress.org/support/topic/lightbox-deactivates-automatically/ <![CDATA[lightbox deactivates automatically]]> https://wordpress.org/support/topic/lightbox-deactivates-automatically/ Tue, 12 Nov 2024 09:42:14 +0000 malle9 Replies: 1

Hello!
When I save a page after making a change, the image lightbox feature (native from Gutenberg) is deactivated. I can reactivate it and save, then it works – but as soon as I make another change on the page’s content it deactivates again (somehow it has to be the last thing to be saved to work). My wp-version is up to date.
how can i solve this automatic deactivation? thanks for your help

]]>
https://wordpress.org/support/topic/autop-generation/ <![CDATA[Autop generation]]> https://wordpress.org/support/topic/autop-generation/ Fri, 08 Nov 2024 12:43:22 +0000 venkat01 Replies: 4

I am encountering more issues with the automatic <p> tag generation in my code. I tried clearing them and recovering the blocks, but the same issues keep appearing after editing. Could you please help me fix this?

When I checked the code editor, the <p> tags were added like this:

]]>
https://wordpress.org/support/topic/cors-error-for-fonts-after-changing-domain/ <![CDATA[CORS Error for fonts after changing domain]]> https://wordpress.org/support/topic/cors-error-for-fonts-after-changing-domain/ Thu, 07 Nov 2024 09:46:25 +0000 wolfgegenlicht Replies: 0

Hey there,

I’m using the twenty-twenty-four theme with a child theme (it’s still blank) and got the following problem.

I was working on the page, installed fonts via FSE and google fonts.

Then I changed the domain from non-www to www through the database.

So basically from

https://example.com

to

https://www.example.com

Now I get an CORS error because in the CSS that gets inserted into the <head>, the old non-www domain is referenced.

So it currently says something like:

@font-face{font-family:Outfit;font-style:normal;font-weight:100;font-display:fallback;src:url(‘https://example.com/wp-content/uploads/fonts/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4S-EiAou6Y.woff2&#8217;) format(‘woff2’);}

instead of

@font-face{font-family:Outfit;font-style:normal;font-weight:100;font-display:fallback;src:url(‘https://www.example.com/wp-content/uploads/fonts/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4S-EiAou6Y.woff2′) format(‘woff2’);}

How can I actually change/update the path? I figured this doesn’t work through the database.

So right now I’m working with a workaround…

function replace_font_urls_in_css_output() {
ob_start(function ($buffer) {
// Replace non-www URLs with www URLs in the CSS output
return str_replace(‘https://example.com&#8217;, ‘https://www.example.com&#8217;, $buffer);
});
}

// Start output buffering before content is sent to the browser
add_action(‘wp_head’, ‘replace_font_urls_in_css_output’, 1);
add_action(‘wp_footer’, ‘replace_font_urls_in_css_output’, 1);

Any idea, if there’s a native way to update the font path as well?

Cheers
Wolf

]]>
https://wordpress.org/support/topic/social-icons-settings-3/ <![CDATA[Social Icons Settings]]> https://wordpress.org/support/topic/social-icons-settings-3/ Thu, 31 Oct 2024 08:16:35 +0000 JulieBM Replies: 3

Hi!

The Settings Sections is not working.

I want to set “open in new Tap” but there is nothing happening. What’s wrong? A bug, maybe!? Can you tell me how to fix it?

Second: how can I (if I can do anything) put them all in the same color? I don’t want it colorful like it is now… Think it is also in the settings section but as above: it is frozen, I can´t do anything there.

Thanks in advance,

Julia

  • This topic was modified 2 months, 1 week ago by JulieBM.
]]>
https://wordpress.org/support/topic/link-to-site-via-shortcode/ <![CDATA[Link to Site via Shortcode]]> https://wordpress.org/support/topic/link-to-site-via-shortcode/ Thu, 31 Oct 2024 08:04:13 +0000 JulieBM Replies: 1

Hi!

This is a Design Question.

I need to link to 1) two sites (Datenschutz, Impressum) and to 2) Cookie Banner (3 single Shortcodes)

My “Problem” now is that I like the Design of the Shortcodes; it is small and not too prominent like the buttons above. So I want to insert a Link to the Sites (Datenschutz, Impressum) via Shortcode in order to have all of them in one Line (3 Links to the cookie banner and 2 links to sites) and all the same look/Design.

As I (as a non-developer) think is to create shortcodes to the sites to insert them via Gutenberg Editor into the same line as the others.

How can I do that?

Thanks in advance!

Julia

]]>
https://wordpress.org/support/topic/not-able-to-update-any-pages-gutenberg/ <![CDATA[Not able to update any pages Gutenberg]]> https://wordpress.org/support/topic/not-able-to-update-any-pages-gutenberg/ Wed, 23 Oct 2024 00:20:18 +0000 Abir Replies: 3

Hello, I’m having issues to Gutenberg, When every i try to update any pages it shows “Block contains unexpected or invalid content. Attempt recovery. when i try to scroll down to attempt to recover it encounters issue and says “The editor has encountered an unexpected error.” copy post text, copy error code, but it i click on any of them nothing happens. Please look into this and fix it as soon as possibl.

Thanks

]]>
https://wordpress.org/support/topic/page-list-block-does-not-show-all-pages-under-parent-dropdown/ <![CDATA[«Page List» block does not show all pages under «Parent» dropdown]]> https://wordpress.org/support/topic/page-list-block-does-not-show-all-pages-under-parent-dropdown/ Sun, 20 Oct 2024 08:04:58 +0000 Martin Sauter Replies: 6

On bigger websites (mine has about 120 pages), the «Parent» dropdown menu of the «Page List» block does not show all existing pages. Obviously, the query that populates this dropdown has some kind of limit configured.

My current workaround is to temporarily unpublish other pages until the number of published pages falls under that limit. I then can see and select the respective page.

Please fix this.

]]>
https://wordpress.org/support/topic/uploading-font/ <![CDATA[Uploading Font]]> https://wordpress.org/support/topic/uploading-font/ Mon, 14 Oct 2024 12:03:32 +0000 stuartcr Replies: 3

Hi all,

I’m confused about uploading fonts to gutenburg.

I have tried and tired and tired, all the suggested formats (.ttf, .otf, .woff and .woff2) it just endless loops.

eventually i went to my hosting company to ask for help, they add this to the wp-config

define( ‘ALLOW_UNFILTERED_UPLOADS’, true );

NOW i can upload the font to gutenburg.

my question is….

by default does wordpress prevent these file types .ttf, .otf, .woff and .woff2 from being upload? and if so then why say they are supported in the upload window?

thanks in advance

]]>
https://wordpress.org/support/topic/error-message-when-loading-block-editor/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Error message when loading block editor]]> https://wordpress.org/support/topic/error-message-when-loading-block-editor/ Mon, 14 Oct 2024 07:29:52 +0000 terendy Replies: 2

These are the error messages I get when attempting to load Block Editor

TypeError: n.parent.some is not a function

    at In (https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:128997)

    at jn (https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:129065)

    at On (https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:130561)

    at https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:131898

    at Array.filter (<anonymous>)

    at https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:131887

    at s (https://hawardengolf.com/wp-content/plugins/gutenberg/build/data/index.min.js?ver=a090bae026590f4a964d:1:13238)

    at r (https://hawardengolf.com/wp-content/plugins/gutenberg/build/data/index.min.js?ver=a090bae026590f4a964d:1:9464)

    at Object.r [as getInserterItems] (https://hawardengolf.com/wp-content/plugins/gutenberg/build/data/index.min.js?ver=a090bae026590f4a964d:1:16738)

    at https://hawardengolf.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:72:3944
]]>
https://wordpress.org/support/topic/error-after-update-228/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Error after update]]> https://wordpress.org/support/topic/error-after-update-228/ Thu, 10 Oct 2024 06:30:07 +0000 Stefano Replies: 18

Hello,

after the last updates Gutenberg (v. 19.4.0), WP (v. 6.6.2).

Now, when I create a new page and I have to insert a new object (like page products, image, or something also), i click on the plus “+” button, the page send me an error like “The editor encountered an unexpected error” and i have 2 buttons like: “copy the text of the article” and “copy the error”.

The error give me this:

TypeError: n.parent.some is not a function
at In (https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:128997)
at jn (https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:129065)
at On (https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:130561)
at https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:131898
at Array.filter ()
at https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:131887
at s (https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/data/index.min.js?ver=a090bae026590f4a964d:1:13238)
at r (https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/data/index.min.js?ver=a090bae026590f4a964d:1:9464)
at Object.r as getInserterItems
at https://negozio.csdshop.it/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:72:3944

Can someone help me?

Thanks!

Stefano

]]>
https://wordpress.org/support/topic/call-stack-size-exceeded/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>call stack size exceeded]]> https://wordpress.org/support/topic/call-stack-size-exceeded/ Wed, 09 Oct 2024 21:43:26 +0000 hedbonker Replies: 3

After updating to 19.4 today, when I attempt to add a block to a page or post I get this error:

RangeError: Maximum call stack size exceeded
at ye (https://veraciousfilms.com/wp-content/plugins/gutenberg/build/blocks/index.min.js?ver=4a887eee9694887d80ae:1:97046)
at In (https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:128894)
at https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:129006
at Array.some ()
at In (https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:128997)
at https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:129006
at Array.some ()
at In (https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:128997)
at https://veraciousfilms.com/wp-content/plugins/gutenberg/build/block-editor/index.min.js?ver=b4af7886001885310e49:1:129006
at Array.some ()

This occurs on my live site. I also have a local WP install that I use for testing that has virtually no content or plugins and I performed the same update on that site and got the same result. Disabling Gutenberg allows me to add blocks as normal.

]]>
https://wordpress.org/support/topic/responsiveness-and-mobile-view-control/ <![CDATA[Responsiveness and mobile view control]]> https://wordpress.org/support/topic/responsiveness-and-mobile-view-control/ Mon, 07 Oct 2024 21:10:11 +0000 loyaltyoverroyalty Replies: 3

Hey guys, do you have any idea how to change the default WordPress mobile breakpoint from 600px to something else? Let’s say I have a navigation block in the builder, and I want the desktop version to transform into mobile. How can I do that? Also, why is there no option for responsive design? Should we have to struggle while working with block themes to fix the mobile version each time the client changes anything in the desktop version?

https://stackoverflow.com/a/74963424

this solution is ugly.
—-
ALSO


I’m trying to migrate from classic editor to block editor, and i can’t find a way to add styles for mobile, and i’m not even talking about this type of complex thing that I need to handle…
https://prnt.sc/kHxM3WbaWpRP

]]>
https://wordpress.org/support/topic/straight-single-quotes-are-replaced-by-a-smart-curly-quotes/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Straight single quotes are replaced by a smart (curly) quotes]]> https://wordpress.org/support/topic/straight-single-quotes-are-replaced-by-a-smart-curly-quotes/ Mon, 30 Sep 2024 20:28:37 +0000 John Webber Replies: 5

I’m having an issue with text inside a heading block.
In the editor, a straight single quote is shown. But, on the frontend, the quote is replaced by a smart (curly) quote.
If I use an HTML block and substitute the quote for and HTML entity, then that quote is preserved.

In the editor:

On the frontend:

  • This topic was modified 3 months, 1 week ago by John Webber.
]]>
https://wordpress.org/support/topic/warning-undefined-array-key-show_in_rest-in-wp-admin/ <![CDATA[Warning: Undefined array key “show_in_rest” for Gutenberg 19.3.0]]> https://wordpress.org/support/topic/warning-undefined-array-key-show_in_rest-in-wp-admin/ Fri, 27 Sep 2024 10:30:06 +0000 dagreen11 Replies: 0

I’m getting the following warning message on the site front end and WordPress admin.
Warning: Undefined array key “show_in_rest” in C:\Sites\wordpress\wp-content\plugins\gutenberg\lib\compat\wordpress-6.7\block-bindings.php on line 70

Gutenberg Plugin 19.3.0
WordPress 6.5.5
PHP 8.3.11

  • This topic was modified 3 months, 2 weeks ago by dagreen11.
  • This topic was modified 3 months, 2 weeks ago by dagreen11.
]]>
https://wordpress.org/support/topic/how-use-fonts-in-blockbase-gutenberg-theme/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>How use fonts in Blockbase Gutenberg Theme]]> https://wordpress.org/support/topic/how-use-fonts-in-blockbase-gutenberg-theme/ Thu, 26 Sep 2024 21:27:28 +0000 vytaulla51 Replies: 2

Hi:

No one at Blockbase responds to questions – not even clear if it’s a live theme.
It comes loaded with several fonts, all of which have 1 variant.
I don’t understand if I’m supposed to add additional variants to be able to have medium or semi-bold, etc. Am I supposed to keep all the fonts that are already loaded? Turn them off if I don’t want them?
How do you make a particular font the default font?

Where can I get answers to this question?

]]>
https://wordpress.org/support/topic/background-style-preventing-video-pop-up-to-work/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Background style preventing Video Pop up to work]]> https://wordpress.org/support/topic/background-style-preventing-video-pop-up-to-work/ Thu, 26 Sep 2024 02:27:34 +0000 anitaw Replies: 2

Hi,
When using the Gutenberg Video Pop-up Responsive block I’ve added a YouTube link and uploaded a background image. I can view the image in the backend, however the front end is showing a grey box.

If we inspect the page, and change the HTML from
<div class=“responsive-block-editor-addons-video-popup__wrapper” data-video=“26QD8aFxAZs” style=“background-image: none ;“><a href=“#” class=“responsive-block-editor-addons-video-popup__overlay”></a>

to

<div class=“responsive-block-editor-addons-video-popup__wrapper” data-video=“26QD8aFxAZs” style=“background-image: url (https://www.readytoship.com.au/wp-content/uploads/2024/09/sendle-customer-reluv-video-cover-1.jpg);“><a href=“#” class=“responsive-block-editor-addons-video-popup__overlay”></a>

The front end does update, however can not find how to fix this in the Responsive Block.

]]>