Forum Replies Created

Viewing 13 replies - 181 through 193 (of 193 total)
  • Forum: Plugins
    In reply to: [PlanSo Forms] Submit Post
    Plugin Author PlanSo

    (@planso)

    Mikerayjones, thank you for your feedback.

    We currently do not offer either option to restrict file uploads by size and/or type. We like this feature however and will likely push it out as an option in one of the next versions.

    As for your second question, the simplest way to solve your request would be to add the following css to your theme’s style sheet:

    .planso-form-builder .form-group label{
      font-size: 12px;
    }
    .planso-form-builder .form-group textarea,
    .planso-form-builder .form-group input[type="text"],
    .planso-form-builder .form-group input[type="number"],
    .planso-form-builder .form-group input[type="search"],
    .planso-form-builder .form-group input[type="email"],
    .planso-form-builder .form-group input[type="tel"],
    .planso-form-builder .form-group input[type="url"],
    .planso-form-builder .form-group input[type="time"],
    .planso-form-builder .form-group input[type="date"],
    .planso-form-builder .form-group input[type="datetime"],
    .planso-form-builder .form-group input[type="datetime-local"],
    .planso-form-builder .form-group input[type="month"],
    .planso-form-builder .form-group input[type="week"] {
      font-size: 12px;
    }

    You can change the size by altering the value after font-size – here 12px.

    If this solves your question it would be nice if you would mark this thread as ‘resolved’.

    Cheers

    Forum: Plugins
    In reply to: [PlanSo Forms] Submit Post
    Plugin Author PlanSo

    (@planso)

    I’m not quite sure what exactly you are trying to accomplish. But it is possible to set the thank you page to the url you posted.

    If you specify your needs a little more in detail we’ll sure be able to provide a solution.

    Cheers

    Plugin Author PlanSo

    (@planso)

    Yes this is the intermediate solution. As soon as we’ll get feedback from the developers of Black Studio we’ll be pushing out a solution where the button will be available again. In the mean time you’d have to copy and paste the shortcodes for the forms manually.

    Plugin Author PlanSo

    (@planso)

    michaldybczak, we have tested Black Studio TinyMCE Widget 2.2.3 and it is working for us. So it seems it is just a caching issue as we have updated a js file.

    To resolve this issue please try refreshing the edit page using F5 and if this does not work please try clearing your browser’s cache. If the latter still does not resolve the problem we’ll have to digg a little deeper.

    Plugin Author PlanSo

    (@planso)

    We have just released an update to 1.1.9 where we fixed this problem. The fix is an intermediate solution because Black Studio TinyMCE is suppressing certain outputs of other plugin like our’s.

    If you are using Black Studio TinyMCE you will not have the PlanSo Forms shortcodes button within the rich text editor.

    Please let us know if this solved your issue and if so it would be nice if you’d mark this thread as “resolved”.

    Cheers

    Thread Starter PlanSo

    (@planso)

    ping

    Plugin Author PlanSo

    (@planso)

    Please update to PlanSo Forms 1.1.6 and the issue is fixed among two new features.

    At first you can now batch edit option/value pairs for all select, radio, checkbox and multiselect inputs and secondly you now have the possibility to change the orientation of both radio buttons and checkboxes to either horizontal or vertical alignment.

    Again, if this solves your issue it would be nice of you to mark this thread as “resolved”.

    Cheers

    Plugin Author PlanSo

    (@planso)

    We’re using bootstrap error classes on all fields that contain the error. Depending on your theme you can add the following css-style to visually mark those fields:

    .planso-form-builder .has-error .help-block,
    .planso-form-builder .has-error .control-label,
    .planso-form-builder .has-error .radio,
    .planso-form-builder .has-error .checkbox,
    .planso-form-builder .has-error .radio-inline,
    .planso-form-builder .has-error .checkbox-inline,
    .planso-form-builder .has-error.radio label,
    .planso-form-builder .has-error.checkbox label,
    .planso-form-builder .has-error.radio-inline label,
    .planso-form-builder .has-error.checkbox-inline label {
      color: #a94442;
    }
    .planso-form-builder .has-error .form-control {
      border-color: #a94442;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
    .planso-form-builder .has-error .form-control:focus {
      border-color: #843534;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    }
    .planso-form-builder .has-error .input-group-addon {
      color: #a94442;
      border-color: #a94442;
      background-color: #f2dede;
    }
    .planso-form-builder .has-error .form-control-feedback {
      color: #a94442;
    }

    Alternatively you can check the option to “Include a special Bootstrap 3.0 based Stylesheet to optimize the layout of your form” found under “additional settings”.

    Plugin Author PlanSo

    (@planso)

    Hi KTS915,

    thank you very much for your nice feedback and for pointing us to a bug we haven’t identified yet.

    We have just released version 1.1.4 of our form builder, which fixes your second issue.

    For your first issue it would be possible to add the asterisk to the end of the option label under the “select values” tab.

    Concerning the checkboxes checked state after an unsuccessful submissions we’ll provide another update later today.

    If this solves your request it would be great if you’d mark this post as “resolved” other wise please feel free to contact us again.

    Cheers

    Plugin Author PlanSo

    (@planso)

    Hi CreativeMG,

    the code you posted should be placed in your theme’s head section.

    What exactly are you trying to accomplish?

    PS: adding that code can drastically change the appearance of your site – so be sure to make a backup of the files changed first!

    PPS: you can get in touch with us directly via our support form. If you do so please mark this thread as “resolved”

    Plugin Author PlanSo

    (@planso)

    Hi colombina,

    thanks for the kudos! The spacing is most of the time an issue with your theme and can be regulated via css.

    What you can try is to insert the following code into the CSS Style field under the advanced section:
    margin-bottom:-10px

    If this doesn’t work for you you will probably have to alter your style sheet. (Some themes offer the possibility to add custom styles.) There you can add the following:

    .planso-form-builder div.form-group {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    }

    Please note the “15px” in the code. This is the space above(top) and below(bottom) the field container. So you can adjust it to your needs.

    If you have further questions, don’t hesitate to contact us again.

    If this solves your problem it would be nice if you would mark this topic as “resolved”.

    Cheers

    Plugin Author PlanSo

    (@planso)

    Thank you very much! If you have any suggestions on further improving PlanSo Forms, please let us know.

    Plugin Author PlanSo

    (@planso)

    Thank you very much!

Viewing 13 replies - 181 through 193 (of 193 total)