Q
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Who thought that ctrl + x to delete a block is a good idea!?Heya @senjido ,
(For context, I haven’t worked on this part of the editor, I’m just saying my personal experience).
CTRL/CMD+X to cut is an interesting interaction. I’ve noticed inconsistencies between different applications (both web and regular apps), but it largely comes down to what the app is.
For example, in code editors, typically doing a CUT command will cut the entire line (but not always, e.g. XCode). However, it will only cut specific text if the text is highlighted.
For traditional note applications, doing a CUT command without highlighting any text won’t do anything.
The way Gutenberg CUTS content (by block or by text) is consistent with another block-based text editor I use – Notion.
Granted, there was an initial (tiny) learning curve I had go to through (for both Notion and Gutenberg) to understand the content CUT mechanics. Ultimately, I think it makes sense. Again, this is just my personal experience :).
Forum: Plugins
In reply to: [Gutenberg] Adding new blocks to GutenbergHeya @bittabola ,
That’s a very valid use case! We’re currently working on adding a new “Query block”:
https://github.com/WordPress/gutenberg/pull/22199Like you described, the idea is to provide extra functionality (queries) to the post block. I don’t believe that is ready yet.
In the meantime, you can certainly give other plugins a try. I don’t have any personal experience with any, so I wouldn’t be able to recommend one :).
Hope this helps!
Forum: Plugins
In reply to: [Gutenberg] Gutenberg is SLOWHeya @steveb4 ,
Thank you for that feedback! I can definitely empathize with the pain of an app/interface being slow (and freezing too, yikes).
We’re constantly working on making more stable and faster. Personally, since I started contributing to the project, I’ve noticed a lot of attention and consideration for performance from core members.
Appreciate you giving the plugin a shot!
Forum: Plugins
In reply to: [Gutenberg] Gutenburg Buttons Not Clickable (Do Not Link to Page)Heya @nicholas0 ,
Hope you’re doing well! Yes, @bonkerz is correct :).
I’ve created a screenshot with annotations on where you need to click:
https://d.pr/i/gg9Q9rI can certainly see why that may be confusing.
Hopefully this helps!
Forum: Plugins
In reply to: [Gutenberg] Blank screen when editing postHeya @travelwithmyfaultycompass ,
Hmm! That’s strange indeed. By any chance, really quickly, would you be able to try swapping the Divi theme for another one? Maybe the default TwentyTwenty. This is just to rule out that Divi x Gutenberg may be causing issues.
For troubleshooting purposes, would you be able to share the version of Gutenberg you’re running on your site?
Thanks!
Forum: Fixing WordPress
In reply to: How to fix changed URL issuesHeya @mich27 !
Sorry for the delay! I was away for a while and just got back :).
Were you able to get things sorted out?If not… Hmm… What is the URL for your new site? How is your site being hosted?
Providing more information will help 🙂
Forum: Fixing WordPress
In reply to: Images rescale taking foreverHeya @deserting
Hmm! That sounds odd! Just curious. What are the sizes of the images you’re uploading (file size, and width/height)? Also file type (e.g. jpg… tiff, etc..) would be helpful.
Thanks!
Forum: Fixing WordPress
In reply to: Classic or Gutenberg Editor Not WorkingHiya @patjudge274 !
Interesting! I did a bit of searching, and I found this video:
It’s a bit tricky to know what’s happening in your wp-admin without seeing it :).
Hopefully the instructions in that video is helpful!Forum: Fixing WordPress
In reply to: Cleaning up the home pageHeya @green-shoot !
Hmm! It sounds like something you can try is wrapping those elements in a bit of PHP logic to only render them on single posts.
If you have access to the code, you can try using
is_singular():Here’s the doc for that check if you need for info:
https://developer.ww.wp.xz.cn/reference/functions/is_singular/The code may look something like this:
<?php if ( is_singular() ) { ?> echo "<!-- Render things -->"; <?php } ?>There’s an overall guide for conditional tags here:
https://codex.ww.wp.xz.cn/Conditional_TagsHope this helps!
- This reply was modified 6 years, 6 months ago by Q.
Forum: Developing with WordPress
In reply to: Add external link each postHi there @qq2466380523 !
Just to clarify, would you like to open the link in a new tab (when clicked)?
If so, the code you’ll need to add to your link (<a>) tags istarget="_blank".Example:
<a href="..." target="_blank">...</a>
Looks like there’s already one link in your example that does this.
Hope this helps!
- This reply was modified 6 years, 6 months ago by Q.
Forum: Fixing WordPress
In reply to: How to fix changed URL issues@mich27 Oh! Gotcha. Would you be able to share the new (and old) URL of your site? Just for testing. If not, we can maybe try something else 🤞
Forum: Fixing WordPress
In reply to: How to fix changed URL issuesHeya @mich27,
Oh no! That’s not good. Just to confirm… When you changed your permalink, was it for a specific post? Or did you change something from the Settings area?
Are you + your readers not able to see a specific post (or posts) or your entire site?