{"id":406,"date":"2026-04-20T07:29:47","date_gmt":"2026-04-20T07:29:47","guid":{"rendered":"https:\/\/web-support.eu\/customizer\/?page_id=406"},"modified":"2026-06-03T10:55:08","modified_gmt":"2026-06-03T10:55:08","slug":"documentation","status":"publish","type":"page","link":"https:\/\/web-support.eu\/customizer\/documentation\/","title":{"rendered":"Documentation"},"content":{"rendered":"\n<style data-wp-block-html=\"css\">\ncode,.wp-block-code{\nbackground-color: black;\ncolor: white;\n}\n\ncode{\npadding: 2px;\n}\n<\/style>\n\n\n\n<p class=\"wp-block-paragraph\">The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-794e3cfa wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">Table on contents<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"#display\" type=\"internal\" id=\"#display\">Display methods<\/a><\/li>\n\n\n\n<li><a href=\"#hooks\" type=\"internal\" id=\"#hooks\">Hooks<\/a>\n<ol class=\"wp-block-list\">\n<li><a href=\"#custmizer_hook\">Customizer output hooks<\/a><\/li>\n\n\n\n<li><a href=\"#viewer_mode\">Viewer-Only Mode Hooks<\/a><\/li>\n\n\n\n<li><a href=\"#style_hook\">Script &amp; Style Hooks<\/a><\/li>\n\n\n\n<li><a href=\"#setup_hook\">Setup &amp; Product Hooks<\/a><\/li>\n\n\n\n<li><a href=\"#order_hook\">Order &amp; Cart Hooks<\/a><\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><a href=\"#use\">Common use cases<\/a><\/li>\n<\/ol>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading alignwide\" id=\"display\">Display Methods<\/h2>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">1. <strong>Automatic Display (Default)<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The customizer is automatically displayed before the product summary. This is the default behavior and requires no configuration.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Setting:<\/strong> 3D Customizer \u2192 Global Settings \u2192 Display Method \u2192 &#8220;Automatic (before product summary)&#8221;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Block editor (Gutenberg)<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In FSE themes (Gutenberg) you can use the block <code>3D Product Customizer<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">3. <strong>Shortcode Display<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Display the customizer anywhere on your product page using the <code>[ dprcu-customizer ]<\/code> shortcode. Perfect for custom page layouts and page builders.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Setting:<\/strong> 3D Customizer \u2192 Global Settings \u2192 Display Method \u2192 &#8220;Shortcode Only&#8221;<\/p>\n\n\n\n<h4 class=\"wp-block-heading alignwide\">Usage Examples:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In Classic WordPress Editor: <code>[ dprcu-customizer ]<\/code><\/li>\n\n\n\n<li>In Page Builders (Elementor, Divi): Add a &#8220;Shortcode&#8221; widget and use: <code>dprcu-customizer<\/code><\/li>\n\n\n\n<li>In Theme Template:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code alignwide\"><code>&lt;?php echo do_shortcode( '&#91;dprcu-customizer]' ); ?&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">4. <strong>Manual Hook Display<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Display the customizer using the <code>dprcu_display_customizer<\/code> action hook for maximum flexibility in theme customization.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Setting:<\/strong> 3D Customizer \u2192 Global Settings \u2192 Display Method \u2192 &#8220;Manual Hook&#8221;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Usage in your theme template:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code alignwide\"><code>&lt;?php\nif ( is_product() ) {\n    do_action( 'dprcu_display_customizer' );\n}\n?&gt;<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"hooks\" class=\"wp-block-heading\">Developer Hooks<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The 3D Product Customizer provides 18+ WordPress action hooks that allow developers to extend and customize the plugin&#8217;s functionality.<\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\" id=\"custmizer_hook\">Customizer Output Hooks<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Hook<\/th><th>Description<\/th><th>Parameters<\/th><\/tr><\/thead><tbody><tr><td><code>dprcu_before_customizer_output<\/code><\/td><td>Fires before the customizer HTML output is rendered (full customizer mode).<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<br><code>$config_data<\/code> (array) &#8211; The decoded customizer configuration<\/td><\/tr><tr><td><code>dprcu_after_customizer_output<\/code><\/td><td>Fires after the customizer HTML output is rendered (full customizer mode).<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<br><code>$config_data<\/code> (array) &#8211; The decoded customizer configuration<\/td><\/tr><tr><td><code>dprcu_after_canvas_container<\/code><\/td><td>Fires after the 3D canvas container is rendered.<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<\/td><\/tr><tr><td><code>dprcu_after_sidebar_container<\/code><\/td><td>Fires after the customization options sidebar is rendered.<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\" id=\"viewer_mode\">Viewer-Only Mode Hooks<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Hook<\/th><th>Description<\/th><th>Parameters<\/th><\/tr><\/thead><tbody><tr><td><code>dprcu_before_viewer_canvas<\/code><\/td><td>Fires before the viewer canvas is rendered (viewer-only mode).<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<\/td><\/tr><tr><td><code>dprcu_after_viewer_canvas_container<\/code><\/td><td>Fires after the canvas container in viewer mode (before sidebar).<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<\/td><\/tr><tr><td><code>dprcu_after_viewer_canvas<\/code><\/td><td>Fires after the viewer canvas is rendered (viewer-only mode).<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\" id=\"style_hook\">Script &amp; Style Hooks<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Hook<\/th><th>Description<\/th><th>Parameters<\/th><\/tr><\/thead><tbody><tr><td><code>dprcu_before_enqueue_scripts<\/code><\/td><td>Fires before scripts and styles are enqueued for the customizer.<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<br><code>$is_viewer_only<\/code> (bool) &#8211; Whether this is viewer-only mode<br><code>$is_customizer<\/code> (bool) &#8211; Whether customizer is active<\/td><\/tr><tr><td><code>dprcu_after_enqueue_scripts<\/code><\/td><td>Fires after scripts and styles are enqueued for the customizer. Use this to enqueue scripts that depend on the customizer bundle.<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<br><code>$is_viewer_only<\/code> (bool) &#8211; Whether this is viewer-only mode<br><code>$is_customizer<\/code> (bool) &#8211; Whether customizer is active<br><code>$customizer_config<\/code> (array) &#8211; The customizer configuration array<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\" id=\"setup_hook\">Setup &amp; Product Hooks<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Hook<\/th><th>Description<\/th><th>Parameters<\/th><\/tr><\/thead><tbody><tr><td><code>dprcu_setup_product_hooks<\/code><\/td><td>Fires when product hooks are being set up for the customizer.<\/td><td><code>$product_id<\/code> (int) &#8211; The current product ID<br><code>$model_url<\/code> (string) &#8211; The 3D model URL<br><code>$viewer_only<\/code> (string) &#8211; Whether viewer-only mode is enabled (&#8216;1&#8217; or &#8221;)<\/td><\/tr><tr><td><code>dprcu_display_customizer<\/code><\/td><td>Fires to manually display the customizer (manual hook display method). Themes and plugins can call <code>do_action('dprcu_display_customizer')<\/code> to display the customizer at any location in their templates.<\/td><td>None<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading alignwide\" id=\"order_hook\">Order &amp; Cart Hooks<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Hook<\/th><th>Description<\/th><th>Parameters<\/th><\/tr><\/thead><tbody><tr><td><code>dprcu_before_add_order_item_meta<\/code><\/td><td>Fires before customizer data is added to an order line item.<\/td><td><code>$item<\/code> (WC_Order_Item) &#8211; The order item object<br><code>$cart_item_key<\/code> (string) &#8211; The cart item key<br><code>$values<\/code> (array) &#8211; The cart item values<br><code>$order<\/code> (WC_Order) &#8211; The order object<\/td><\/tr><tr><td><code>dprcu_after_add_order_item_meta<\/code><\/td><td>Fires after customizer data is added to an order line item. Use this to perform additional operations after the customization data is stored in the order.<\/td><td><code>$item<\/code> (WC_Order_Item) &#8211; The order item object<br><code>$cart_item_key<\/code> (string) &#8211; The cart item key<br><code>$values<\/code> (array) &#8211; The cart item values<br><code>$order<\/code> (WC_Order) &#8211; The order object<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"use\" class=\"wp-block-heading\">Common Use Cases<\/h2>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">Adding Custom Content Before Customizer<\/h3>\n\n\n\n<pre class=\"wp-block-code alignwide\"><code>add_action( 'dprcu_before_customizer_output', function( $product_id ) {\n    echo '&lt;div class=\"customizer-intro\"&gt;';\n    echo '&lt;h3&gt;Design Your Custom Product&lt;\/h3&gt;';\n    echo '&lt;p&gt;Use the 3D viewer below to customize your product&lt;\/p&gt;';\n    echo '&lt;\/div&gt;';\n}, 10, 1 );<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">Adding Custom Scripts After Customizer Loads<\/h3>\n\n\n\n<pre class=\"wp-block-code alignwide\"><code>add_action( 'dprcu_after_enqueue_scripts', function( $product_id, $is_viewer_only, $is_customizer, $config ) {\n    if ( ! $is_customizer ) {\n        return;\n    }\n    \n    wp_add_inline_script( 'dprcu-customizer-bundle', '\n        document.addEventListener( \"DOMContentLoaded\", function() {\n            \/\/ Your custom JavaScript here\n            console.log( \"3D Customizer loaded\" );\n        } );\n    ' );\n}, 10, 4 );<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading alignwide\">Placing Customizer in Custom Template Layout<\/h3>\n\n\n\n<pre class=\"wp-block-code alignwide\"><code>&lt;?php\n\/\/ In your custom WooCommerce product template\n?&gt;\n\n&lt;div class=\"product-layout\"&gt;\n    &lt;div class=\"customizer-column\"&gt;\n        &lt;?php do_action( 'dprcu_display_customizer' ); ?&gt;\n    &lt;\/div&gt;\n    \n    &lt;div class=\"product-details-column\"&gt;\n        &lt;?php woocommerce_template_single_title(); ?&gt;\n        &lt;?php woocommerce_template_single_price(); ?&gt;\n        &lt;?php woocommerce_template_single_add_to_cart(); ?&gt;\n    &lt;\/div&gt;\n&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Getting Started<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Start by choosing your preferred display method in Global Settings, then use the hooks above to customize and extend the functionality for your specific needs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For support and additional resources, visit the <a href=\"https:\/\/deosebitsoft.ro\/\">deosebIT Soft website<\/a> or <a href=\"https:\/\/web-support.eu\/customizer\/contact\/\" type=\"page\" id=\"210\">contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility. Table on contents Display Methods 1. Automatic Display (Default) The customizer is automatically displayed before the product summary. This is the default behavior and requires no configuration. Setting: 3D Customizer \u2192 Global Settings [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"wide-page","meta":{"footnotes":""},"class_list":["post-406","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin<\/title>\n<meta name=\"description\" content=\"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/web-support.eu\/customizer\/documentation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin\" \/>\n<meta property=\"og:description\" content=\"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/web-support.eu\/customizer\/documentation\/\" \/>\n<meta property=\"og:site_name\" content=\"3D Product Customizer &amp; Configurator for WooCommerce Plugin\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/deosebITSoft\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-03T10:55:08+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/documentation\\\/\",\"url\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/documentation\\\/\",\"name\":\"Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#website\"},\"datePublished\":\"2026-04-20T07:29:47+00:00\",\"dateModified\":\"2026-06-03T10:55:08+00:00\",\"description\":\"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/documentation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/web-support.eu\\\/customizer\\\/documentation\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/documentation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#website\",\"url\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/\",\"name\":\"3D Product Customizer WooCommerce Plugin\",\"description\":\"The Native 3D Customizer &amp; Configurator for WooCommerce.\",\"publisher\":{\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#organization\",\"name\":\"3D Product Customizer WooCommerce Plugin\",\"url\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-logo-3d.jpeg\",\"contentUrl\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-logo-3d.jpeg\",\"width\":512,\"height\":512,\"caption\":\"3D Product Customizer WooCommerce Plugin\"},\"image\":{\"@id\":\"https:\\\/\\\/web-support.eu\\\/customizer\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/deosebITSoft\",\"https:\\\/\\\/ro.linkedin.com\\\/company\\\/deosebit-soft\",\"https:\\\/\\\/www.instagram.com\\\/deosebitsoft\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin","description":"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/web-support.eu\/customizer\/documentation\/","og_locale":"en_US","og_type":"article","og_title":"Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin","og_description":"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.","og_url":"https:\/\/web-support.eu\/customizer\/documentation\/","og_site_name":"3D Product Customizer &amp; Configurator for WooCommerce Plugin","article_publisher":"https:\/\/www.facebook.com\/deosebITSoft","article_modified_time":"2026-06-03T10:55:08+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/web-support.eu\/customizer\/documentation\/","url":"https:\/\/web-support.eu\/customizer\/documentation\/","name":"Documentation - 3D Product Customizer &amp; Configurator for WooCommerce Plugin","isPartOf":{"@id":"https:\/\/web-support.eu\/customizer\/#website"},"datePublished":"2026-04-20T07:29:47+00:00","dateModified":"2026-06-03T10:55:08+00:00","description":"The 3D Product Customizer provides flexible ways to display the customizer on your product pages and extensive WordPress hooks for developer extensibility.","breadcrumb":{"@id":"https:\/\/web-support.eu\/customizer\/documentation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/web-support.eu\/customizer\/documentation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/web-support.eu\/customizer\/documentation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/web-support.eu\/customizer\/"},{"@type":"ListItem","position":2,"name":"Documentation"}]},{"@type":"WebSite","@id":"https:\/\/web-support.eu\/customizer\/#website","url":"https:\/\/web-support.eu\/customizer\/","name":"3D Product Customizer WooCommerce Plugin","description":"The Native 3D Customizer &amp; Configurator for WooCommerce.","publisher":{"@id":"https:\/\/web-support.eu\/customizer\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/web-support.eu\/customizer\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/web-support.eu\/customizer\/#organization","name":"3D Product Customizer WooCommerce Plugin","url":"https:\/\/web-support.eu\/customizer\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/web-support.eu\/customizer\/#\/schema\/logo\/image\/","url":"https:\/\/web-support.eu\/customizer\/wp-content\/uploads\/2026\/04\/cropped-logo-3d.jpeg","contentUrl":"https:\/\/web-support.eu\/customizer\/wp-content\/uploads\/2026\/04\/cropped-logo-3d.jpeg","width":512,"height":512,"caption":"3D Product Customizer WooCommerce Plugin"},"image":{"@id":"https:\/\/web-support.eu\/customizer\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/deosebITSoft","https:\/\/ro.linkedin.com\/company\/deosebit-soft","https:\/\/www.instagram.com\/deosebitsoft\/"]}]}},"_links":{"self":[{"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/pages\/406","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/comments?post=406"}],"version-history":[{"count":33,"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/pages\/406\/revisions"}],"predecessor-version":[{"id":601,"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/pages\/406\/revisions\/601"}],"wp:attachment":[{"href":"https:\/\/web-support.eu\/customizer\/wp-json\/wp\/v2\/media?parent=406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}