This topic has 2 replies, 2 voices, and was last updated 2 years, 11 months ago ago by Olga Barlow
why im getting this error “Scrape nonce check failed. Please try again” when editing theme function PHP file.
please add this code if u can and check if product images are showed in checkout page
/**
* @snippet WooCommerce Show Product Image @ Checkout Page
*/
add_filter( ‘woocommerce_cart_item_name’, ‘ts_product_image_on_checkout’, 10, 3 );
function ts_product_image_on_checkout( $name, $cart_item, $cart_item_key ) {
/* Return if not checkout page */
if ( ! is_checkout() ) {
return $name;
}
/* Get product object */
$_product = apply_filters( ‘woocommerce_cart_item_product’, $cart_item[‘data’], $cart_item, $cart_item_key );
/* Get product thumbnail */
$thumbnail = $_product->get_image();
/* Add wrapper to image and add some css */
$image = ‘
‘;
/* Prepend image to name and return it */
return $image . $name;
}
Hello,
We are not responsible for the third-party code, sorry, https://themeforest.net/page/item_support_policy
Are you trying to edit PHP files via WP Dashboard? Use FTP for these purposes because in case you make any error you’ll be locked out and won’t be able to change anything back without FTP. So, it would be better to use FTP from start.
Besides, I hope that you make all the changes in the child theme files. Don’t edit any parent theme files because you will lose our changes after the theme update.
Regards
Tagged: array, best selling, check, child theme, failed, json, nonce, scrape, themes, woocommerce
The issue related to '‘getting Scrape nonce check failed. Please try again when editing child theme’' has been successfully resolved, and the topic is now closed for further responses