milanmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [NSFW] [Age Gate] Loading after contentHello, thanks “In header” mode fix issue – also when I exclude “defer script” and “delay script” in flyingpress plugin for optimization.
Just can’t make google page speed score for mobile (for desktop good) ” agegate.js” render-blocking page. But I think it need to “block”. Can you give us your opinion?
Forum: Plugins
In reply to: [NSFW] [Contact Form 7] There was an error trying to send your message.On contact page – but I changed temporary now to WPForms, because need live mails
Forum: Plugins
In reply to: [NSFW] [Contact Form 7] There was an error trying to send your message.I want to fix this – temporary changed to WP Forms and working – check page
Forum: Plugins
In reply to: [FV Flowplayer Video Player] Error saving changesFound fix: It was problem with blocked ajax – wordfence all files deleted and replaced htaccess with default code
- This reply was modified 2 years, 1 month ago by milanmaster.
Forum: Plugins
In reply to: [Contact Form 7] Please help with contact form not workingWe add recaptcha, but still not working.. Installed SMTP
Contact works before, now we have this issue
Can you help us?
Forum: Plugins
In reply to: [Product Price by Formula for WooCommerce] Calculate percentage %We figure out :
(x+p1)+((x+p1)/100*p2)
I found it at tools/access and security
Thanks for quick reply,
https://ibb.co/bH9TXM6 – This is feed from https://ads.google.com
Thanks I’ll try to implement right Google Product Category and Brand and talk to you soon
Hello, @raficode,
Sorry for the delay..
https://ibb.co/P5Hx8xH – settings
https://lordhollandcoatings.be/wp-content/uploads/rex-feed/feed-2575.xml – feed
I recently change the code from old tags to new.
Dynamic Remarketing DRM feed link – I can’t find that link only
Forum: Plugins
In reply to: [Say What?] Translationg “attributes” woocommerce – written textThanks for answering, could you recommend some other option for this?
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Scrollable content in light box@media only screen and (max-width: 420px) { .yith-quick-view.yith-modal { overflow-y:scroll; } .yith-wcqv-wrapper { top:60px!important; left:24px!important; } .yith-quick-view.yith-modal .yith-wcqv-wrapper { height: 88%!important; } }Like this I’ve fixed this.
Forum: Plugins
In reply to: [PostNL for WooCommerce] Order complete email doesn’t have track & trace codeDid you fix this? We have same problem.
Thanks
Forum: Plugins
In reply to: [Table Rate Shipping for WooCommerce] Free Shipping for 1 quantityThank you for answer, we make this happen weight based shipping and setting custom rules!
You’re right, we previously added code:
add_filter( 'woocommerce_paypal_supported_currencies', 'add_hrk_paypal_valid_currency' ); function add_hrk_paypal_valid_currency( $currencies ) { array_push ( $currencies , 'HRK' ); return $currencies; } add_filter('woocommerce_paypal_args', 'convert_hrk_to_eur'); function convert_hrk_to_eur($paypal_args){ if ( $paypal_args['currency_code'] == 'HRK'){ $convert_rate = 7.5; //set the converting rate $paypal_args['currency_code'] = 'EUR'; //change HRK to EUR $i = 1; while (isset($paypal_args['amount_' . $i])) { $paypal_args['amount_' . $i] = round( $paypal_args['amount_' . $i] / $convert_rate, 2); ++$i; } if ( $paypal_args['discount_amount_cart'] > 0 ) { $paypal_args['discount_amount_cart'] = round( $paypal_args['discount_amount_cart'] / $convert_rate, 2); } if ( $paypal_args['tax_cart'] > 0 ) { $paypal_args['tax_cart'] = round( $paypal_args['tax_cart'] / $convert_rate, 2); } if ( $paypal_args['shipping_1'] > 0 ) { $paypal_args['shipping_1'] = round( $paypal_args['shipping_1'] / $convert_rate, 2); } } return $paypal_args; } ?>I used Woocommerce paypal integrated payment and that works, my problem is solve.
But why then not working with this plugin?