AF
Forum Replies Created
-
Forum: Plugins
In reply to: [Antispam Bee] Remove asb callback from specific formsHi @zodiac1978,
thank you for your suggestions, both will unfortunately not work, I had them in mind too. But I still need the holding comment for moderation for other purposes and manually unlock hundreds of customer accounts, where the first comment always ends up in spam is also no solution.
Brgds,
AFForum: Plugins
In reply to: [Antispam Bee] Remove asb callback from specific formsHi @zodiac1978,
some of my custoomers use comment fields in logged-in area where spam protection is not strictly necessary. I solved this by adding “is_user_logged_in()” as a condition in prepare_comment_field(). Maybe you can add this as an option in your next version ??Forum: Plugins
In reply to: [WooCommerce Admin] Euro symbol broken in adminHi there, had the same problem as @christiangoyippi . Fixed this by filtering ‘woocommerce_currency_symbol’ in my theme.
add_filter('woocommerce_currency_symbol', 'change_currency_symbol', 10, 2); function change_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'EUR': $currency_symbol = ' € '; break; } return $currency_symbol; }
Forum: Plugins
In reply to: [W3 Total Cache] type=”text/javascript” unnecessary. Where to remove?Sometimes, I cannot see the wood for the trees. Thx ??
Hi Felix, solved it by updating to the newest version. Unfortunately, I can no longer remember which version it was before.Thx for the good plugin!
Forum: Plugins
In reply to: [WP Carousel] [Plugin: WP Carousel] ssl broke the plugin?hmm… now it is secure, but still carousel is not working ?? I Dont want to secure the whole page with define(‘WP_SITEURL’, ‘https://example.com/wordpress’); Is there a solution? I dont want to miss the carousel for my logged in customers…
Forum: Plugins
In reply to: [WP Carousel] [Plugin: WP Carousel] ssl broke the plugin?Ja, but I don’t wonted the SSL for every Page, so I force SSL for only the auth section. Problem was that WP carousel puts the css-link in wp_head with http not with https.
Solution:
In wp-caousel.php file at line 183:if($_SERVER['SERVER_PORT'] == '443') { $wp_carousel_path = str_replace("http:","https:",$wp_carousel_path); }
have fun ??