Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’ve used Infusionsoft and ActiveCampaign and they are both almost identical to each other as far as embedding the form from the CRM to the site. I discovered a solution just now and it was way more simple than I was even thinking…

    The original problem I had was extra lines added by ActiveCampaign to my html form that looked like this:

    <fieldset class="form-group">
                    Please Select a Room
                    <select name='field[1]' class="form-control">
                        <option value='Kitchen' >
                            Kitchen
                        </option>
                        <option value='Bath' >
                            Bath
                        </option>
                    </select>
                </fieldset>

    The answer was to simply make the options elements all one line like this:

    <fieldset class="form-group">
                    Please Select a Room
                    <select name='field[1]' class="form-control">
                        <option value='Kitchen' >Kitchen</option>
                        <option value='Bath' >Bath</option>
                    </select>
                </fieldset>

    Once I did this it functioned properly as a selection on a form.

    I have read the comment above by James Huff, I know this ins’t a product that is supported by the wordpress team because it is a commercial plugin.

    BUT, Tony, did you ever receive or discover an answer to this problem? I’m working with ActiveCampaign (very similar to infusionsoft) and Visual Composer is doing the same thing to me. I wish the site wasn’t using VC, but it is already deeply worked into the current site and they won’t be changing it very soon. Please let me know if you’ve discovered a solution to this.

    I did notice when I popped over into firefox with firebug that Visual Composer is adding <p></p> elements to each new option in the select element.

    Thanks!

    I don’t think it is a Win7 isssue…

    I tried this plugin on a few of my websites and noticed that the styles were very messed up ONLY when I viewed the site from a web browser that wasn’t logged into my WordPress admin.

    I took a look at the non-logged in view of my site with FireBug in a FireFox browser and noticed it was missing styles for the slider but not the script that changes the slider.

    I simply took the stylesheet that was in the files for the plugin and pasted them into my main stylesheet for my theme’s styles.css. Once I uploaded my new stylesheet the problem was fixed in IE, FireFox, and Chrome.

    I would just comment out the section of your stylesheet for your theme where you paste the styles so you know where they are if you need to access them again.

Viewing 3 replies - 1 through 3 (of 3 total)