-
AuthorPosts
-
April 20, 2016 at 12:16 am #617779
Used Code Block, but as as soon as I place this code in, the edit page screen gets all messed up… won’t seem to accept the form, although I could see it initially… here’s the code, wondering if a part of it should not be included?
<form accept-charset=”UTF-8″ action=”https://xi203.infusionsoft.com/app/form/process/9e517c2061a0821a446ae15824d45a4b” class=”infusion-form” method=”POST”>
<input name=”inf_form_xid” type=”hidden” value=”9e517c2061a0821a446ae15824d45a4b” />
<input name=”inf_form_name” type=”hidden” value=”The Brave Experiment Dream Share” />
<input name=”infusionsoft_version” type=”hidden” value=”1.52.0.56″ />
<div class=”infusion-field”>
<label for=”inf_field_FirstName”>First Name *</label>
<input class=”infusion-field-input-container” id=”inf_field_FirstName” name=”inf_field_FirstName” type=”text” />
</div>
<div class=”infusion-field”>
<label for=”inf_field_LastName”>Last Name *</label>
<input class=”infusion-field-input-container” id=”inf_field_LastName” name=”inf_field_LastName” type=”text” />
</div>
<div class=”infusion-field”>
<label for=”inf_field_Email”>Your Email *</label>
<input class=”infusion-field-input-container” id=”inf_field_Email” name=”inf_field_Email” type=”text” />
</div>
<div class=”infusion-field”>
<label for=”inf_field_Website”>Your Website</label>
<input class=”infusion-field-input-container” id=”inf_field_Website” name=”inf_field_Website” type=”text” />
</div>
<div class=”infusion-field”>
<label for=”inf_option_Howdoyouwantyourdreamtobelisted”>How do you want your dream to be listed?</label>
<div class=”infusion-radio”>
<span class=”infusion-option”>
<input id=”inf_option_Howdoyouwantyourdreamtobelisted_524″ name=”inf_option_Howdoyouwantyourdreamtobelisted” type=”radio” value=”524″ />
<label for=”inf_option_Howdoyouwantyourdreamtobelisted_524″>With both name and link</label>
</span>
<span class=”infusion-option”>
<input id=”inf_option_Howdoyouwantyourdreamtobelisted_526″ name=”inf_option_Howdoyouwantyourdreamtobelisted” type=”radio” value=”526″ />
<label for=”inf_option_Howdoyouwantyourdreamtobelisted_526″>Just my name please</label>
</span>
<span class=”infusion-option”>
<input id=”inf_option_Howdoyouwantyourdreamtobelisted_528″ name=”inf_option_Howdoyouwantyourdreamtobelisted” type=”radio” value=”528″ />
<label for=”inf_option_Howdoyouwantyourdreamtobelisted_528″>I want to be anonymous</label>
</span>
</div>
</div>
<div class=”infusion-field”>
<label for=”inf_custom_SharedDream”>My Dream Is: *</label>
<textarea cols=”24″ id=”inf_custom_SharedDream” name=”inf_custom_SharedDream” rows=”5″>
</textarea></div>
<div class=”infusion-submit”>
<input type=”submit” value=”Share Your Dream!” />
</div>
</form>
<script type=”text/javascript” src=”https://xi203.infusionsoft.com/app/webTracking/getTrackingCode?trackingId=b9d93de6f65ec1c2e605cc8de7e16149″></script>April 21, 2016 at 7:52 am #618975Hi Eleina_Shinn,
Our support for third party plugins is limited so I think it would be a good idea to contact the plugin author first, but send us an admin login in private and we’ll have a look.
Regards,
RikardApril 21, 2016 at 7:38 pm #619320thanks Rikard, private login here…
April 25, 2016 at 12:37 pm #621212Hi!
can you provide us a precise link to your site showing the elements in question please? we need to be able to inspect the elements.
Regards,
AndyApril 25, 2016 at 2:41 pm #621339http://nacwe.org/wp-admin/post.php?post=14846&action=edit
Page is called “— Share your dream here” | Parent Page: The Brave Experiment
April 27, 2016 at 2:00 pm #623063Hey!
where are you using the code in question? cause it’s not inside your code block element. Does ALB work fine again when removing it? Try to activate a default WordPress theme to check if your code is working correctly there and let us know about your results. Please contact the author of this code.
Best regards,
AndyApril 27, 2016 at 6:52 pm #623292What happens is that I place it in the code block element and update the page… shows up on front end – go back in to backend and edit page view is all messed up, code disappears – it’s as if Enfold doesn’t like that code for some reason – have to put it back in every time.
April 30, 2016 at 3:05 pm #625034Hi,
It’s because of the
textarea
, it’s not compatible with the Code Block element, i’d suggest using a custom shortcode instead, you can create one with a code like this in functions.php:function custom_shortcode_func() { ob_start(); ?> PUT YOUR CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');
You’d then use
[my_shortcode]
.Best regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.