koenmeloen
Forum Replies Created
-
Hello Femi,
Thank you for you reply. I did the three things you mentioned, but nothing worked. I’ve installed a blank test site with only woocommerce and mollie. This site gives the same error too. It looks more like the server is blocking mollie. Do you have an idea what I can do next?
Regards,Koen
Forum: Plugins
In reply to: [WC Fields Factory] Custom locationIt’s obviously a good idea π I will give it a try. Thanks for the explanation.
Forum: Plugins
In reply to: [WC Fields Factory] Text Fields not appearing in Cart/CheckoutHi, I had the same issue. After clearing the cache of the website, the fields where visible. But now they are shown twice…
Forum: Plugins
In reply to: [WC Fields Factory] Issue update duplicate fieldsHi, I have the same problem. Since the update the fields are duplicated at the checkout page and email.
https://koenmeloen.nl/product/naambord-voordeur-stuyvesant-zwart-wit/
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endHi David,
I’ve found the o_href. What condition do you mean i have to set here?
Thanks for your patience btw π
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endAh great! Is this something I can do? Maybe I can put some code in my child theme.
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endHey David,
I’ve activated svi and image loaded. This is a link to one of my products:
https://koenmeloen.nl/product/naambord-edens-blauw-rood/Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endI have the latest version. Also for worpdress and woocommerce. Ah I’ve found it. It only shows up when svi is activated π
But still no luck with showing the images. Only the loader
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endHey David,
I don’t see that option. Only two options for pro version only.
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endNow I have different problem. The images keep on loading and don’t show up π
Forum: Plugins
In reply to: [Smart Variations Images & Swatches for WooCommerce] Not working on front endHey David,
Thanks for your reply. The first one did the trick π
Forget above. That doesn’t work. A managed to get it working with this code:
function my_qmt_base_url() {
$url = ‘http://’ . $_SERVER[‘SERVER_NAME’] . $_SERVER[‘REQUEST_URI’];
if (false !== strpos($url,’cpt-1′)) {
$base = ‘../cpt-1’;
} else if (false !== strpos($url,’cpt-2′)){
$base = ‘../cpt-1’;
}
return $base;
}If you use cpt’s with an archive-page like archive-cpt.php the above code searches for the cpt name in the current page url. When there is a match the base_url gets the name of the cpt. The categories can’t contain the name of to avoid a match on a page with different cpt.
If somebody might have the same issue as I had. I managed to solve it. I changed (‘cpt’ == get_post_type() to is_archive(‘cpt’) and it worked. (and removed the double statements…)