doppeljim
Forum Replies Created
-
I could fix that like this: I just made a new button and did nothing modify at the area with the With of the button (where you can choose between 25 50 75 and 100 %). Then it worked perfectely with the responsiveness.
cheersForum: Plugins
In reply to: [WooCommerce] Change Billing & Shipping titleHi @rynald0s
I also tried the gettext-Filter and added it in the functions.php – File of my child-theme. But it did not work. Do you have a hint why it does not change the title “Billing details” into “info”? Cheers
<?php function my_child_theme_setup() { load_child_theme_textdomain( 'twentytwentyone', get_stylesheet_directory() . '/languages' ); } add_action( 'after_setup_theme', 'my_child_theme_setup' ); remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0); function wc_billing_field_strings( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Billing details' : $translated_text = __( 'Info', 'woocommerce' ); break; } return $translated_text; } add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 ); ?>
Hi there I solved it with the plugin “Checkout Field Editor for WooCommerce”.
cheers
DaniForum: Plugins
In reply to: [WooCommerce] Choose Quantity of product on the first shop-pageForum: Plugins
In reply to: [WooCommerce] Modify the checkout-site where the note-Box isForum: Fixing WordPress
In reply to: Making a child them out of a child themmay thanks for these further options! Since I want to keep it as simple as possible, I will look for an other theme that is not a child-theme yet.
Forum: Fixing WordPress
In reply to: Making a child them out of a child themokay. Thanks for your help!
Forum: Plugins
In reply to: [WooCommerce] Available features/functions for food-delivery-online-shopHi
many thanks for your help. I was busy with other to do’s the last days. I will try it out like you suggested me.
and yes I would also mark that as resolved!
Thanks!!