Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1216714
    Moonworks
    Participant

    I’m having some problems with the E&P Form Builder and am hoping somebody can help with it.

    When I put in the title text for an item, it doesn’t appear (just shows an X), but the small description does show up.

    Also, is there a way for the quantity to instantly show up without the user having to select an option when only when item is on that section, and have the user type in the quantity instead of having to click on the – + buttons? We are creating a form for book editing priced per word, so if a user has a 50,000 word book, they won’t click the button 50,000 times.

    On a final note, is there a way to add 1.5p as the price, or is it only on full pennies as a minimum? I did try 0.015 but strange things were happening.

    http://authorpa.com/form-test

    Thank you

    #1217196
    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    Yes, there is no image but just options. Please provide your login credentials in private reply, I’ll check your current form then I’ll answer you other questions 🙂

    Thanks!

    #1217912
    Moonworks
    Participant
    This reply has been marked as private.
    #1217946
    Christian
    Moderator

    Hey there,

    I tried updating the image URL but it doesn’t take effect. Would you mind clearing all cache and deactivating all third party plugins for a moment? Also, please ensure everything is up to date.

    For the quantity, please use the Number field type and not the Picture (see attachment).

    Could you give us more details by what you mean by “strange things were happening”?

    Thanks.

    #1218082
    Moonworks
    Participant

    Thanks, I’ve done that.

    I changed the option to a number field, but that then removes the price option, so just comes out at £0.

    The strange things are just where it tries to show 1.5p per word, so goes in increments of either 1p or 2p, this would not be a problem if just putting in a figure rather than seeing it rise up one at a time, so not really a major problem.

    #1218121
    Moonworks
    Participant

    The slider seems to the job though.

    The only problem I think I’m having now, is making prices lower if they have above a specific number.

    I tried it in the simple ‘Apply restrictions on quantities’, but that only allows you use whole pennies as a minimum, whereas I need to have 1.3p and .8p, but it won’t allow 0.013 or 0.008.

    I have been trying to look at calculation section, but am not quite sure how it works.

    This is what I have:

    0.015
    if(([item-4_quantity] >5000) ) {
    	([item-4_price]/2)*([item-4_quantity])
    }

    In this test, I’m trying to get it so that if they have more than 5000 words, then the price is halved. As you can see on the test page, that’s not worked.

    What I’d actually like to do is say that if the quantity is above a certain number, then the price will be the quantity multiplied by the new price for that quantity.

    #1218155
    Christian
    Moderator

    Hey there,

    This looks like a limitation even in the Calculations. It does not allow values lower than 0.01. Regretfully, we don’t have a solution for this. You will need to creatively modify your pricing for a work around.

    Thanks.

    #1218203
    Moonworks
    Participant

    I figured it out in the end. It does allow values lower than 0.01 in the calculation.

    Here it is just in case somebody else is looking:

    item 6 is where the user puts their number of pages.
    item 8 is a hidden field with a default value of 0.005
    item 9 is a hidden field with a default value of 0.01

    if(([item-6_value] >5000) ) {
    [item-6_value] * [item-8_value]
    }
    else
    if(([item-6_value] <5001) ) {
    [item-6_value] * [item-9_value]
    }

    #1218262
    Christian
    Moderator

    Glad you’ve sorted it out.

    #1219095
    Moonworks
    Participant

    Got there in the end 🙂

    #1219143
    Paul R
    Moderator

    Great! Have a nice day! 🙂

  • <script> jQuery(function($){ $("#no-reply-1216714 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>