radykal | Support Center Chooser

For which product do you need support?

Fancy Product Designer Multistep Product Configurator

Start a new topic
Answered

Ways to customize the functionality of Fancy Products Designer

 I took a quick look and wanted to know if there is a way to get documentation to customize a bit of how the plugin works. I am using the Woocommerce version of the plugin. What I want to achieve is the ability to add fields outside of the of the editor window, and and make them replace the editable content I specify. Basically, I want to achieve what you can do with the Multistep Product Configurator plugin, but for text. I tried looking at the docs and articles you have here, but I could not find anything on how I can manipulate the snippets. If there are no documents, could someone give just a small hint on how to approach this? Any help will be greatly appreciated.


By the way, for the devs, amazing plugin.


Thanks in advance


Best Answer
Ok, I am back, and am happy to say, I got it!!!

So basically, I wanted automatically generated fields from the customizable text somewhere and then make those fields manage the content, rather than double-clicking on the editor. So first things first, you will need to go to the product designer on the backend, and the text layers that you want to be customizable, just add a name on the "Replace" field(like replaceName, replacePhone, etc). Once you do that you are set. The code I used to display the fields is the following:

 

// Create the fields
$('.fpd-product span').each( function() {
	
	var objParameters = $(this).attr('data-parameters');
	var objName = $(this).text();
	var objJSONParameters = $(this).data('parameters');
	
	if( objParameters.toLowerCase().indexOf("replace") >= 0 ) {
		$('.custom-fields-wrapper').append("<input type='text' placeholder='" + objName + "' data-parameters='" + objParameters + "' /><br /><br />");
	}
	
});

 

That code will be responsible of creating the input text fields. The logic is that, it will grab all <span> elements from the product designer modules(which is the one for texts) and create an input field. I am carrying over from each of those elements the parameters and placeholder text of each and placing it into the input text field. NOTE: It is highly important you call this function BEFORE the fancy product designer main JS, because the main JS of product designer removes the span elements and inserts them into the canvas, which then makes the above code useless. The next step is to actually make the above fields replace the text of the customizable fields.

 

 

// Change the text of the card as the product designer elements
$(".custom-fields-wrapper input").keyup(function() {
	
	var fieldValue = $(this).val();
	var $this = $(this);
	
	fancyProductChangeText( fieldValue, $this );
	
});	

	
function fancyProductChangeText( value, object ) {
	
	// Create a JSON object for the data
	jsonObj = $(object);
	
	fancyProductDesigner.addElement(
		'text', //Type
		value , // Text
		'', // Title - This is used for image. For text it does nothing
		jsonObj.data('parameters') //parameters
	);
			
}

 

 

This code is responsible of replacing the text. The first function just makes an action when you start typing text on the input field. The second replaces the text from the editor. So, if you are wondering how this works, on the parameters we get from the input fields, there is one for "replace", which contains the name you specified on the very first step. Then, the field uses that parameter to search which of the existing objects is the one that will be replaced. That should do the trick. The last step is just to add the div where the fields are going to be added to. Just add the following code anywhere on your page template

 

<div class="custom-fields-wrapper"></div>

 

That is it. Now this will create fields outside of the Product Designer that will manage the editing. It is recommended that you set all customizable text as non-editable, so that it can only be edited from the designer, but just the fields.


Hope this helps to anyone that may need something similar


Ok, a small update. Went looking at some documentation on the jQuery version and found this:

 myProductDesigner.addElement('image', 'image_url.png', 'Image Title', {autoCenter: true, price: 20, draggable: true});

 

Tested it, and it works on what I need. However, this is for images. I need this same exact functionality, but for text. Does anyone knows what will be the equivalent of the above function, but for text?

Answer
Ok, I am back, and am happy to say, I got it!!!

So basically, I wanted automatically generated fields from the customizable text somewhere and then make those fields manage the content, rather than double-clicking on the editor. So first things first, you will need to go to the product designer on the backend, and the text layers that you want to be customizable, just add a name on the "Replace" field(like replaceName, replacePhone, etc). Once you do that you are set. The code I used to display the fields is the following:

 

// Create the fields
$('.fpd-product span').each( function() {
	
	var objParameters = $(this).attr('data-parameters');
	var objName = $(this).text();
	var objJSONParameters = $(this).data('parameters');
	
	if( objParameters.toLowerCase().indexOf("replace") >= 0 ) {
		$('.custom-fields-wrapper').append("<input type='text' placeholder='" + objName + "' data-parameters='" + objParameters + "' /><br /><br />");
	}
	
});

 

That code will be responsible of creating the input text fields. The logic is that, it will grab all <span> elements from the product designer modules(which is the one for texts) and create an input field. I am carrying over from each of those elements the parameters and placeholder text of each and placing it into the input text field. NOTE: It is highly important you call this function BEFORE the fancy product designer main JS, because the main JS of product designer removes the span elements and inserts them into the canvas, which then makes the above code useless. The next step is to actually make the above fields replace the text of the customizable fields.

 

 

