denialdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] Fatal error! Payment with ref_id can’t be foundI’m not sure I can!
I’ve set up the Stripe SCA Subscription buttons in Simple Membership following your instructions.
I’ve set up my subscription products in Stripe.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Hiding Composite ItemsI think this is the code I used:
add_filter( 'woocommerce_order_item_visible', 'wc_cp_order_item_visible', 10, 2 ); add_filter( 'woocommerce_widget_cart_item_visible', 'wc_cp_cart_item_visible', 10, 3 ); add_filter( 'woocommerce_cart_item_visible', 'wc_cp_cart_item_visible' , 10, 3 ); add_filter( 'woocommerce_checkout_cart_item_visible', 'wc_cp_cart_item_visible', 10, 3 ); /** Visibility of components in orders. * * @param boolean $visible * @param array $order_item * @return boolean */ function wc_cp_order_item_visible( $visible, $order_item ) { if ( ! empty( $order_item[ 'composite_parent' ] ) ) { $visible = false; } return $visible; } /** * Visibility of components in cart. * * @param boolean $visible * @param array $cart_item * @param string $cart_item_key * @return boolean */ function wc_cp_cart_item_visible( $visible, $cart_item, $cart_item_key ) { if ( ! empty( $cart_item[ 'composite_parent' ] ) ) { $visible = false; } return $visible; }
Forum: Plugins
In reply to: [WP Customer Reviews] Stop review output in the_content()I’ve tried the following code in my theme’s functions.php file but it isn’t working.
remove_filter('the_content', array('WPCustomerReviews3', 'do_the_content'), 15);
@arunbasillal like the original poster I don’t want the plugin to replace any existing alt tags.
You said 3 months ago that ” I will add a way to exclude images with existing alt tags in the future. ”
Did you add a way to exclude images with existing alt tags yet?Hi, does the latest version still replace existing alt tags?
New version works great, thank you.
PHP version: 5.6.40
Forgot to mention, WordPress 5.03 and version 1.30 of your plugin.
Forum: Plugins
In reply to: [Easy Bootstrap Shortcode] Colspan?I mean table cells added using EBS.
Forum: Themes and Templates
In reply to: Pantone Colours in WPYou’ll need to convert the Pantone reference to hex or RGB. There’s a handy chart here: https://goffgrafix.com/pantone-rgb-100.php
Forum: Themes and Templates
In reply to: Purchased Theme for Themeforest- Not Appearing!!Check the file is named correctly. If it is I’d suggest contacting the theme’s creator through Themeforest.