debone
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Order notes Hook for WebhookHmm.. I need to send the notes created, not create new ones ??
But I figured out a way to make it work with thewoocommerce_new_order_note_data
you indicatedReference code
add_filter( 'woocommerce_new_order_note_data', 'sendOrderNotes' ); function sendOrderNotes( $order_note ) { //Use order notes here return $order_note; }
Thanks for the help ??
Forum: Themes and Templates
In reply to: [Virtue] How to set Logo src relative for httpsYes, it would solve… but it’s just one image. I don’t want to install another plug-in. If it’s impossible so I will hardcode the logo in my child theme…
Forum: Themes and Templates
In reply to: [Virtue] How to set Logo src relative for httpsIt’s not the best option to always use https
Forum: Themes and Templates
In reply to: [Virtue] How to set Logo src relative for httpsNo… that’s not the problem.
Checkout the field on Theme Options -> Main Setting -> Logo, you can’t edit it, all you can do is use the “upload” button, which is useless in my case because it automatically sets “http” on absolute logo src.
If I could set the logo src relative, it would solve for both “http” and “https”Forum: Themes and Templates
In reply to: [Virtue] How to set Logo src relative for httpsYes! I’ve done that, but when any request of the page is not https when the page is, you still got a minor warning, saying that the page may not be secured yet. I checked and the logo is set with absolute url on Virtue Theme, with “http”, and I need to edit to make relative, then it automatically will set to “https” when needed.
Forum: Plugins
In reply to: [Fetch Tweets] Creating custom template breaks back endI’m having the same problem with last version of fetch tweets and the back end… I’m already reinstalled everything, including removing the functions.php and settings.php from my custom template.