• Resolved guev4ra

    (@guev4ra)


    Hello. Is there a way to display the drag and drop form upon clicking on variation attribute? I’m looking forward to create a e commerce where the user is can choose to upload an image(s), which is optional. So the idea is to put into bottom of variation whether or not he want to upload the image, if he chooses so, the form would appear and variation will change. Thank you

Viewing 1 replies (of 1 total)
  • Thread Starter guev4ra

    (@guev4ra)

    I guess someone might find this useful, as this solves a problem for me, since I guess there is no built in functionality for this part.

    
    $(document).ready(function() 
    {
    	$('li.button-variable-item-let-us-design-for-you').click(function(e) { 
    		$(".codedropz-upload-wrapper").hide();
    	});
    
    	$('li.button-variable-item-upload-your-own-design').click(function(e) { 
    		$(".codedropz-upload-wrapper").show();
    	});
    });
    • This reply was modified 4 years, 10 months ago by guev4ra.
Viewing 1 replies (of 1 total)

The topic ‘Combine plugin with variation products’ is closed to new replies.