- This topic has 7 replies, 3 voices, and was last updated 3 years, 4 months ago by
David.
-
AuthorPosts
-
November 29, 2022 at 7:51 am #2441284
Brooks
We used Scribe for our latest site.
When editing links on the backend in Gutenberg, you are unable to see items that are hyperlinked.
The only way to know what is linked is on the front end.
This is making linking difficult.
Note: we installed Scribe for another site to test and the issue is there as well.
Thanks!
November 29, 2022 at 9:45 am #2441510David
StaffCustomer SupportHi there,
by default Scribe doesn’t add any specific styles to the links, did you add any in the Customizer or via CSS?
November 29, 2022 at 6:12 pm #2442019Brooks
I did not, David.
I just know that it’s the first time I’ve ever gone to edit links on the back end and not be able to differentiate the link from the regular text!What steps do I need to take?
November 29, 2022 at 6:58 pm #2442038Ying
StaffCustomer SupportBy default even on the front end, the links don’t have specific styles.
If you can see the difference on the front end, you should be able to see it on the backend as well.
Can you link us to a post where we can see a link?
November 29, 2022 at 7:29 pm #2442054Brooks
Sure, here’s a link: https://www.brooksconkle.com/should-i-get-a-real-estate-license/
Here’s a quick vid if that helps: https://www.loom.com/share/4e10acfbcecb4b1398c90c4fde4ac654
Thanks
November 30, 2022 at 4:03 am #2442524David
StaffCustomer SupportI see some custom CSS in the Customizer > Additional CSS that is adding link styles.
By default WP doesn’t load Additional CSS in the editor.To load that in the editor you can add this PHP Snippet to your site:
add_filter( 'block_editor_settings_all', function( $editor_settings ) { $css = wp_get_custom_css_post()->post_content; $editor_settings['styles'][] = array( 'css' => $css ); return $editor_settings; } );How to add PHP: https://docs.generatepress.com/article/adding-php/
December 2, 2022 at 9:54 am #2447034Brooks
My developer told me that he finally found the issue.
He said that the link options are in 2 different places and that one overrides the other.
Is this correct?
If so, I wanted to send your way.
Thanks.From Developer…
[[The 2 settings are:Customize > Color > Body > Link
Customize > Color > Content > LinkThe second one overwrites the first one.]]
December 3, 2022 at 5:57 am #2447828David
StaffCustomer SupportThats the correct behaviour.
Body Links are for the entire site. The styles applied to thebodyapply to all elements in the site.
You then use more specific styles likeContent > LinkorSidebar > Linkto overwrite the body styles just for those areas. -
AuthorPosts
- You must be logged in to reply to this topic.