marijn1887
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce EU VAT Assistant] Admin manually add user VAT numberHi Diego,
This feature to add the vat number in User Profile page isn’t implemented right?
We would like to be able to add the VAT number to billing information on WordPress user profile page.
Is there a workaround in the meantime?
Thanks!Thanks so much, Ewout! Works Great!
Any updates on this issue? My client has the same problem..
Thanks.
I’m not sure I understand what you’re saying. I pay for the development and you make it free for all other users?
Or you include it? What does this mean?And how much will it cost me?
Hi, I could use this feature too. I need to import 4500 customers and send them a mail with new login credentials. BlueHost permits 150 emails per hour max.
Let me know, thanks!Thanks for your reply. I have a coming soon mode on at the moment as my client should not see the design yet.
If I turn of my cache killer extension in chrome the slider loads fine, if I turn it back on again it takes to long and the white space is showing.
So this means when somebody visits this site for the first time it will show the white space, right?Thanks in advance.
Can I send you the link by email when I turn of the coming soon mode?
I would love to see this update as well. Actually I’m quite surprised this shortcode isn’t already available..
Forum: Plugins
In reply to: [Genesis Title Toggle] Genesis Sample Theme Title still showsThe titles are still showing on pages in the Genesis Sample theme. I’m not talking about pages built with optimizepress.
Forum: Plugins
In reply to: [Genesis Title Toggle] Genesis Sample Theme Title still showsThanks for your reply.
The titles are still showing on pages which are not built with the optimize press plugin.Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?Hi!
I changed themes after all and got it working! So many thanks!
I’ve got one more question though (if you dont mind..)
Can I get the code to open up in a new tab as well?
I’m using this one you provided:
global $product; $url = $product->get_product_url(); if (!$url) { $url = get_the_permalink(); } echo '<a href="' . $url . '">';
Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?Thanks for your reply.
The affiliate link I do want only appears after adding the code in functions.php but is not applying to anything.
The link to product detail page I don’t want stays and doesn’t change as it should according to the code.
Redirecting every link would be indeed a lot of, and too much, work…
I’m using the bazar theme by Yith, would really like to keep the theme so if there’s no other way I suppose I have to get the redirect plugin after all..Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?I can see the link is in there but it is overruled or something..
https://www.pipstudioservies.nl//afbeeldingen/element-check.png
The url in blue is the product detail page which the button directs to.
I want it to go to the url in red above…
Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?Well, tried the one with the #, but no succes..
global $product; $sku = $product->get_sku(); $position = stripos($sku, '#'); if ($position === false) { // no # in sku so not an affiliate product $url = get_the_permalink(); } else { // must be an affiliate product $url = $product->get_product_url(); } echo '<a href="' . $url . '">';
Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?No, not the same.. haha was already wondering what forthefit meant.. Sorry I’m not really familiar with this.
I use multiple affiliate programs with different domain names..
So I’d better use the version with # in the sku then? Or is there a workaround?
Forum: Plugins
In reply to: [WooCommerce] Remove buy button from product category pages?Thanks for your quick reply!
I changed it, but still it links to the product page. This is in my functions.php
function my_link_open() { global $product; if( $product->is_type( 'external' ) ){ $producturl = $product->get_product_url(); $position = stripos($producturl, 'forthefit'); if ($position === false) { // not a direct link affiliate address $url = get_the_permalink(); } else { // must be a direct link affiliate product $url = $product->get_product_url(); } } else { //no affiliate link available $url = get_the_permalink(); } echo '<a href="' . $url . '">';}