kleinermann
Forum Replies Created
-
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Issue with Logo Display in PDF HeaderI had the same issue on my development website before the website launch. And after some thinkering i found that i had forgotten that the website was still password protected on the server side. The plugin obviously needed to have access to the URL of the image in order to load it into the PDF. Anyway, after the password protection was removed it worked fine.
Forum: Plugins
In reply to: [Contact Form 7 Database Addon - CFDB7] Wrong column headers namesIf you want to have the check-box column when using above code, you can add the following code as the first column:
$my_columns['cb'] = '<input type="checkbox" />';
So it would look something like this:
add_filter('cfdb7_admin_subpage_columns', 'my_cfdb7_change_cols', 10, 2);
function my_cfdb7_change_cols( $columns, $form_id ){
if( $form_id == 1){ // change form id
$my_columns['cb'] = '<input type="checkbox" />';
$my_columns['your-name'] = 'Name'; //input filed name is array key
$my_columns['your-subhect'] = 'Subject';
$columns = $my_columns;
}
return $columns;
}I had the same issue with a blank screen for the MailPoet admin screen after a recent update. I found that my adblocker was preventing some of the scripts on the page to load. Disabeling the adblocker for the website i was working on fixed the issue.
Forum: Plugins
In reply to: [WooCommerce Product Fees] Not work with 0,000xxx product feesThanks @silenx, this fixed it for me.
Great, thanks!
In some countries it is legally safer to add a link to the privacy statement, so this would be a great feature to have ??
Forum: Plugins
In reply to: [Polylang] How I can hide second language in Polylang?This would be very useful. Is there a way to disable a language for the front-end until it is ready to be published?
Forum: Plugins
In reply to: [WooCommerce Product Fees] Does not take decimals into accountTry donwloading the latest version on Github: https://github.com/WPprodigy/woocommerce-product-fees
It should be fixed there.Forum: Plugins
In reply to: [Polylang] Home page redirect error requires Polylang cache resetI had the same issue with a redirect loop on the home page and the above suggestion by chouby fixed it ??
Forum: Plugins
In reply to: [WooCommerce Product Fees] Add support for decimal amounts with comma'sThanks jargovi,
your code change worked for me. I just had to change some of the quote symbols:
$fee_amount = str_replace(',', '.', $this->percentage_conversion( $fee_data['amount'] ));
Forum: Plugins
In reply to: [WooCommerce Product Fees] Not possible to use fee lower then 1 EuroFrom reading a bit more in the support threads i can see that this definitely having to do with commas not being supported.
Would it not be possible to check what settings WooCommerce is using and then just use the same for the product fees?
For now, jargovi’s solution worked for me: https://www.ads-software.com/support/topic/add-support-for-decimal-amounts-with-commas/
Forum: Plugins
In reply to: [WooCommerce Product Fees] Not possible to use fee lower then 1 EuroAdding a dot instead of a comma doesn’t work as the input validator removes it again before i can submit.
It would be great if this issue can be addressed in the next update of the plugin.
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationThis fixed it, thanks! Now it’s all working ??
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationThanks for the quick response. I changed it and now it is working in the backend. But anything in the frontend is still in english.
I’ve also tried it by changing WordPress over to Português do Brasil, which still showed the content in the frontend in english.
I tried different themes and it is the same with all of them.
I’m not very experienced with the whole translation procedure and am not sure if the issue is on my side.
Forum: Plugins
In reply to: [Wishlist for WooCommerce: Multi Wishlists Per Customer] TranslationI downloaded the latest version of the plugin which contains the German translation files. But somehow they don’t work. When i set WordPress to Deutsch (German) i still see the english text.
I have even tried to create my own .mo file and change the name of the file but nothing seems to work.
Does the translation file work for you?
Thanks!