crslz
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change ” Ship to a different address?” text on checkout pageForum: Plugins
In reply to: [WooCommerce] Placeholder for Emails – First name and last nameRegards
<p><?php printf( esc_html__( ‘Hi %s,’, ‘woocommerce’ ), esc_html( $order->get_billing_first_name() . ‘ ‘ . $order->get_billing_last_name() ) ); ?></p> <p><?php $the_url = 'https://www.domain.at/agb'; printf( esc_html__( 'Vielen Dank für Ihre Bestellung. Wir warten mit der Verarbeitung, bis wir best?tigen k?nnen, dass die Zahlung eingegangen ist. Inzwischen hier eine Erinnerung daran, was Sie bestellt haben. Klicken Sie %1$s um zu den Allgemeinen Gesch?ftsbedingungen zu gelangen', 'woocommerce' ), sprintf( '<a href="%s" target="_blank">%s</a>', $the_url, esc_html__( 'Hier', 'woocommerce' ) ) ); ?></p>
Forum: Plugins
In reply to: [WooCommerce] MIN/MAX QuantityHey,
Just to be clear.
Do you want a limit on certain products, for example that only 5 products can be purchased by the customer per order?
or
Do you want a limit on certain products that a customer can purchase in total, seen over all his orders?
Regards
Forum: Plugins
In reply to: [WooCommerce] hide basket view buttonThe code appears to come from the following file
https://github.com/weDevsOfficial/dokan-theme/blob/develop/assets/js/script.js#L58
https://github.com/weDevsOfficial/dokan-theme/blob/develop/assets/js/script.js#L62
hiding this via css is a solution, the other is to modify or overwrite the jQuery file.
Regards
Forum: Plugins
In reply to: [WooCommerce] using “font awesome 5 free” iconsHey,
Via the following link you will find both the explanation to do this via a plugin or manually.
If you have further questions, feel free to ask!
Regards
Forum: Plugins
In reply to: [WooCommerce] does not remove the Cart Icon from HeaderNo problem you’re welcome!
Forum: Plugins
In reply to: [WooCommerce] Restrict Access with Post CodeHi,
In order to meet your demand, you will not have to adjust the code as much, but use this filter the_content instead of wp_redirect
Regards
Forum: Plugins
In reply to: [WooCommerce] Change ” Ship to a different address?” text on checkout pageHey,
Can you be more specific about which text you want to change? possibly with a print screen?
Regards
Forum: Plugins
In reply to: [WooCommerce] Shop in another database?Hey,
In theory this should be possible, but I would not recommend it. The fact is that woocommerce is an extension to wordpress, and therefore uses a lot of the same functionalities. You cannot see woocommerce as something ‘separate’
Hello, when I add a note to the order, I can choose from a dropdown from the following ‘note to customer’ or ‘private note’ options. If I choose note to customer, he will receive an e-mail.
Is this not the intention then? or do I misunderstand your question?
regards
Forum: Plugins
In reply to: [WooCommerce] does not remove the Cart Icon from HeaderHi,
The code has indeed been applied, only it will be overwritten by other files, give it a try this way.
#header_cart { display: none !important; }
Regards
Forum: Plugins
In reply to: [WooCommerce] Add login link at the checkout page when not logged inReplace this
// If checkout registration is disabled and not logged in, the user cannot checkout. if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) { echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) ); return; }
With this
// If checkout registration is disabled and not logged in, the user cannot checkout. if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) { $the_url = '/my-account'; echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) ); printf( esc_html__( 'Some text %1$s extra text, extra text', 'woocommerce' ), sprintf( '<a href="%s">%s</a>', $the_url, esc_html__( 'My account', 'woocommerce' ) ) ); return; }
Regards
Forum: Plugins
In reply to: [WooCommerce] does not remove the Cart Icon from Header#header_cart { display: none; }
Forum: Plugins
In reply to: [WooCommerce] Restrict Access with Post Code@thoseitguys ok, problem solved! no, this is not possible here (rep+). There is such a system on stack overflow.
A thank you so much will suffice here, ?? regards
Forum: Plugins
In reply to: [WooCommerce] Restrict Access with Post Codethat does not say much of course, if you want to further adjust the code it can be useful to go through this. Here the piece of code works without error messages.
Otherwise you will have to rebuild the code step by step, as I explained in earlier posts. (step 1 .. step 2 …), this way you can see at what time things go wrong.
Regards