Skip to content

Instantly share code, notes, and snippets.

@iamsathyaseelan
Created February 17, 2020 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamsathyaseelan/d4e165175aefacbfca107a11b9833c5a to your computer and use it in GitHub Desktop.
Save iamsathyaseelan/d4e165175aefacbfca107a11b9833c5a to your computer and use it in GitHub Desktop.
override product image URL
add_filter('rnoc_get_product_image_src','rnoc_override_product_image_url',10,2);
function rnoc_override_product_image_url($url,$product){
$url = str_replace('wp-content/uploads','zova_uploads',$url);
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment