Set a custom interface for the 3D configurator [WooCommerce]

If you've used the Zakeke 3D configurator React library to develop a custom 3D configurator interface for your store, you can apply it by defining a filter function on your theme functions.php file, as in this example:

add_filter( 'zakeke_configurator_url', 'custom_zakeke_configurator_url' );

function custom_zakeke_configurator_url($url) {
  $url = 'https://your-interace.com/';
  return $url;
}

That url must be a public one - it can't be a localhost one, and it shouldn't have any query string in it.

Was this article helpful?
0 out of 0 found this helpful