insertdelete
Forum Replies Created
-
Forum: Plugins
In reply to: [hCaptcha for WP] v1.4.2 not included AssetsI have downloaded from Github instead. But yes, developers please fix this…
404 | GET /wp-content/plugins/hcaptcha-for-forms-and-more/assets/styles.css HTTP/1.0
Thanks
Forum: Plugins
In reply to: [G-Forms hCaptcha] hCaptcha has failed to initialize…Nevermind, I’m daft! I should add the site-key in the form field. I thought it would be in the plugin’s main settings area.
When I say causes, I mean multiple ‘donation forms’ at once. All the small charities I’ve worked with use individual donation forms for each ’cause’ they fundraise for.
The ‘Funds’ concepts seems pretty brilliant and I would be interested in reading more if you have anything published on it yet.
Thank you for your reply ??
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Modify the payment descriptionOk I think I’ve managed to figure it out.
add_filter( 'wc_stripe_generate_payment_request', 'filter_wc_stripe_payment_descriptionmod', 3, 10 ); function filter_wc_stripe_payment_descriptionmod( $post_data, $order, $source ) { foreach( $order->get_items() as $item_id => $line_item ){ $item_data = $line_item->get_data(); $product = $line_item->get_product(); $product_sku = $product->get_sku(); } $post_data['description'] = sprintf( __( '%1$s | %2$s' ), $product_sku, $post_data['description'] ); return $post_data; }
Lines 3-7 could probably be done differently, but this works for me since I have the function in place from my first post.
I’d still appreciate anyone else’s feedback and hope this ends up helping someone.
- This reply was modified 5 years, 9 months ago by insertdelete.
- This reply was modified 5 years, 9 months ago by insertdelete.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Postman Fork@johnboy85a, you will need to apply the update via FTP/file manager access from your hosting control panel.
Make sure to overwrite the files during extraction.Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Premium versionI too would absolutely pay for a plugin like this.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Custom amount, recurringOops, sorry! I’ll be sure to contact you over there. Thanks
Forum: Plugins
In reply to: [WooCommerce] Conditional attributes/addons and contentOk, I’ve just read up on Gravity Forms Product Addon, and I can see that I can probably do all of this with that plugin, except it would require a LOT of conditionals. If anyone has an idea how to minimise the conditions, I would appreciate it.