kleinermann
Forum Replies Created
-
Forum: Plugins
In reply to: [Click to map for Elementor] Map not loadingWow, i didn’t know about this plugin. Looks great, i’ll give it a shot. Cheers mate!
Forum: Plugins
In reply to: [Click to map for Elementor] Map not loadingOk, this looks good. The website is not public yet but my client just told me they want openstreetmap instead of Google Maps, so i probably won’t have time to test this again. Thanks anyway. I will remove my negative review as i can not confirm what was causing the error on my end. Could have been some conflict with another plugin.
Forum: Plugins
In reply to: [Click to map for Elementor] Map not loadingThanks Michael. i tried to use just the src link from the iframe but it didn’t work with the latest version of elementor (3.29.2) and the Hello Elementor theme. The are just stays blank/ white.
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Issue with Logo Display in PDF HeaderI’m still experiencing the red x for images even when using the latest version of the plugin. This is for both the header image and images added to the body.
This only happens on one of my servers though. On another one it works fine. Both have fresh WordPress installations with the default theme and only Contact form 7 and the PDF plugin installed.
I contacted the hosting company to have a look at this issue as well, but they couldn’t find the cause either.
Any help with this issue is greatly appreciated.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: [Database Addon for Contact Form 7 - 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://ww.wp.xz.cn/support/topic/add-support-for-decimal-amounts-with-commas/