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


You need to create an upload zone in the Fancy product builder. 

In the UI Layout Composer please select side bar right.

In your WooCommerce product or in the UI Layout please insert the following code at custom CSS:


.fpd-product-designer-wrapper {

    float: left;

    width: 518px;

    max-width: 48%;

}


(The code and numbers depend on the Layout of your site and might need to be customized.)


If you need further help please open a ticket on www.fancyproductdesigner.com/customization-request



 


Hi,
I am using the Woocommerce version of the plugin.I have imported poster demo. What I want When I am clicking on poster image then  ability to show fields outside of the of the editor window, and  make them replace the editable content.Like this https://prnt.sc/mxafx8.

Please provide me any solution.

Thank you.

Thanks Richard, was a great piece of code.


It sadly seems to not be working since 3.6.0 for me.


Haven't had much luck in editing the code for it to work, could you point me in the direction of the files you were looking at when figuring this out?


Cheers

I apologize as I did not replied to some of the comments. I am not sure if the plugin has changed dramatically, to the point where my scripts no longer works. If you check the answer chosen for this post, you should see a small guide on how to implement it. Just in case, I will briefly describe it below step by step.

1) Create a JS file and name it fpd-fields.js. Inside that file, add the code below:

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
		);
			 
	}
	
});

 

2) Once you have fpd-fields.js ready with the code above, upload it to your theme's directory

3) Once it is on your theme's directory, add it to your theme's header.php(or whichever file you are using as a header).

4) This step is highly important. Make sure you call fpd-fields.js BEFORE the JS files from Fancy Product Designers. If you don't do this, the code will not work.

5) After, insert the code snippet below anywhere on the products page.


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

6) Once this is done, create your fields by adding text layers on your Fancy Product Designer builder.

7) This step is also greatly important. When you add text layers, there is a field named "Replace". You MUST include the word replace within it for the fields to appear, but make sure they are unique. So for example, for first name, you can add "replaceFirstName", and then for phone "replacePhone".


That should be it. If you followed the above steps, you should have a set of fields that can edit the text on your canvas.

Hi, 
Your code seems to answer all what I'm missing with the FDP. Would you mind telling me how you would implement that code? In which js file and which section each part of the new code has to be integrated.

Thanks


Is there anyway to implement this now?

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

@Richard: I'm very interested to try out your plugin when it's ready. That would be great! :)
@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.

 

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.

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


 

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.

 

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.

 

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

 

Also, forgot to mention. The HTML snippet


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

 

Can go anywhere in the page.

Login or Signup to post a comment