ramonopoly
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Image display problemI took a look at the link and the images displayed fine for me in desktop and mobile viewport widths.
I throttled my network, and they eventually loaded ??
Could this come from the litespeed extension which does not match well with the theme I am using?
Did you try testing with this extension disabled?
Forum: Fixing WordPress
In reply to: wp.blockEditor.transformStyles Failed to transform CSSThis is very curious.
For fun, I created a few tests locally for
transformStyles
in its test suite using some of these fluid font sizes, and the results were as expected. That is, no duped properties or semi-colons.It’s hard to know what the other plugins are doing, unless they’re also importing the block editor package and it’s somehow being overwritten on the window object?
Forum: Developing with WordPress
In reply to: PHP in Patterns?Can I create the pattern as a php file in the theme’s patterns directory?
Do you mean a theme that you’re creating (and therefore have full control over)?
If so, then yes, you can create patterns in PHP and place them in the
/patterns
directory.See: https://developer.www.ads-software.com/themes/features/block-patterns/#registering-block-patterns
No worries, I hope you find something suitable. ????
Hi @shavedcat!
Did you have a look at some of the available plugins?
Forum: Everything else WordPress
In reply to: How Do You Change Search Engine Image..?Hi there!
Here’s Google’s take on this subject:
If your site has a?favicon, it can be included in Google Search results for your site.
https://developers.google.com/search/docs/appearance/favicon-in-searchSo your WordPress site needs a favicon.
You can set a favicon in WordPress using the Site Logo block:
Alternatively you can use the Customizer to add a logo:
[YOUR_DOMAIN]/wp-admin/customize.php
https://www.ads-software.com/documentation/article/customizer/#site-identity
Hope that helps!
Forum: Fixing WordPress
In reply to: Help! Gutenberg Crashed My Website And I Can’t Login To WP To Fix ItHmmm, do you remember if anything changed before the error occurred? E.g., updated a plugin, or added a new one?
The only thing I can think of right now is to try deleting the Gutenberg directory in wp-content/plugins on the server.
If that doesn’t work, then it might be another plugin that causing a conflict.
In that case you could try renaming the plugins directory, to something like
plugins_hold
or whatever. Here more information on how to manually reset plugins if you don’t have access to the admin dashboard.If that resolves the issue, reactivate each one individually until you find the cause.
In the worst case, do you or your web host keep regular backups of the site?
- This reply was modified 1 year, 5 months ago by ramonopoly.
Forum: Everything else WordPress
In reply to: Clicking EDIT takes me to wrong page in WordPressSo they don’t have the same page ID, yet when i try to edit the homepage, clicking EDIT under homepage takes me to the logo.
That is strange indeed!
What if you were to type in the URL to the page in your browser, so
<your_domain>/wp-admin/post.php?post=17&action=edit&lang=en&classic-editor
Check if that takes you to the right page.
When I hover over the EDIT link for the logo — in the partner showcase module — it looks like this:
If you’re using a page builder of some sorts, then maybe that’s expected: if you click on the logo it will allow you to edit the logo.
I can’t be sure what’s causing the issue, however if you’re running multiple plugins, it might be worth trying to deactivate a plugin one at a time to see if one is causing it.
To turn off a plugin in WordPress, follow these steps:
- Login to your WordPress dashboard
- Click on “Plugins” on the left-hand menu
- Find the plugin you want to turn off and click “Deactivate” under the plugin name
- Once you click “Deactivate”, the plugin will be turned off
You can reactivate the plugin once you’re done testing.
Forum: Fixing WordPress
In reply to: Help! Gutenberg Crashed My Website And I Can’t Login To WP To Fix ItHi there,
It’s complaining that
get_user_locale()
is returningnull
. This, I believe, is occurring in the Gutenberg plugin and not in WordPress itself.There are a couple of things you could try.
Check if you’re using the Gutenberg plugin and whether it needs updating. From the dashboard, click on “Plugins” on the left-hand menu.
If the plugin is installed and activated, see if there’s a newer version available. It should say something like “There is a new version of Gutenberg available”.
Otherwise, you could try to temporarily deactivate the Gutenberg plugin.
To turn it off, follow these steps:
- Login to your WordPress dashboard
- Click on “Plugins” on the left-hand menu
- Find the Gutenberg plugin and click “Deactivate” under the plugin name
- This reply was modified 1 year, 5 months ago by ramonopoly.
Forum: Everything else WordPress
In reply to: Clicking EDIT takes me to wrong page in WordPressHi there!
Just to confirm, you’re trying to edit a page from the admin, that is, from
/wp-admin/edit.php?post_type=page
What does the edit link on the home look like?
Something like this?
/wp-admin/post.php?post=13&action=edit
Does it contain the correct page id?
Forum: Developing with WordPress
In reply to: Extending the @wordpress/create-block webpack.configHi there,
From what I can see
autoprefixer
is enabled by default in the postcss plugins list used by the scripts package.I did a quick smoke test and got the following output:
.block-editor-block-list__layout{-webkit-user-select:none;-moz-user-select:none;user-select:none}
From the following CSS:
.block-editor-block-list__layout{ user-select:none; }
Are you looking specifically to generate vendor prefixes for flexbox?
Maybe flexbox requires an extra option, but I’m not sure when reading the docs. They say it’s enabled by default.
Hi there!
Have you tried searching the plugin repository?
https://www.ads-software.com/plugins/search/popup/
I’ve used “popup” as a keyword but you might be able to find something better ??
Forum: Everything else WordPress
In reply to: Blog page and posts do not appearHi there!
I’m developing this locally so there’s no way to view it on the Original site
Are you building a block theme or building on top of an existing one?
Apologies in advance if you’ve already checked all this, but have you confirmed that the default template has a Query Loop block and Post Template block?
This article goes through some of the fundamentals: https://developer.www.ads-software.com/news/2023/03/block-theme-templates-the-easy-way-to-build-an-elegant-grid-of-posts/
Forum: Everything else WordPress
In reply to: Rows in Sections keep disappearingHi there!
Are you working with Row blocks in the block editor? I did a quick smoke tests and found that I could delete rows within another Group block, but I suspect your situation is unique?
It might help to post an example of what you’re trying to delete, for example, a snippet of code from the editor. You can switch to code view in the block editor by clicking on the three dots to the right in the top navigation bar in the editor or with the following keyboard commands:
Mac: Command + Option + Shift + m
Windows: Ctrl + Shift + Alt + mForum: Fixing WordPress
In reply to: Making two Cover blocks to fit full widthHi there!
You’ve got the two Cover blocks in columns already which is what I’d have suggested, however from what I can see there’s a wrapper with the class name of
.guten-column-wrapper
that’s controlling the layout of its child elements.Adding
flex-direction: column;
seems to achieve what you want, but I suspect it could be baked into the theme so it might not be achievable from the editor without a template modification.It might be worth asking over the Zeever forum. https://www.ads-software.com/support/theme/zeever/