melloman
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] I don’t have dataI have the same issue. Never had an issue with this plugin but since the last update no data is flowing into GA anymore. Looks to be a fair few users having the same problem.
Found to be a temporary issue on SMTP2Go’s side and is now functioning as per normal.
Also Josh, is it possible to call the quickCreateAffiliateLink function from the frontend or a PHP file?
I can’t seem to get around the nonce and get “You don’t have appropriate permission to perform this action”
Thanks for the reply Josh, I’ll give the WP REST plugin a go in the meantime and see how I go.
Forum: Plugins
In reply to: [WooCommerce] Clear cart messagesWorks a charm, thanks for the info!
Forum: Plugins
In reply to: [WooCommerce] Disable Woocommerce product URLsThanks Mike!
Forum: Plugins
In reply to: [WooCommerce] Disable Woocommerce product URLsHi thanks for the help but I tried with the following code but the product pages still load.
add_filter( 'woocommerce_register_post_type_product', 'thects_product_post_type' ); function thects_product_post_type( $args ){ $args['public'] = false; $arg['publicly_queryable'] = false; $arg['exclude_from_search'] = true; $arg['rewrite'] = false; return $args; }I also tried editing the attributes directly in the class-wc-post-types.php file but the product pages still load as they normally do.