cmht
Forum Replies Created
-
Thanks Edward.
The button appears for Metamask – but not for all currencies, eg it doesn’t appear for USDT payment. Is this normal?
Regarding wallet standards – do you have a link where I can read these standards?
Specifically would like to know if the button would appear for Coinbase Wallet and Binance Wallet chrome extensions.
Cheers!
ChrisForum: Plugins
In reply to: [NFT Maker] PaymentThanks Lukas, saw the video!
A couple of questions:
1. Upon checkout the store owner will receive fiat currency from the buyer the traditional way, according to the WooCommerce checkout mode configured? (eg. Stripe / Paypal)
2. Can this plugin denominate the NFT product in crypto? Eg. We want to sell our NFTs in USDC.
3. If the buyer doesn’t have a wallet already, do they need to create one separately to checkout or can they create a new wallet in the checkout flow?
Cheers
Forum: Reviews
In reply to: [NFT Maker] Great plug-in with potentialhi @purge7 nice to hear this plugin works well for you.
I’m looking to use it myself and would love to see it in action for a better feel of it.
Could you let us know your site url please?
@lukaskotol if you know of any other sites as well using this, please let us know!
Thanks
Chris
Hi @rankmath
Thanks for the recent RankMath updates!
I see this issue was addressed in 1.0.48 :
“Fixed: Variation Products were showing price mismatch warning in the Google Merchant Centre”Before installing this update, should we remove the code below first?
Appreciate the great support!
Chris
add_filter( 'rank_math/woocommerce/og_price', 'my_custom_og_tags' ); function my_custom_og_tags(){ global $product; if($product->is_type('variable')){ return false; } return true; }
Yes this is the code I just told you about.
As mentioned, I discovered that it solved the GMC problem instead of the previous filters offered on this thread.
Look forward to it in the next update!
Thanks again for your support.
Hi all, just a quick update!
These filters used together ultimately did not result in any improvement in Google Merchant Centre – our variation listings were still rejected after resampling:
add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) { $product = wc_get_product( get_the_ID() ); if ( $product->is_type('variable') ) { return []; } return $entity; }); add_filter( "rank_math/opengraph/facebook/product_price_amount", function( $price ) { $product = wc_get_product( get_the_ID() ); if ( $product->is_type('variable') ) { return false; } return $price; }); add_filter( "rank_math/opengraph/facebook/product_price_currency", function( $currency ) { $product = wc_get_product( get_the_ID() ); if ( $product->is_type('variable') ) { return false; } return $currency; });
As an experiment, I replaced them all with this instead (from Michael Davis here https://support.rankmath.com/ticket/woocommerce-variants-vs-google-shopping/):
add_filter( 'rank_math/woocommerce/og_price', 'my_custom_og_tags' ); function my_custom_og_tags(){ global $product; if($product->is_type('variable')){ return false; } }
And now our variations are finally being accepted by Google Merchant Centre!
Just to understand better so we can all learn something, @rankmath could you tell us please what the difference is between these two sets of code?
Thanks a lot @rankmath for your excellent support ??
Chris
Hi @rankmath ,
The first two filter code seemed to work, as those tags are no longer visible ??
The third filter however, crashed our site completely, so we cannot use it.
We’ll start with the first two in our live site, and monitor our Google Merchant Centre. Hopefully our variation products will stop being rejected now!
Really appreciate your assistance ??
Hi @rankmath !
Could you let us know please how to verify if the code has worked?
Our variation product pages are still showing tags such as <meta property=”product:price:amount” content=”788″>. Example: https://prnt.sc/uhd0eo
Here’s the actual link: https://eldercare.market/product/nissin-lightweight-detachable-pushchair-foldback-with-assisted-brakes/
Does this mean that the Product Schema for these pages has not been removed?
Thanks
Christhanks @rankmath !
We’ll try the code you’ve provided here and keep you posted on how that goes.
Appreciate your support ??
Hi @rankmath
Just checking, the code given on your support page here was dated 5mths 4weeks ago (the very last entry in the thread from Michael Davis):
https://support.rankmath.com/ticket/woocommerce-variants-vs-google-shopping/
1) Does it serve the same purpose as the code you’ve provided here?
2) Was it based on the latest version of Woocommerce and WordPress at the time?Thanks so much for the help!
Thanks @rankmath
Can this be coded instead as below? Am more used to this format: :p
add_filter( ‘rank_math/snippet/rich_snippet_product_entity’);
function( $entity ) {
$product = wc_get_product( get_the_ID() );
if ( $product->is_type(‘variable’) ) {
return [];
}
return $entity;
}Hi @rankmath , any advice here please? Thanks!
Thanks @supportadtribes.
Hi @rankmath, we don’t want to turn off structured data completely, but only for variation products.
Could you advise how to do this please?
Would the solution posted here work? :
https://support.rankmath.com/ticket/woocommerce-variants-vs-google-shopping/Thanks all
Hi @supportadtribes thanks for getting back!
We had purchased Product Feed Elite to overcome this problem, but Eva on your support team then told us that it doesn’t work if the default WooCommerce structured data has been changed.
We weren’t sure at the time what plugin / theme had caused this change.
So now we know it’s Rankmath.
Any idea what settings we could change / modify in RankMath to restore the default structured data for variation products?
Cheers
Chris