edasjk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Need to edit theme injury-accident-lawyer-02 blockThank you, Suman Dhar.
This solved a problem.
It would be nice if you could help with other problem:
In this theme default frontpage could not be edit with Elementor directly.
Content is probably embedded by plugin or shortcode.
How default frontpage could be edited ?Edvard
Hi @kluver,
Ideally my customer also needs two documents:
1) Prepayment Invoice
2) Invoice
These documents are very similar, different only in document name.
Is it possible to achieve this with premium templates extension ?Edvard
Forum: Plugins
In reply to: [WooCommerce] Need to remove bank details from new order emailI find solution here:
https://www.vanbodevelops.com/tutorials/remove-bank-details-from-woocommerce-order-emailsI pasted this code into themes/themename/functions.php
// Remove the original bank details add_action( 'init', 'prefix_remove_bank_details', 100 ); function prefix_remove_bank_details() { // Do nothing, if WC_Payment_Gateways does not exist if ( ! class_exists( 'WC_Payment_Gateways' ) ) { return; } // Get the gateways instance $gateways = WC_Payment_Gateways::instance(); // Get all available gateways, [id] => Object $available_gateways = $gateways->get_available_payment_gateways(); if ( isset( $available_gateways['bacs'] ) ) { // If the gateway is available, remove the action hook remove_action( 'woocommerce_email_before_order_table', array( $available_gateways['bacs'], 'email_instructions' ), 10, 3 ); } }
Forum: Plugins
In reply to: [WooCommerce] Need to remove bank details from new order emailHi ryanr14,
Thanks for reply.
The reason why I need to remove bank account data from new order email:
Sometimes there is no sufficient amount of good available in stock. Seller don’t want to make warehouse accounting in e-shop.
So seller confirms order and sends invoice to customer. Only then customer can pay for products.
I hhink situation is better explained now.
I need just remove one or two strings from template.
Edvard
Forum: Plugins
In reply to: [WooCommerce] Need to add item price to emailYes, this solves problem.
Thanks.Forum: Plugins
In reply to: [WooCommerce] How to remove “via” before shipping methodThank, you, Melinda !
I followed your link and was able to correct problem.Edvard
Forum: Themes and Templates
In reply to: [Hestia] Unable to delete header imageHi,
I have the same wish.
I want to hide header image and replace it with slider.
How I added slider using slider plugin, but header image is still seen.
If I remove big header image then big gray area appeared.Edvard