// Change the text of the card as the product designer elements
$(".custom-fields-wrapper input").keyup(function() {
	
	var fieldValue = $(this).val();
	var $this = $(this);
	
	fancyProductChangeText( fieldValue, $this );
	
});	

	
function fancyProductChangeText( value, object ) {
	
	// Create a JSON object for the data
	jsonObj = $(object);
	
	fancyProductDesigner.addElement(
		'text', //Type
		value , // Text
		'', // Title - This is used for image. For text it does nothing
		jsonObj.data('parameters') //parameters
	);
			
}

 

 

This code is responsible of replacing the text. The first function just makes an action when you start typing text on the input field. The second replaces the text from the editor. So, if you are wondering how this works, on the parameters we get from the input fields, there is one for "replace", which contains the name you specified on the very first step. Then, the field uses that parameter to search which of the existing objects is the one that will be replaced. That should do the trick. The last step is just to add the div where the fields are going to be added to. Just add the following code anywhere on your page template

 

<div class="custom-fields-wrapper"></div>

 

That is it. Now this will create fields outside of the Product Designer that will manage the editing. It is recommended that you set all customizable text as non-editable, so that it can only be edited from the designer, but just the fields.


Hope this helps to anyone that may need something similar

This looks very cool thanks for sharing! Would you put this in a seperate js file called before the main minimised one? Any thoughts on how you could integrate the text tools to this?
I am working on trying to implement this solution but I'm not sure where to put the code. I'm running weaver xtreme plus on wordbress and using the FPD for woocommerce version. I've tried a few possibilities but no joy. Please advise

 

 Well, the code above could go into a JS file(like functions.js) and call before you call the JS files from FPD. Since you are in Wordpress, just make sure you call the JS in the ehader, since FPD JS files are called on the footer. Also, make sure you are adding the code above inside a document ready function. The entire code will look something like this:


 

jQuery(document).ready(function($) {	
	
	// Create the fields
	$('.fpd-product span').each( function() {
	 
		var objParameters = $(this).attr('data-parameters');
		var objName = $(this).text();
		var objJSONParameters = $(this).data('parameters');
	 
		if( objParameters.toLowerCase().indexOf("replace") >= 0 ) {
			$('.custom-fields-wrapper').append("<input type='text' placeholder='" + objName + "' data-parameters='" + objParameters + "' /><br /><br />");
		}
	 
	});
	
	// Change the text of the card as the product designer elements
	$(".custom-fields-wrapper input").keyup(function() {
	 
		var fieldValue = $(this).val();
		var $this = $(this);
	 
		fancyProductChangeText( fieldValue, $this );
	 
	}); 
 
	 
	function fancyProductChangeText( value, object ) {
	 
		// Create a JSON object for the data
		jsonObj = $(object);
	 
		fancyProductDesigner.addElement(
			'text', //Type
			value , // Text
			'', // Title - This is used for image. For text it does nothing
			jsonObj.data('parameters') //parameters
		);
			 
	}
	
});

 Since you are on Wordpress, you will need to call it using jQuery instead of "$", since Wordpress uses the no conflict option with their jQuery version. Hope that helps

Also, forgot to mention. The HTML snippet


<div class="custom-fields-wrapper"></div>

 

Can go anywhere in the page.

Thanks for the help. I now have the form appearing but it is not editable. Any thoughts?

 

Update:
I have it working now, thanks. Any thoughts on using gravity forms for the form? I would like to link this to other functionality on the site.

 

James or Richard,
Do you think you could wrap this code up into a plugin that would work with standard WP custom field tools like gravity forms as James mentioned? The goal here is getting the custom data to pass through onto the order, invoices, email, etc and not just in the FPD world. Many other plugins have solved that problem so just trying to connect the 2.

 

I've got this working however, I wondered if someone could give me some pointers in how to honour any changes to the text via the toolbar?

Currently I can edit the text in the new input boxes but if I then change colour/font/size and then re-edit - colour/font/size is reset


 

it would be wonderful if this functionality was incorporated into the fpd someday, but a wordpress plugin in the meantime would be great. I would pay for that! The coding scares me.

@Rhiannon - Hmmmm, that is a bit hard to do. My code was meant to be used for static text that all it needed was changing text. If you edit via the canvas, then it will use those parameters rather than the ones from the field, that is why it resets. I might try and see if I can do something.

@Chrissy - lol nah, no need to pay, this code is free. If someone charges you..... they are mean! But in all seriousness, I'll see if I can put a small plugin together for this code.

 

@Richard: I'm very interested to try out your plugin when it's ready. That would be great! :)

Having a little trouble trying to make this work, is anyone of the forum who is still active able to give me a hand? Many thanks

Login or Signup to post a comment