boiker
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
@westerndeal does the PRO version supports PHP 8.2?
On your website under “Features of WOOCommerce Google Sheet Connector PRO” it says “Latest WordPress & PHP Support”
Hi @westerndeal
Tnx for your reply. We can’t downgrade to 8.1. So I will find another solution than your plugin.
ofcourse 🙂 It’s PHP version 8.2.20.
Forum: Plugins
In reply to: [Contact Form 7] default:shortcode_attr doesn’t workI know what I did wrong!
I had a _ in a variable name. Apparently this isn’t allowed. So I changed the function in functions.php as follows:
function custom_shortcode_atts_wpcf7_filter( $out, $pairs, $atts ) { $my_attributes = array('container-titel', 'prijs', 'btw', 'btw-prijs', 'totaal'); foreach ($my_attributes as $value) { if ( isset( $atts[$value] ) ) { $out[$value] = $atts[$value]; } } return $out; } add_filter( 'shortcode_atts_wpcf7', 'custom_shortcode_atts_wpcf7_filter', 10, 3 );Forum: Plugins
In reply to: [Contact Form 7] default:shortcode_attr doesn’t workOh… And this one was a typing error:
[hidden Totaal def default:shortcode_attr ult:post]It is:
[hidden Totaal default:shortcode_attr]
Viewing 6 replies - 1 through 6 (of 6 total)