Usability Feedback
-
I’m using GP and GB for the first time for a highly customized site, versus using Elementor as I usually do (but don’t necessarily like doing, it is popular not for it’s Tom foolery by 3rd party devs, but for it’s depth of functional controls without having to code). I have some feedback to help.
- Code editor > since you can only migrate code via copy/paste using code editor, it would be helpful to display row numbers in editor, it is timely to hunt through lines of code to capture the needed code to be migrated.
- Blocks usage of hyperlinks is absolute path, this creates extra effort to update urls from subdomains of staging or dev sites to tld site. There should be a settings control to let developer/design to use absolute or relative paths, here is what i found from quick search on perplexity, I would recommend a simple implementation on/off of following filters:
- Based on the search results provided, there doesn’t appear to be a specific setting in GeneratePress or GenerateBlocks to choose between absolute or relative links for hyperlinks. However, I can provide some general guidance on how you might approach this:
- WordPress Core Functionality:
Instead of relying on a theme-specific setting, you can use WordPress core functions to convert absolute URLs to relative ones. Add these filters to your theme’s functions.php file or a custom plugin: - add_filter(‘post_link’, ‘wp_make_link_relative’);
- add_filter(‘page_link’, ‘wp_make_link_relative’);
- add_filter(‘attachment_link’, ‘wp_make_link_relative’);
- add_filter(‘post_type_link’, ‘wp_make_link_relative’);
- extend existing block elements to better support full range of css attribution that is available in the standard; for example, link text only has 2 color controls, there is no attribution for visited or active. I find myself frequently doing having to use coding to get affect needed.
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.