• i suggest you to re-write shortcode.php. in particular i delete line-break from this part:

    <script type="text/javascript">
    	(function($){
    		$(function(){
    			$('<?php echo $trigger; ?>').magnificModal({
    			  	 items: {
    				      src: '#frm-modal-<?php echo $modal_id ?>',
    				      type: 'inline'
    				  }
    			});
    			<?php if($auto_open){ ?>
    				setTimeout(function(){ $('<?php echo $trigger; ?>').trigger('click'); }, <?php echo $delay; ?>);
    			<?php } ?>
    	})
    		})(jQuery);
    	</script>

    Lien-break cause a conflict/js error becouse formidable pro when reads the shortcode add tag <p> and </p> in the middle.

The topic ‘Line-break on shortcode.php conflict with formidable forms’ is closed to new replies.