Find Answers and Get Support › Forums › Gorgo – Multi-Purpose Gutenberg Blog & Magazine Theme › Theme Customizer › SVG Logo
- This topic has 5 replies, 2 voices, and was last updated 1 year, 4 months ago by
Manathan.
-
AuthorPosts
-
@themodactyl
- 0 Topics
- 5752 Posts
Hi Joostm, 🙂
This is standard behavior with WordPress, I’m afraid. As this is not breaking the page, changing this is considered customization work. Unfortunately, this is a service that we do not provide.
We only share snippet only to solve issues with our theme. Any further request for CSS snippets will have to be part of a defect that needs to be fixed urgently. No snippets will be shared otherwise. If you want to go further with the customization of your website, we advise that you hire a freelancer to do it for you.
If you’re on a tight budget, we recommend you to require the services from Envato Studio freelancers (https://studio.envato.com/explore/websites-programming). This web platform gives you access to developers who have already experience with theme customizations, and for very competitive prices.
In case you’re willing to give this a try yourself, you can use the following filter to replace the default theme logo with your own custom SVG logo:
grimlock_site_identity_args
. For more about WordPress filters, please read the following post: What is: Filters.To use this filter to your site, we recommend that you use the Code Snippets plugin (https://wordpress.org/plugins/code-snippets/). If you have never activated this plugin, please read the following post: Adding Custom PHP Without Changing Your Child Theme.
Thank you for your understanding.
Regards,
January 13, 2022 at 11:32 #38074@themodactyl- 0 Topics
- 5752 Posts
Hi Joostm,
To change this, simply add the following code snippet to your website:
/** * Disable the crop step when selecting a logo */ function themename_custom_logo_setup() { $defaults = array( 'height' => 125, 'width' => 125, 'flex-height' => true, 'flex-width' => true, ); add_theme_support( 'custom-logo', $defaults ); } add_action( 'after_setup_theme', 'themename_custom_logo_setup', 30 );
To add this code snippet to your site, we recommend that you use the Code Snippets plugin (https://wordpress.org/plugins/code-snippets/). If you have never activated this plugin, please read the following post: Adding Custom PHP Without Changing Your Child Theme.
Please also note that we don’t provide any theme customization. So, you shouldn’t expect other snippets from us unless it’s to fix an issue stemming from our own codebase. We always try our best to help theme users whenever we can and only provide code snippets out of courtesy to prevent them from waiting for the next update.
Regards,
January 14, 2022 at 08:39 #38098 -
AuthorPosts
The topic ‘SVG Logo’ is closed to new replies.