mappel
Forum Replies Created
-
Hi Nicola,
thanks for getting back to me.
Great, I successfully removed all billing state fields with the following codeadd_filter( ‘woocommerce_checkout_fields’ , ‘custom_override_checkout_fields’ );
function custom_override_checkout_fields( $address_fields ) {
unset($address_fields[‘billing’][‘billing_state’]);
return $address_fields;
}Can you point me in the right direction on how to apply this for the a specific country?
I want to get rid of state/county for UK/GB and switzerland for example.
I don’t know how to implement the depended select billing_country scenario.Warm regards
Thanks for your message and link!
Unfortunately, the product filter reset widget does not show up in my appearance>widget menu… do I have to activate it somewhere or is this theme specific (I’m working with flatsome)?Thanks for helping out!
Hi Benjamin,
thanks for getting back to me.
It’s when someone tries to share my facebook/fan page on his timeline by clicking the share button below the cover photo on facebook.
If you can confirm that this has nothing to do with the open graph setting but could rather be a facebook problem that would help me out a lot. Because I can exclude the social settings (like OG) on the seopress settings.
Do you think it’s a facebook issue?
CheersForum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Mailchimp Signup form and Woocommercethanks!
with page cache you mean: clearing the cache of the browser, right?
thanks for clearing this up:)
I did a page speed load test with pingdom today and I’got a bad DNS lookup rating.
With the explanation “The Domain Name System (DNS) maps hostnames to IP addresses, just like phonebooks map people’s names to their phone numbers. When you type URL https://www.yahoo.com into the browser, the browser contacts a DNS resolver that returns the server’s IP address. DNS has a cost; typically it takes 20 to 120 milliseconds for it to look up the IP address for a hostname. The browser cannot download anything from the host until the lookup completes. ”so doesn’t this contradict what you’re saying?
I just want to make sure:) thanksah ok, good to know, thanks!
Let’s say I host my domain with namecheap and my WP/woocommerce installation is on siteground: is there a “transfer”(?) time lack when a customer accesses the page becuase domain and WP hosting are hosted by different companies?
Do I get faster loading times if both things are with the same hoster/company?I’m conserned about loading time… does the DNS pointing take time?
??Do you know what I mean?
ah, I recognized, that every template php file has a version number (@version).
let’s say, I’ve copied and edited the thankyou.php file into my child theme woocommerce folder. Now I’m doing the woo update. Can I check the version and see: well, it’s the same version number, I dont’ have to copy and edit the thankyou.php file from the updated woocommerce folder into my child theme folder?
If the thankyou.php file from woocommerce 3.6.2 has the same version number ( @version 3.2.0) than the file from the older woocommerce version, is it save to do nothing? I don’t have to revisit that file?ah thanks, now I see it.
wow, thanks you very much for helping out!
that is working perfectly:))so generous from you to provide the hook for my request!
thank you very much. it works perfectly!!I’ve found this function
add_filter( ‘wpo_wcpdf_invoice_title’, ‘wpo_wcpdf_invoice_title’ );
function wpo_wcpdf_invoice_title () {
$invoice_title = ‘Tax Invoice’;
return $invoice_title;
}mmmh, if I would know php, I’d know how to put $this->order->get_invoice_number(); into that function
I guess I have to use the following line next to the Invoice header?
<?php echo $this->order->get_invoice_number(); ?>but I don’t see where the header “Invoice” is defined in the invoice.php