Title: exogenia's Replies | WordPress.org

---

# exogenia

  [  ](https://wordpress.org/support/users/exogenia/)

 *   [Profile](https://wordpress.org/support/users/exogenia/)
 *   [Topics Started](https://wordpress.org/support/users/exogenia/topics/)
 *   [Replies Created](https://wordpress.org/support/users/exogenia/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/exogenia/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/exogenia/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/exogenia/engagements/)
 *   [Favorites](https://wordpress.org/support/users/exogenia/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy 3D Viewer] Change Origin](https://wordpress.org/support/topic/change-origin/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years ago](https://wordpress.org/support/topic/change-origin/#post-17047156)
 * Still now answer from the dev?! I don’t want to use “remember Camara”, when i
   have over 200 products and different models. You will never get the same camara
   position this way. I need an automated way to center the models. Like i said,
   i need some way to change how or which origin in the model is used. Best example
   is the 3D Viewer in Microsoft 10/11. The 3D Viewer always display the model, 
   that it fits perfectly in the canvas.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[3D Viewer – Turn Product Pages into Interactive 3D Experiences] Elementor Pro issue](https://wordpress.org/support/topic/elementor-pro-issue-2/)
 *  [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/elementor-pro-issue-2/#post-16891913)
 *  Hi,
 * i have also the same problem. I use elementor pro builder and Woocommerce. The
   3D Viewer don’t show up in the product-page.
   Did you guys solve the problem?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Extra Product Options For WooCommerce | Custom Product Addons and Fields] Change Options displayed 2 times in cart](https://wordpress.org/support/topic/change-options-displayed-2-times-in-cart/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/change-options-displayed-2-times-in-cart/#post-16830398)
 * Ok so you can download a fix from the support forum or you can wait until the
   next update from “Extra Product Options ” is released.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Extra Product Options For WooCommerce | Custom Product Addons and Fields] Change Options displayed 2 times in cart](https://wordpress.org/support/topic/change-options-displayed-2-times-in-cart/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/change-options-displayed-2-times-in-cart/#post-16829092)
 * So i logged into the support forum and there is already a thread about that problem.
   The developer say, that the problem is in WooCoommerce itself. So we just wait
   for a new WooCommerce update?
   I will keep you informed, if something new comes
   up in the support forum to solve the problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy 3D Viewer] SOLIDWORKS XR and Camara/Scale](https://wordpress.org/support/topic/solidworks-xr-and-camara-scale/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/solidworks-xr-and-camara-scale/#post-16822039)
 * Hi. so maybe the glb files can help to find the problem with auto scaling and
   position
   Here is the link to the glb file:[https://newaricon2022.aricon.de/wp-content/uploads/2023/06/fd-e_300.glb](https://newaricon2022.aricon.de/wp-content/uploads/2023/06/fd-e_300.glb)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy 3D Viewer] SOLIDWORKS XR and Camara/Scale](https://wordpress.org/support/topic/solidworks-xr-and-camara-scale/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/solidworks-xr-and-camara-scale/#post-16821974)
 * So i looked into your code and found this part. Is this the auto scale view?
 *     ```wp-block-code
       function woo3dvFitCameraToObject( camera, object, offset, controls ) {	if (woo3dv.object.type!='Scene') {		var mesh_width = woo3dv.boundingBox.max.x - woo3dv.boundingBox.min.x;		var mesh_length = woo3dv.boundingBox.max.y - woo3dv.boundingBox.min.y;		var mesh_height = woo3dv.boundingBox.max.z - woo3dv.boundingBox.min.z;		var max_side = Math.max(mesh_width, mesh_length, mesh_height)	    	const plane_width = max_side * 100;		var aspect = Math.max(mesh_width, mesh_length)/mesh_height;		woo3dv.camera.position.set(max_side*woo3dv.resize_scale, max_side*woo3dv.resize_scale, max_side*woo3dv.resize_scale);/*		if (aspect>1) {			woo3dv.controls.target = new THREEW.Vector3(0, 0, 0);		}		else {			woo3dv.controls.target = new THREEW.Vector3(0, mesh_height/2, 0);		}*/		woo3dv.controls.target = new THREEW.Vector3(0, 0, 0);		woo3dv.camera.far=plane_width*5;		woo3dv.camera.updateProjectionMatrix();		return;	}	offset =  offset || 1.35;	const boundingBox = new THREEW.Box3().setFromObject(object);	const center = boundingBox.getCenter(new THREEW.Vector3());	const size = boundingBox.getSize(new THREEW.Vector3());	const maxDim = Math.max( size.x, size.y, size.z );	const fov = camera.fov * ( Math.PI / 180 );    	const plane_width = maxDim * 100;	cameraZ = Math.abs( maxDim / 2 * Math.tan( fov * 2 ) ); 	r=camera.position.z*offset;	cameraZ *= offset; 	woo3dv.scene.updateMatrixWorld();         var objectWorldPosition = new THREEW.Vector3();         objectWorldPosition.setFromMatrixPosition( object.matrixWorld );	const directionVector = camera.position.sub(objectWorldPosition);           const unitDirectionVector = directionVector.normalize();         camera.position = unitDirectionVector.multiplyScalar(cameraZ);         camera.lookAt(objectWorldPosition);         const minZ = boundingBox.min.z;        const cameraToFarEdge = ( minZ < 0 ) ? -minZ + cameraZ : cameraZ - minZ;            camera.far = plane_width * 5;        camera.updateProjectionMatrix();            if ( controls ) {                controls.target = center;            if (woo3dv.zoom_distance_max!='0') {            	controls.maxDistance = cameraToFarEdge * 2;            }	    if (typeof(controls.saveState)!='undefined')	            controls.saveState();            } else {            camera.lookAt( center )        }    }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Vibes – Save Contact Form 7 & Elementor Form Entries to Database] Entry ID in Email Subject (Elementor)](https://wordpress.org/support/topic/entry-id-in-email-subject-elementor/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/entry-id-in-email-subject-elementor/#post-16313135)
 * Ok that is sad.
 * I just don’t understand why other shortcodes work in the subject like [field 
   id=”lastname”].
   But if you say it’s not possible, than i need to find a different
   way to display the ID of the submission.
 * Still thank you for you nice plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Form Vibes – Save Contact Form 7 & Elementor Form Entries to Database] Entry ID in Email Subject (Elementor)](https://wordpress.org/support/topic/entry-id-in-email-subject-elementor/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/entry-id-in-email-subject-elementor/#post-16313011)
 * Hi,
 * iam using **Elementor** Pro forms.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Germanized for WooCommerce] Remove String (Lieferzeit:)](https://wordpress.org/support/topic/remove-string-lieferzeit/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [4 years ago](https://wordpress.org/support/topic/remove-string-lieferzeit/#post-15930660)
 * Perfekt ! Das ist genau was ich gesucht habe. Ich sollte mir wohl die Zeit nehmen
   und mir die Einstellungen von Germanized mal genauer anschauen.
 * Danke für die Hilfe.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vrm 360 3D Model Viewer] The 3D Modell is no centered](https://wordpress.org/support/topic/the-3d-modell-is-no-centered/)
 *  [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/the-3d-modell-is-no-centered/#post-15276176)
 * Hi ! Iam not sure but i think this 3D Viewer is very simple and don’t check and
   reposition the model in the middle. You need to open the file with the model 
   with an App like Blender and position the model by your self.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vrm 360 3D Model Viewer] 3D model keeps loading](https://wordpress.org/support/topic/3d-model-keeps-loading/)
 *  [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/3d-model-keeps-loading/#post-15276158)
 * OK so i downloaded your 3D File mount2.wrl and try to open it with my 3d Viewer
   and than later with Windows 3D Viewer. After that i tried to import your file
   in Blender, but the file is empty. There is no model in that file.
 * So maybe this is your problem.
    Try to open the file with Blender to check for
   your self.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vrm 360 3D Model Viewer] Textures not working](https://wordpress.org/support/topic/textures-not-working/)
 *  [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/textures-not-working/#post-15121377)
 * What color does the model have?
    If its orange, than its the default color of
   the plugin.
 * Maybe try to remove the mesh_color parameter completely.
 * At the moment i use models without any texture. I just color them with a Color-
   Picker. But my next test is to try models with textures, so be patient and maybe
   i can help you in a few day 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vrm 360 3D Model Viewer] Suggestions](https://wordpress.org/support/topic/suggestions-157/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/suggestions-157/#post-15120213)
 * Also it would be nice to have a color-picker, so you can see the model in different
   colours or even maybe in different textures.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stock Market Ticker] Stock Market Ticker – Scroll not working anymore](https://wordpress.org/support/topic/stock-market-ticker-scroll-not-working-anymore/)
 *  Thread Starter [exogenia](https://wordpress.org/support/users/exogenia/)
 * (@exogenia)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/stock-market-ticker-scroll-not-working-anymore/#post-9333738)
 * Now it’s working again, but i did’t change anything. If you fixed it, than thank
   you and if not its a glitch…
 * But its working again and thats all i need.
 * Cya

Viewing 14 replies - 1 through 14 (of 14 total)