videostudio1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Getwid Base] Skip logo cropping!This code allowed me to skip the cropping:
function logo_size_change(){ remove_theme_support( 'custom-logo' ); add_theme_support( 'custom-logo', array( 'height' => 100, 'width' => 400, 'flex-height' => true, 'flex-width' => true, ) ); } add_action( 'after_setup_theme', 'logo_size_change', 11 );
Hope it helps someone.
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] FontAwesome not linked in every page by Getwid?Wow, that’s awesome!
Did you rolled it back because of my post?Thank you!
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] FontAwesome not linked in every page by Getwid?Well, I’m pretty dumb, the pages that don’t have the tag are the ones where I didn’t use any Getwid block. I guess it makes sense…
Forum: Reviews
In reply to: [Getwid Base] Great multipurpose themeWow! That’s awesome! Thank you so much
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Changing Getwid contact form recipientIt works!
Thank you so much for the quick response.
Looking forward for an update that will integrate this option inside Gutenberg!
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Changing Getwid contact form recipientThat sucks… I can’t put their email as admin email because they would receive all the WordPress emails that I should receive (regarding updates, problems etc.).
What about this part inside getwid/includes/blocks/contact-form.php?
private function send_mail( $data ) { $to = get_option( 'admin_email' ); $subject = empty( $data['subject'] ) ? sprintf( __( 'This e-mail was sent from a contact form on %s', 'getwid' ), get_option( 'blogname' ) ) : trim( $data[ 'subject' ] ); $email = trim( $data[ 'email' ] ); $name = stripslashes( $data[ 'name' ] ); $message = stripslashes( $data[ 'message' ] ); $body = $message;
Isn’t there a way to override “admin_email” with a function? Please let me know.
Otherwise I guess I will have to install a plugin :/Thanks
Forum: Reviews
In reply to: [Getwid - Gutenberg Blocks] Best Gutenberg Blocks plugin ever!Hi,
how could I contact you for support? I tried sending via contact form on the Getwid demo but I don’t know if you received it…Thanks