Loading...
Marketplace-Geschichte

Echte CodeCanyon-Fragen und Antworten des Autors

Durchsuchen Sie Käuferfragen, Vorverkaufsszenarien, Einrichtungsprobleme und direkte Autorentworten aus den Jahren, in denen WP Cost Estimation auf CodeCanyon verkauft wurde. Sehen Sie, wie echte Kunden das Plugin genutzt haben und wie häufige Fragen beantwortet wurden.

5.557

Öffentliche Diskussions-Threads

Öffentliche CodeCanyon-Supporthistorie

19.461

Nachrichten

Kundenfragen, Folgeantworten und Kontext

8.679

Autorentworten

Direkte Antworten des Plugin-Autors

78

Archivseiten

Neueste Gespräche zuerst

Öffentliche E-Mail-Adressen und kaufcode-ähnliche Werte wurden unkenntlich gemacht. Der Originalwortlaut bleibt ansonsten als Klartext erhalten, damit der Support-Kontext lesbar bleibt.

Support: 2699Anpassung: 1536Zahlungen: 1482PDF und E-Mail: 1275WooCommerce: 406Buchung: 221Lizenzierung: 215

Archiv durchsuchen

Eine CodeCanyon-Frage oder -Antwort finden

Durchsuchen Sie alle öffentlichen Diskussions-Threads nach Stichwort, Kundenname, Funktion, Integration oder Support-Thema.

Geben Sie mindestens 2 Zeichen ein, um das gesamte Archiv zu durchsuchen.

Seite 62 von 78

Neueste archivierte Diskussionen

Jeder Thread fasst Kundenfrage, Folgeantworten und Autorentworten zusammen — die neuesten Beiträge zuerst.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von sitesforchrist

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-Thread
Kundesitesforchrist

I have a minimum quantity I want to set on an item of 5 but those first 5 are free. If they select more than 5 then the price of that item should start calculating based on the quantity ($15 per item) excluding those first 5. How can I do this? This is the calculation I've tried but it's not working: 0 if(([item-11_quantity] >5) ) { (15)*([item-11_quantity]-5) }

Kundesitesforchrist

I actually figured it out. I was forgetting that I wasn't calculating the entire price but the price per item. If anyone else needs to do this type of thing this is how it would work: 0 if(([item-11_quantity] >5) ) { ([item-11_quantity] -5) * (15)/([item-11_quantity]) } With the 15 being the price per item and the 5 being how many are free. Hope this helps someone else. :) Thanks again for the great plugin!

Autorloopus

Thank you :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von glehman

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-Thread
Kundeglehman

One feature I'd like to see added is a text field for the coupon code so that when I send someone a coupon code and they enter it, it'll let them know what that coupon is good for. ie. "This coupon code is valid for 15% off your first 6 months of service." or "Welcome xyz company employee! Enjoy 10% off our services!" Thanks

Autorloopus

Hello, Thanks, I note the idea .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Chasevanb

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
KundeChasevanb

Is there any documentation on the pricing calculation system I can take a look at before purchasing?

Autorloopus

Hello, No, sorry, it's a feature I recently added, I will do a video capture soon. Here is a copy of a previous answer on how the calculation option works : Formulas use a pseudo JS code. As you can see on this screenshot : https://0.s3.envato.com/files/181139983/screen_9.png , there are two buttons “Add a value” and “Add a condition” above calculation field. The first one allowing you to select an item of your form and choose the desired attribute (price, quantity) to generate automatically the corresponding code in the calculation field. Example : [item_1_quantity] Then you can add the desired operation. Example : [item_1_price]*2 The second button opens a panel similar to the link one ( https://0.s3.envato.com/files/181139983/screen_3.png ), allowing you to create visually complex conditions. It generates a code such : if([item_1_quantity]*2 && [total_price] < 300){ ... } . The result of the calculation will be the price of the current item when the user will see it . You can also allow quantity selection using calculation .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von hellotiko

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten3 AutorentwortenSupportAnpassungWooCommerce
Kundehellotiko

Hi, 1. Can you share to me how the calculation/formulas work? at least the dashboard, I want to know how deep the calculation function go 2. PayPal, may I know the currency? all currencies or limited? 3. My theme is visual composer installed, may I know how to sync it? 4. I use this theme http://themeforest.net/item/urip-professional-wordpress-landing-page/11690533?s_rank=2 and use this specific layout http://worksofwisnu.com/theme-preview/urip/layout-v2/index-hero-form.html may I know how hard the styling? I mean … I want the contact form style is same as it is 5. Can I change the payment gateway from paypal to http://docs.veritrans.co.id/en/welcome/index.html Thanks

Autorloopus

Hello, 1. Formulas uses a pseudo JS code. As you can see on this screenshot : https://0.s3.envato.com/files/181139983/screen_9.png , there are two buttons "Add a value" and "Add a condition" . The first one allowing you to select an item of your form and choose the desired attribute (price, quantity) to generate automatically the corresponding code in the calculation field. Example : [item_1_quantity] Then you can add the desired operation. Example : [item_1_price]*2 The second button opens a panel similar to the link one (https://0.s3.envato.com/files/181139983/screen_3.png ), allowing you to create visually complex conditions. It generates a code such : if([item_1_quantity]*2 && [total_price] The result of the calculation will be the price of the current item when the user will see it . You can also allow quantitu selection using calculation . 2. All paypal currencies are accepted for payment, you can find the list here : https://developer.paypal.com/docs/classic/api/currency_codes/ 3. You will find a "E&P Form" module in your VC modules list to easily integrate a form in a page . 4. There is a "Custom CSS" option allowing you to quickly add your own css rules to customize your form . You can give the same look as the contact form to fields and buttons using these rules : #estimation_popup .btn,#estimation_popup .form-control { height: 50px !important; border: none !important; border-radius: 6px !important; background-clip: padding-box !important; box-shadow: none !important; color: #fff !important; font-family: 'Varela Round', sans-serif !important; } #estimation_popup .form-control{ padding: 0 20px !important; background-color: rgba(255, 255, 255, 0.5) !important; font-size: 16px!important; } #estimation_popup .btn{ background-color: #f6a006!important; text-transform: uppercase!important; font-size: 20px!important; } 5. No, sorry, there is no feature to do payment with this service .

Kundehellotiko

Hi, Wow, thanks for your fast prompt 1, 3, 5. Ok, Noted 2. There is no Indonesian rupiah (my country is Indonesia), do you have any suggestion? 4. So your plugin is responsive right? 6. Can my visitor upload a file? I want an upload file field (for attachment) Thanks

Autorloopus

2. You are right, paypal doesn't seem to support this currency. I see 3 possibilities : - Use the woocommerce feature (items having price must be woo products), then use a payment gateway for Woocommerce to do the payment (selected items will be added to the cart). - Assign a gravity form to the last step, and use a payment gateway for gravity (if you use Gravity feature, the form is submitted directly by Gravity and its addons) . - Maybe search for a freelance (http://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wp+plugin+customization) to integrate your custom payment gateway to your version. 4. Yes 6 Yes, you can freely use files upload fields in your form, and choose allowed types of files and the max number of files accepted in each field. Uploaded pictures automatically show a preview . You can see it here : http://www.wordpress-estimation-payment-forms.com/demo-of-some-components/

Kundehellotiko

Hi, 4, 6. Ok Noted, so I can set the layout as static/standard/non-visual form as my theme did. Thanks for the Custom CSS too, appreciated that 2. Due to simplify the process and mitigation, I prefer to choose the Gravity Form, but just wondering what is the different between your system and Gravity Form? How to make sure that there is error during sync the fields from your system and in Gravity? I'm not sure about PayPal Payment Pro and Stripe, my business will operate in Indonesia and I hope the future clients is came from Indonesia only (so the price and any payment process will ended with Indonesian Rupiah). So which one is the best? Stripe seems cheaper than the Pro but not sure about the Indonesian rupiah stuffs Thanks

Autorloopus

Hello, 2. If you assign a Gravity form to the last step, all the order will be passed to an hidden field you need to create in your Gravity form (details in documentation), and the total price to a numberfield. On gravity, you can set this numberfield as price to pay, and use the wanted plugins on the form (but the Gravity form must have only one page, as it is displayed as last step of the E&P form). For the question about Stripe, you can find accepted countries here : https://stripe.com/global .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von OLDIES_PRO

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
KundeOLDIES_PRO

Hello, i just buy this plugins today and after installation i test form, system not send any data to my email and customer email. Any idea or solution?

Autorloopus

Hello, Please contact me from the support tab, giving me a temporary access to the backend, I will debug it .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Tracild

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-ThreadZahlungenPDF und E-Mail
KundeTracild

I am interested in purchasing this plugin for a wedding venue and want to see if it is possible for visitors to fill in the options and then get a cost estimate on the screen and the estimate then emailed to the admin, but not any actual payments? We do not want to have any payment functions, just cost estimates for options selected. Thank you. Also, is a lot of coding necessary to set it up or is the back end fairly user-friendly? Thank you!

Autorloopus

Hello, Of course, you can create cost estimation form without payments (you can see it on demos) . The admin (and the customer if you want) will receive it by email. You don't need coding at all to use it, just check/uncheck and fill the wanted options of your forms. Creating conditions is also done 100% visually. On backend, moving the cursor on an option, you will see more details on this feature in a tooltip.

KundeTracild

Perfect, and thank you for the fast reply!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von thedzigner

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
Kundethedzigner

Would it be possible to use this plugin to ask interactive questions to determine if a product is right for a customer? E.g. on a sales page the customer would answer certain questions, and the plugin would output (based on the answers) if the product is right for them?

Autorloopus

Hello, No, sorry, the result can be a single price, a subscription price (or both at same time), but not a product. I note the idea, thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Enrico1109

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupport
KundeEnrico1109

When installing the plugin it gives me a message saying The package could not be installed. No valid plugins were found. What could be the issue?

Autorloopus

Hello, You surely try to install the wrong zip file. Please extract the file, you will find the good plugin file, documentation and examples to import inside .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von GillianPerhaps

5 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

12 Nachrichten5 AutorentwortenKäufer-ThreadSupportLizenzierung
KundeGillianPerhaps

Hi, 2 questions: 1. How to activate the plugin? I don't get any error message (but I haven't typed my license code on the website). 2. How do I set the option in a step, that you can only select 1 item? My first step, has 5 items, and I want only that you can select 1 item, and not 5.

Autorloopus

Hello, 1. If you see the activation modal, simply enter your purchase code and click the button. 2. Simply use the same "group" name for the items. Only one will be selectable .

KundeGillianPerhaps

1. I don't see anything with activation. Where should I see it? On the plugins page, I can only deactive it, but I haven't activate it. 2. Thanks, it works now.

Autorloopus

1. If you don't see the popup, it should be ok. If you want, you can send me a temporary access, from the support page, I will check it .

KundeGillianPerhaps

Cool, I've send the login details.

Autorloopus

Thanks, well received, I replied. Everything is ok .

KundeGillianPerhaps

I don't think it's ok. Becouse I can't update the plugin. It's saying that there is an update available. Can you check once again?

Autorloopus

To apply an automatic update, you need to go on the Dashboard > Updates (in wp menu) page, then select the plugin and click the button "Update plugins" . I applied it without problem .

KundeGillianPerhaps

Weird, I know how wordpress works, but I did hit the Update plugin button, unfortunatly, nothing happend.

KundeGillianPerhaps

I do see, that you have updated it, so thanks. I'll leave it for now.

Autorloopus

Because you surely clicked the update button directly from the plugins page. That's why I precised you need to do it from the Updates page. Thanks .

KundeGillianPerhaps

Ah, thanks.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von loponline

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten3 AutorentwortenKäufer-ThreadSupportZahlungenPDF und E-Mail
Kundeloponline

Hello, First thank you very much for creating this great plugin, it seemed a good idea, but I'm a little disappointed because I have not been able to activate ... I tried to activate the plugin on two different websites (to rule out problems) and I am not able to activate it. It always gives me the same error when I want to activate the plugin: Fatal error: Can not redeclare class Mailchimp_Folders in wp-content / plugins / WP_Estimation_Form / includes / Mailchimp / Folders.php on line 3 I do not use MailChimp and I have no related plugin. Can you help me? Thank you.

Autorloopus

Hello, Of course, please send me a temporary access to the backend, I will debug it . You can contact me from the support tab .

Kundeloponline

Tell me an email account and send you an access. Thank you.

Autorloopus

You can contact me directly from the support tab : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Kundeloponline

sent!

Autorloopus

fixed :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von eli1356

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupportAnpassungPDF und E-Mail
Kundeeli1356

hey http://screencast-o-matic.com/watch/cDf62I1zJB

Autorloopus

Hello, I see the support page on the video, but I didn't receive your help request email yet. Please contact me from the support tab, giving me the form url, I will debug this css conflict .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von freakpower

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten3 AutorentwortenAnpassungZahlungenPDF und E-Mail
Kundefreakpower

Hello this is really great plugin. I have question I need that I can place some text description on items in estimator - for example in some popup which appear if mouse hold on item or something like that. Is it somehow possible ? Is there also time picker ? Also will you add date picker and coupon to php version ?

Autorloopus

Hello, 1. There is a description option to display a text under the items. There is also an option "Open url on click ?" allowing to open a page in a new tab (and set the focus on) when the item is clicked. 2. You can use datepickers, and dropdowns for hours. 3. I will surely add these features to the php standalone version, but it isn't planned for the moment .

Kundefreakpower

Hi Thank you for replies. 1) I think I need probably more space for option description. Something about small text feld popup with scrollable text for every item. Proper item description is very important as user frequently dont know exactly what icon means and current description which appear if i hover mouse over icon in many cause is not too helpful wither. I need somehow display there for instance sentence " This service cover large hotel conference rooms with more than 500 people including lighting and conference services. Mobile floor included in porice" - some of that type description I need to have with every item. Ideally to have that scrollable txt field as you have in your demo at end of cost estimation with summary form. In ideal instance I nees such text field under icons in every step and when user select item by click on icon that text change. Is that possible ? 2) So if I understand there is not dedicated time picker where can user select time faster than if I use dropdownboxes for that ? OK I still have some questions 3) if form sended by visitor does it appear somewhere in administration so admin can review and confirm ? 4) does plugin offer good styling options which can admin change easily in administration so I can change easily, styling, form width, color, positions, text color, font size, rearrenge fields etc ? 5) does your plugin integrate with some sms plugins so admin can get sms message when form send and juser get confirmation form was received ? 6 ) does sent form appear in administration ? 7 ) Can visitor delete item from summary ? 8 ) now if visitor dont fill some required field and try send form, form doesn nothing ( so user dsont know whats wrong) Is it possible to make it way that if that happen page autoscroll to field with not filled required field or give user some feedback that he didnt fill required form ? 9 ) Is there some print button so summary of form can be printed or saved as pdf or emailed ? 10 ) your demos are not bad but do you have some really complex demo form which uses many elements and full power of your plugin I can see ? 11) can currency be switched during form filling and if yes does currency conver online using some official exchange rate ?

Autorloopus

1. No 2. No 3. Yes, orders are stored in backend. No review/confirmation once submitted . 4. Yes 5. No 6. Yes 7. No 8. No 9. No 10. You can see some components on the last demo and 3 different uses (single price without payment, subscription with payment, woo commerce gift creator). You can watch the backend tutorial to see how it works and what you can do with it . 11. No, currency is defined by admin for each form.

Kundefreakpower

Hi than k you for replies. a) DO you take custom jobs so you can make me that text field for more item description as custom job ? b) I think points 8 (form dont give user feedback or autoscroll to required items that user dont fill) and 9 (print final page with summary, save as pdf, send by email) ate actually very important. Its surprise for me that your plugin doesnt have it. Fact that user dont get some noticeable feedback if user dont fill some mandatory field (and because of that form cant be send) is a crucial I think as some people can think form was sent beut it wasnt or dont know why nothing happen after they click on send dorm button. Also many people will need to prin last page with summary or somehow save it ( for example in pdf) or send it somewhere by email. I think this is aklso very important. Also possibility for currency change is very handy I think... Would you think of release those functions in some update ?

Autorloopus

Hello, No, sorry, I'm not available as freelance currently. Maybe you can find a free dev to create quickly a fully customized version here : http://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=wp+plugin+customization . Yes, I noted your good ideas. I will study it and will surely add these features in a next update. Thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von matrixmobile

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten2 AutorentwortenKäufer-ThreadAnpassung
Kundematrixmobile

I can't find the form builder anywhere. I just installed the plugin.

Kundematrixmobile

Nevermind. When i manually installed it using ftp the form builder appeared.

Autorloopus

:)

Kundematrixmobile

I love the form builder :) Is there any way to get rid of the Xs and checkmarks on the images? Also, can I get rid of the next step button? So that when someone clicks on one of the items it automatically goes to the next step.

Autorloopus

Thanks :) 1. Simply paste this rule in the "Custom CSS rules" field of your form : #estimation_popup .icon_select {display: none !important;} 2. You simply need to use the same "group" name for your items. Only one will be selectable, and the next step button will be hidden .

Kundematrixmobile

Thank you :) and thanks for the quick response. Cheers :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von deanjon

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadPDF und E-Mail
Kundedeanjon

Hi, how do you remove the quantity column on the email notifications ? It appears in table but i need to remove this unwanted column Also how d you blank out price on row of upload image, a default 0.00 always appear in the price column for upload image thanks

Autorloopus

Hello, 1.Simply activate the option "Hide quantity column" in the "Email" tab. 2. Activate the option "Hide zero prices" in the "Email" tab.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von BrendanHop

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
KundeBrendanHop

After checking out this plugin, seems perfect for what I need. One question I would have though is if it is possible to animate the total cost number while it slides? So it would act similar to this example: http://codepen.io/shivasurya/pen/FatiB/ I found a snippet of code and tried to plug-n-play but no cigar: $('.progress-bar-price').each(function () { var $this = $(this); jQuery({ Counter: 0 }).animate({ Counter: $this.text() }, { duration: 1000, easing: 'swing', step: function () { $this.text(Math.ceil(this.Counter)); } }); }); I also tried implementing this script: http://aishek.github.io/jquery-animateNumber/ - no luck. Any way to easily achieve this?

Autorloopus

Hello, No, there is no such animation currently. I note the idea, thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von paulprinttex

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadSupport
Kundepaulprinttex

Hello, there is any way to add as link condition, total quantity of various items instead of total price, this option is not on the list, some method to add ? I want to go to a certain step if a total of x items are selected in first step, the condition will be ¨total quantity¨

Autorloopus

Hello, Not currently. You can create conditions based on the quantity(or price) of a specific item, or on the total price, not on total selected quantities. I'm going to add this new option .

Autorloopus

Done :) I will add it in the next update. You can contact me from the support tab if you want it immediately.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Visty0137

4 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

7 Nachrichten4 AutorentwortenKäufer-ThreadSupportAnpassungPDF und E-Mail
KundeVisty0137

Hi! One question -> How could i put the "next and previous button" under progress bar? THANKS!!

Autorloopus

Hello, To do that, you need to edit the file includes/lfb-core.php, and move the line 922 (containing the btn-next button) to 587 . Then add this rule to the "Custom CSS rules" field of your form (tab design) : #estimation_popup #mainPanel .btn-next { margin-top: -80px;} #estimation_popup #mainPanel {margin-top: 80px;}

KundeVisty0137

i've just downloaded the plugin and sorry but in line 922 there isn't anything, and line 587 is if ($fullscreen) { $fullscreenCss = 'wpe_fullscreen'; } :(

Autorloopus

You surely don't have the last version. Please contact me from the support tab, I will send you a custom version directly .

Autorloopus

I sent you the customized version .

KundeVisty0137

Where did you send me it? Thanks!

Autorloopus

To v****[email redacted]. I'm going to send it again .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von poky40

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

5 Nachrichten2 AutorentwortenKäufer-Thread
Kundepoky40

Bonjour, il y aura t'il prochainement la possibilité de mettre des vidéos et audios dans le type d'objet?

Autorloopus

Bonjour, Ce n'est pas prévu, mais je note l'idée, merci. Actuellement, vous pouvez ouvrir un nouvel onglet vers le (ou la page contenant le) fichier vidéo/audio en utilisant l'option "Ouvrir une url lors de la sélection?" sur un article .

Kundepoky40

oui j'ai vu mais ce n'est pas pratique pour choisir parmi plusieurs vidéos ou musiques, le top serais de ne pas quitter la page et pouvoir lire les vidéo directement.

Autorloopus

Entendu, c'est noté. Merci !

Kundepoky40

merci a toi.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von deanjon

10 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

23 Nachrichten10 AutorentwortenKäufer-ThreadSupportAnpassungBuchung
Kundedeanjon

hi the preview screen does not work and my main page appears with just all numbers in blocks at bottom Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 I have my short code set to [estimation_form form_id="2" fullscreen="true"] but the full screen don't appear like it used to... i have changed theme on website bit this should not affect the fill screen? it seems date field is conflicting with something.. don't work with theme

Autorloopus

Hello, What is the used version ?(I fixed the calendar possible conflict in a previous version) Please install the last update, and if you still have these issues, contact me from the support tab giving me the form url, I will debug it .

Kundedeanjon

the date selector field is overlapping my footer on theme, why is it doing this? when the form is integrated on page the date box is appearing under the footer..unwanted text , numbers... When i select a date the unwanted numbers overlapping footer dissapears. Please provide me with a fix asap.

Autorloopus

Please check my previous answer .

Kundedeanjon

http://muaythaigp.com/registration/ please see here and look at bottom below footer of the bug

Kundedeanjon

2nd issue is full screen short code does now work, it takes me back to main page of website when a white screen should appear with form. If I can use full screen I will not have to worry about footer problem with date selector. If yu can fix full screen for me then great

Autorloopus

I understood. Please read my first answer . Simply update the plugin . You can also add this rule in the "Custom css rules" field of your form (tab Design) : body > .ui-datepicker { display: none; }

Kundedeanjon

same problem with full screen here , it sits behind website? it should appear white on it's own full page http://muaythaigp.com/contender-cup-registration/

Autorloopus

Simply add this rule to the "Custom CSS rules" field of your fullscreen form to fix this css conflict : .td-container { position: static !important; }

Kundedeanjon

OK i am uploading new version

Kundedeanjon

no still same problem, i will try your fix http://muaythaigp.com/contender-cup-registration/

Autorloopus

The updated fixed your calendar issue, right ? Now the css rule I wrote should fix the fullscreen conflict.

Kundedeanjon

your css custom code worked but the main page appears a red line on my news static slider red vertical line appears on right :(

Autorloopus

So, now the 2 mentioned issues are fixed . You talk about the slider of the main page ? I don't see any link between the slider and my plugin. (js and css files of the plugin aren't used on this page) . Can you disable the plugin to verify ?

Kundedeanjon

no it's not fixed calendar issue i cannot even edit the form, your plugin won't let me add new form or edit existing... when clicking edit it does not do anything? do you have team viewer so you can see your plugin malfunctioning? Please ensure my purchased licence code is relevant to my website.

Autorloopus

I don't see the calendar issue anymore on http://muaythaigp.com/registration/ . I don't use team viewer, but you can send me a temporary access to the backend from the support tab. I will debug and fix this conflict directly .

Kundedeanjon

yes disabled the plugin and the red vertical line disappeared when i added your custom code of .td-container { position: static !important; } it impacted top of main page and inserted unwanted vertical red line

Autorloopus

The css rule shouldn't be loaded on the main page if the shortcode is on another page. I wait your email and will debug it , thanks .

Kundedeanjon

i have sent you email please reply

Kundedeanjon

if i can remove the red vertical line, then all good it's a go..... the custom css fix you gave me causing just this unwanted red line

Autorloopus

Yes, I received your email 1 minute ago and I replied . Please send me a temporary access to the plugin backend and I will debug it .

Autorloopus

Fixed :)

Kundedeanjon

loops solved my issue in 30 mins, thank you!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von 1d3alD1g1

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadWooCommerce
Kunde1d3alD1g1

Hi! I really like your plugin. How difficult would it be to integrate the plugin to work with Woocommerce Subscriptions plugin (https://www.woothemes.com/products/woocommerce-subscriptions/) ? At the moment, the plugin doesn't have option to choose subscription products.

Autorloopus

Hello, Thank you ! I don't know this plugin at all, I will study it.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von JordiSuriol

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupportZahlungen
KundeJordiSuriol

Support for Stripe and Deposits/Partial payments would be amazing!! I'm going to buy the plugin to send forms but please try to implement these functions.

Autorloopus

Hello, Requests noted, I will surely add stripe payment soon . Thanks !

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von paulprinttex

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-Thread
Kundepaulprinttex

Hi, there is a 10mb limit on upload file, how i change value ?

Autorloopus

Hello, In the file includes/lfb-core.php, you need to replace the line (~1686) : $value['size'] by : $value['size'] It will fix the limit to 60mo .

Kundepaulprinttex

wow, this was a fast answer, thanks !

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von pscrignoli

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
Kundepscrignoli

Hi. Is it possible to make conditional 'redirect URL based on choices?

Autorloopus

Hello, No, it isn't possible currently, the final redirection is set by admin for each form. I note the idea, thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von FabioAl

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

8 Nachrichten3 AutorentwortenKäufer-ThreadSupport
KundeFabioAl

It is possible to track authenticated users who fill out the forms? Thank you

Autorloopus

Hello, There is no such feature currently, I will study this possibility. Thanks for the idea .

KundeFabioAl

I hope for good news :-)

KundeFabioAl

Hi, the shortcode work in the backend? Thank you

Autorloopus

Hello, I think not, wordpress shortcodes work essentially in frontend posts and pages. About your previous request, I just sent a new automatic update adding Google Analytics support. You can now track all users (not specifically registered ones) actions in your forms using Google Analytics.

KundeFabioAl

You're lightning in responding! I tried, as you said, are incorporated all the steps, but the progress functionality and choice do not work. For the previous request "trace users" ok that Google Analytics trace them is very useful, but I meant the other thing: I state that in our case the forms are filled only by authenticated users are redirected (backend speech before) on a page with WP Cost Estimation, the request was: given that the user is authenticated when you open the page with the form, if the plugin could trace the user ID, to understand compiled the estimate which user is associated automatically. Congratulations for your support! Fabio

Autorloopus

Thanks :) 1. I'm not sure to understand the problem, but if you have an issue, please send me the form url from the support tab, I will debug it. 2. If you want, I can customize your version to add the username in the generated order if the user is logged on wp.

KundeFabioAl

Great! Given what you say in the next few days to support ... We are implementing these days all our sales activities with your WP plugin Cost Estimation ... and we have to evaluate different situations with its form! There disrupted the activities Thanks :-)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von poky40

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-Thread
Kundepoky40

Bravo pour le nouveau live preview.

Autorloopus

Merci ! :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von costainternet

4 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

8 Nachrichten4 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
Kundecostainternet

Hi, my form is not working http://costainternet.com/?lfb_action=preview&form=2 I Clicking on the "get started" button does not do anything. I have created 2 steps and a test, Please help!!

Autorloopus

Hello, I received your email 30 minutes ago, and I replied immediately. Please disable the js compressor plugin or add the file assets/js/lfb_form.min.js to the exclusion list, it should fix the conflict.

Kundecostainternet

Hi, did not get email. How should I add the file assets/js/lfb_form.min.js to the exclusion list?

Autorloopus

It depends on the used cache plugin. If you want, send me a temporary access, I will do it. Otherwise please tell me the plugin name .

Kundecostainternet

I use W3 Total Cache

Autorloopus

Thanks. In Minify > advanced settings, you should find an option named "Never minify the following JS files" (https://cms-assets.tutsplus.com/uploads/users/164/posts/18303/image/13.png) . Paste this line inside : wp-content/plugins/WP_Estimation_Form/assets/js/lfb_form.min.js Then empty the cache of the plugin. Is it ok ?

Kundecostainternet

Great!!!, That did it. Thanks for your help. Great plug-in

Autorloopus

Thanks ! :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von abispo

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadPDF und E-Mail
Kundeabispo

Hi, how can I export the orders list to csv or xls?

Autorloopus

Hello, I received your email and replied. There is no csv export feature for orders currently. I noted your request and asked you more details on the wanted feature . Customers details can be sent to Mailchimp (email, name, address, city etc ...) and exported as .csv from Mailchimp (http://kb.mailchimp.com/lists/managing-subscribers/view-or-export-a-list ).

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von plnewton

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

4 Nachrichten2 AutorentwortenKäufer-ThreadSupport
Kundeplnewton

I cant seem to get this calculation to work "4" "if(([item-3_quantity] >1) ) {" "[item-15_price]*[item-3_quantity]" "}" I cant get this to display properly, if you take out all the commas you will get the formula Basically a single unit cost is $4, if the quantity of item 3 is greater than 1 then multiply the item 3 quantity by $4 When I add the above formula and save an go into the item again the use calculation box is set to no each time so I dont think it is saving

Autorloopus

Hello, The formula seems correct (without apostrophes) . Can you send me a temporary access to the backend, to debug it ? You can contact me from the support tab .

Kundeplnewton

message sent

Autorloopus

Thanks, I replied. I updated the plugin to the last version, it should be ok now .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von poky40

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten3 AutorentwortenKäufer-ThreadSupport
Kundepoky40

Bonjour je souhaite intégrer le plugin dans des articles, comment faire pour que dans la commande apparaisse le nom de l'article sans créer un formulaire pour chaque articles mais un seul formulaire qui prendrais le nom de l'article pour que je sache ou a était rempli le formulaire? Cordialement Jonathan

Autorloopus

Bonjour, Ce n'est possible avec le titre du formulaire, mais l'url peut être ajoutée dans un champ texte du formulaire. Voici la procédure : - Créer un champ text masqué avec pour titre "url" - Créer un "rich text" masqué - Cliquer sur le bouton "View source" de l'éditeur du rich text - Entrer le code suivant : <script> jQuery(document).ready(function(){ jQuery('input[data-title="url"]').val(document.location.href); }); </script>

Kundepoky40

Bonjour je n'y arrive pas, a la fin ca me met url quantité 1

Autorloopus

Bonjour, Le plugin est-il à jour ? (la colonne information a été ajoutée dans une version précédente). Si oui, vous pouvez me contacter via l'onglet support, en m'envoyant l'url du formulaire, je le vérifierai .

Autorloopus

Fait :)

Kundepoky40

merci beaucoup comme toujours rapide et a l'ecoute.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von plnewton

4 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

8 Nachrichten4 AutorentwortenKäufer-ThreadSupportWooCommercePDF und E-Mail
Kundeplnewton

Hi, I have just started using this and I am wondering if there is a weigh to calculate a shipping price?? There does not seem to be an option for weight so I cant do an calculations for shipping

Autorloopus

Hello, No, there is no weight option currently, I note the request. A solution is to use woo products in your form, adding them to the cart at end of the form. The weight can be managed by woocommerce.

Kundeplnewton

yes, I noticed the woocommerce option but we are using another shopping cart wordpress theme so the products don't show up I could possibly get it to atleast do an estimate of the shipping but I cant work out a way to create a field that I can enter a post code into and then do a calculation based on the postcode. when I create a text field the only options I get under the calculation conditions is weather or not the text field is filled in or not, there is no option for greater than equal to etc

Autorloopus

Textfields hasn't price. You can do it using a dropdown for post code, and an hidden checkbox item doing the calculation (enable "is selected" option) . The calculation can be based on the selected postcode in the dropdown . The hidden checkbox "shipping price" can be displayed in summary/email .

Kundeplnewton

so I would need to add all the postcodes manually?

Autorloopus

Yes, because there is no weight feature currently. But the the solution you imagined also ask to enter all zip codes in the conditions. I'm not sure to understand why you don't use wooproducts in the form to directly manage it with woocommerce .

Kundeplnewton

yes, woocommerce would be an easier solution but we have only just finished upgrading the site to the new layout.. Do you have any plans to add support for premium press shop theme? See here: http://www.premiumpress.com/wordpress-shop-theme/

Autorloopus

Ah ok, you don't use woocommerce. I did not know this wp shop app, I will study this possibility.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von advisorn

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadAnpassung
Kundeadvisorn

Sorry for bother you again. With version 9.436 there's no more space between title and description in step options on mobile devices. Thank you Thomas

Autorloopus

Ah yes, I see it, because used titles and descriptions are long . Please paste this rule in the "Custom CSS rules" field of your form : body #estimation_popup.wpe_bootstraped .lfb_stepDescription { top: 170px !important; padding-bottom: 78px !important; } @media only screen and (max-width:480px){ #estimation_popup.wpe_bootstraped #mainPanel .genSlide h2 { font-size: 28px !important; } } I'm going to improve it for this case . Instead of long step descriptions, you can use a "Rich text" item to show the text .

Autorloopus

I just sent a new automatic update to improve this point. There is now an automatic calculation of the positions of elements, depending on the real height of the title and description.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von advisorn

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

5 Nachrichten3 AutorentwortenKäufer-ThreadSupportAnpassung
Kundeadvisorn

Hi, Awesome plugin! Unfortunately, since the last update the forms can no more be correctly displayed on mobile devices. There is no more space between the "description" in the "step options" and the Items list. Here are the forms i'm using: http://www.archilexconsulting.com/trademarks-services/countries/community-trademark-european-union/european-union-trademark-quotation/ http://www.archilexconsulting.com/trademarks-services/countries/swiss-trademark/swiss-trademark-quotation/ At the same time the items are no more displayed centered like in the previous version. Forms are better displayed on a pc monitor, but, anyway, I had to do some adjustments to make things work like in the previous version. Can you please help me make things working correctly again? Thank you in advance. Thomas

Autorloopus

Hello, Thanks for reporting, I'm going to prepare a new update to fix it . Please paste this rule in the "Custom CSS rules" field of your form (tab Design) : @media only screen and (max-width: 480px) { #estimation_popup .lfb_stepDescription { padding: 0px !important; position: relative !important; top: 120px !important; margin-bottom: 48px !important; } #estimation_popup #mainPanel .genSlide .genContent { padding-top: 58px !important; } }

Autorloopus

I sent the correction as automatic update and to envato. You can contact me from the support tab if you want it immediately .

Kundeadvisorn

Thank you very much! Now everything is working fine!

Autorloopus

Thanks to you for reporting !

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Visty0137

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-Thread
KundeVisty0137

Hi! Awesome plugin team, thanks for your work. I've a question: How can i to fix the tittle?, i mean, i want the see the tittle always, not with hover effect or after a click, just always. Thanks!

Autorloopus

Hello, Thank you very much ! (but I'm not a team ;) ) Tooltips can't be static, but you can use the "description" option on the item panel to show a static text/title below each item.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von GatZ

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

4 Nachrichten2 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
KundeGatZ

I'm very interested in one of the last features you added: - New item option "Is a part of subscription ?"... But probably this change is too recent and that's why i can't find any example in the live demo. It would be great if you could send even just a screenshot of how it works. Does the user get two totals at the end ? Like Setup cost and Monthly fee ? Thanks

Autorloopus

Hello, Yes, it is a recent feature,not yet visible on demos. I'm currently working on a new website for this plugin, I will add new demos soon. Yes, enabling subscription feature, you can use an option now named "Isn't a part of subscription" to apply a single price to specific items. The customer will get two total prices : the single price and the subscription fee. It also work with payments. There is a screenshot : http://loopus-plugins.com/screen_subscriptionSinglePrice.png

KundeGatZ

Thanks for your fast reply and for the screen! That's exactly what I need :)

Autorloopus

:) I just sent an update improving the content of summary and email when the form uses single price + subscription at same time. It also adds a new calculation feature for items. It will be online in a few hours. You can contact me from the support tab if you want it immediately .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von connect5media

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

4 Nachrichten2 AutorentwortenKäufer-Thread
Kundeconnect5media

Hey :D Is it possible to run through all the steps but NOT show the price at the end page? I want the customer to make their choices and the info to be emailed but not show the final price. Thanks, Ian

Autorloopus

Hello, Yes, simply enable the options "Hide the final price ?" and "Hide all prices" in the "last step" tab of your form. You can also choose to show steps in the main circle instead of price (option "Progress bar shows" in General tab) .

Kundeconnect5media

Perfect! Thanks again for such a quick reply!

Autorloopus

Thanks :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von connect5media

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-ThreadAnpassung
Kundeconnect5media

Hey - I have bought the plugin and setting up my first form. Is is possible to control the size of the images uploaded? Thanks!

Autorloopus

Hello, Yes, you can find an option for that in the "Design" tab of your form .

Kundeconnect5media

Awesome!! Thanks for the quick reply ;)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von webaholicsteam

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

6 Nachrichten2 AutorentwortenKäufer-ThreadSupport
Kundewebaholicsteam

GREAT PLUGIN! thanks for adding the setup fee feature. One small issue, when I add three items with fixed cost, then add a 4th item that when checked multiplies the fixed cost by 0.66 the setup fee goes to 0. During this I have the subscription option enabled but no monthly subscription price has been added at this point.

Autorloopus

Hello, Thanks :) If your 4th item is a subscription price, its calculation (apply percentage) is done on the existing subscription price, not the single prices of other items .

Kundewebaholicsteam

Its not a subscription price. Try creating a one step form, then add 2 options. One should be a single item, and the other a checkbox that when checked multiplies the single cost by 0.66 and the result will be single cost goes from $200 to $0 instead of 66% of $200 like it did before. Make sure to turn subscription pricing on.

Autorloopus

Thanks, I did it. The price becomes $332/month. It is correct. Can you send me the url of your form ? You can contact me from the support tab .

Kundewebaholicsteam

I tested again as i described to you and it does work as expected. the difference with my setup that is not working is they are 3 grouped products and 1 checkbox with a multiply price condition. Grouped products appears to be the issue.

Kundewebaholicsteam

Thanks again for quick feedback, Awesome support!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von rfmarchetti

6 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

13 Nachrichten6 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
Kunderfmarchetti

Hi, please, I dont know why, but when I insert the discount code, it repeates several times in its description - http://snag.gy/RIsPJ.jpg thanks

Autorloopus

Hello, Please simply the last automatic update, I fixed this issue .

Kunderfmarchetti

sorry, I couldnt understand your answer. Is there a newer version? I downloaded the plugin 3 days ago. thanks

Autorloopus

Yes, there is a new minor update to fix this specific issue on discount code. It should be online on codecanyon in a few hours, and is already available as automatic update. You should see it clicking on the menu link Dashboard > Updates from your WP backend . Select the row containing the plugin name, then click on the button "Update Plugins" . If you prefer, you can contact from the support tab, I will send you the update directly.

Kunderfmarchetti

great! its working fine now after the update. Ony one thing: the cupons gets erased from the form after some time. (before the update.) have you fixed that as well? thanks

Autorloopus

The coupons are automatically deleted when their maximum number of use has been completed.

Kunderfmarchetti

yes, but I set it to ZERO

Kunderfmarchetti

(infinite)

Autorloopus

Please contact me from the support tab sending me a temporary access to the backend, I will check it .

Kunderfmarchetti

Hi, I have contacted you already regarding another issue. If you can, please use the same access. thanks

Autorloopus

I did it, and I now wait your reply by email, thanks .

Kunderfmarchetti

Hello, I havent recieved any of your emails. My email is [email redacted] - thanks

Autorloopus

Yes, that's the email where I sent the message with the customized version. I sent it again .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von rfmarchetti

9 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

23 Nachrichten9 AutorentwortenKäufer-ThreadSupportAnpassungPDF und E-Mail
Kunderfmarchetti

Hi, great plugin! please, I would like to know how to work some things: 01- title and description of the step: stop the bottom to top fading and slide and style it to have a smaller font - http://snag.gy/jSGvJ.jpg 02- have the item's title fixed above the item and stop the appearence only on rollover - http://snag.gy/zim9f.jpg 03- hide the X icon of all items - http://snag.gy/ILNcC.jpg 04- have the item's title fixed, not appearing on rollorver - http://snag.gy/bymyk.jpg 05- is it possible to have all the item's quantity showing all the time, not only after clicking the item? - http://snag.gy/R0gmp.jpg 06- is it possible to stop the title rollover of certain items only, such as this one? http://snag.gy/5Qpog.jpg 07- the cupon validation button is a little bit out of place - http://snag.gy/x2A9m.jpg thanks

Autorloopus

Hello, 1. You can't change title animation. To change the font size, you can use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup h1 { font-size: 28px !important;} 2. No, but you can use the item description option to do that. 3. With this rule : #estimation_popup span.icon_select { display: none !important} 4-5-6. No, there is no option for that. 7. Please send me the url of the form, I will give you the rule to correct it .

Kunderfmarchetti

Hello, thanks for your answers. How to style font size of the description please?

Autorloopus

For steps descriptions : #estimation_popup .lfb_stepDescription {font-size: 20px !important;} For items descriptions : #estimation_popup .itemDes {font-size: 16px !important;}

Kunderfmarchetti

great, thanks! just the code for the title's font size didnt change it: #estimation_popup h1 { font-size: 28px !important;} thanks

Kunderfmarchetti

and this is the url of my form so you can see the alignment of the cupon button: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Autorloopus

Please try this : #estimation_popup h2 {font-size: 28px !important;} #estimation_popup #lfb_couponBtn { position: relative; top: 13px; margin-left: 8px; }

Kunderfmarchetti

great, thanks! and what would be the alternative code to change the title's size, the one you gave me didnt work: #estimation_popup h1 { font-size: 28px !important;}

Kunderfmarchetti

hi, sorry! now I see that the code #estimation_popup h2 {font-size: 30px !important;} works fine for the title. thanks for the fast support ;)

Kunderfmarchetti

Please, now the descriptions's titles have the same color of the row's background color (pink). Those titles were white before, I dont know what changed. - http://snag.gy/KQ7Bm.jpg - and this is my design tab configuration: http://snag.gy/yqJ2s.jpg - maybe a css would fix this. thanks

Autorloopus

Can you send me the url of the form ?

Kunderfmarchetti

Hello, I thinkg I understand why. My theme makes all text pink, the same pink as the background. And this css of my theme rules over the plugin. I think that if we can remove the of the title in the description of the order, it will be white again. this is my page: http://sapatinhodebronze.com.br/2016/?page_id=6490 and this is the preview of the form, that works fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Kunderfmarchetti

SORRRY, MY CODE GOT ERASED HERE ---- I thinkg I understand why. My theme makes all "STRONG" text colored pink, the same pink as the background. And this css of my theme rules over the plugin. I think that if we can remove the "STRONG" of the title in the description of the order, it will be white again. this is my page: http://sapatinhodebronze.com.br/2016/?page_id=6490 and this is the preview of the form, that works fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Kunderfmarchetti

Hi, my theme has a css that makes all "strong" text pink and it rules even in the plugin. I think this is the issue. If I can make the description's titles not bold it will appear white. If you see the form in my theme the title is pink (http://sapatinhodebronze.com.br/2016/?page_id=6490) but if you see the form in the preview page, it is fine: http://sapatinhodebronze.com.br/2016/?lfb_action=preview&form=1 thanks

Autorloopus

You can use this rule : #estimation_popup .sfb_summaryStep strong {color: #FFF !important;}

Autorloopus

Please can you stop to create new comments for each question ? Please use the button "Reply" instead, thanks .

Kunderfmarchetti

Sure! Please, I noticed that the total price is showing wrong. If you do the math of all the items it doesnt match the total price, that is always bigger. Another thing, after you click the NEXT step in the form, it scrolls the page a little bit. After 2 or 3 steps the page gets too much scrolled. Please take a look: http://sapatinhodebronze.com.br/2016/?page_id=6490 thanks

Autorloopus

Please contact me from the support tab sending me a temporary access to the backend, I will test and debug it .

Kunderfmarchetti

Please, how to remove the grey effect after clicking an item? thanks

Autorloopus

Using this css rule : #estimation_popup.wpe_bootstraped .selectable.checked .img { -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important; filter: none !important; }

Kunderfmarchetti

thanks, but it didnt take effect. the grey filter still applies. I have sent the form. thanks ;)

Kunderfmarchetti

Please, is it possible not to show the "Succed text" at the end of the form and redirect the user to the url defined imediatelly after the form submission? It takes to long for the redirection. thanks

Autorloopus

I replied your email and wait your answer, thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von nghanwei

4 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

8 Nachrichten4 AutorentwortenZahlungenPDF und E-Mail
Kundenghanwei

HI, is there a demo available before purchase?

Autorloopus

Hello, - Yes, you can find demos here : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/full_screen_preview/7818230 - And a video preview of the backend here : https://www.youtube.com/watch?v=OtpvjM7vJ4M (There were many new features and improvements since this video, but it allows you to see how the backend works.) - You can also find screenshots clicking on the "Screenshots" button on the main page .

Kundenghanwei

Went through the suggested but did not see any Discount coupon codes management?

Autorloopus

Yes, it isn't in the video because it is a recent feature. You can see it on screenshots : https://0.s3.envato.com/files/178406626/screen_6b.png https://0.s3.envato.com/files/178406626/screen_01.png

Kundenghanwei

Hi Loopus , the 2nd link is not working. What type of setting can be set? Flat rate or Percentage? Is there a duplicate function on discount code, after clicking it will create a discount code with similar features except for the code itself. Can i directly email it to a person?

Autorloopus

Strange, the two links work for me. No, there is no duplicate or direct email feature for discount codes currently .

Kundenghanwei

Its working not, was a FTP error when i tried it earlier. Can i see what discount code was applied if they order through the form.

Autorloopus

Yes, you see the coupon code in the order (received by email and stored in logs) .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von rfmarchetti

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

8 Nachrichten3 AutorentwortenKäufer-ThreadAnpassung
Kunderfmarchetti

Hello, please, is possible to reduce the space between the title and the items and also between the items and the "next" button?- http://snag.gy/y26gh.jpg thanks

Autorloopus

Hello, Simply use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .itemBloc {margin-top: 8px !important;margin-bottom: 8px !important;} Please use the button "Reply" for your different messages.

Kunderfmarchetti

great. thanks! it worked perfectly. And, please, how to reduce the space below the "go back" button and the end of the plugin? - http://snag.gy/TbVl3.jpg

Autorloopus

Using this rule : #estimation_popup {padding-bottom: 8px !important; }

Kunderfmarchetti

thanks, but it didnt seem to take effect. please see here: http://sapatinhodebronze.com.br/2016/?page_id=6490

Kunderfmarchetti

thanks, but it didnt seem to take effect, please see: http://sapatinhodebronze.com.br/2016/?page_id=6490

Autorloopus

It works, you can reduce again the space with this rule : #estimation_popup #mainPanel {padding-bottom: 0px !important;}

Kunderfmarchetti

great thanks

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von burstx

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadAnpassung
Kundeburstx

By default the tool is centered. Is it possible to easily align everything to the left?

Autorloopus

Hello, You can do it using this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .row {text-align: left !important;}

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von ubuyi5

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

7 Nachrichten3 AutorentwortenKäufer-ThreadSupportAnpassungZahlungen
Kundeubuyi5

Hi loopus, Can you try to make some improvement for the type "File field"? Many of my customers upload photos to me using this function. But in the final, their "photos" become "Oops! That page can’t be found." I know the files will not be uploaded before they click "place order" button. Can you try to make some changes, for example, upload files before they click "place order" button. And show 1-100% to make sure files are uploaded to the server.

Autorloopus

Hello, I note the idea to load files before the end of the form, thanks. But you shouldn't have this issue with uploaded files. Is the plugin updated ? Please contact me from the support tab, giving me the url of the form, I will check it .

Kundeubuyi5

The plugin is up-to date Try this http://gss.ubuyi5.com/ig

Kundeubuyi5

Sorry, this is the test form: http://gss.ubuyi5.com/test/

Autorloopus

Thanks, it seems to upload correctly the files from the form. As I can't see logs and received admin email, can you send me an export of the form and one of the files with which you had this problem ? I will test it on my side . There is a css code to paste in the "Custom CSS rules" field of your form (tab Design), to fix the css issues on the page : #estimation_popup .row {float: none!important; } #estimation_popup .progress-bar {position: relative; z-index: 99;} #estimation_popup #lfb_couponBtn { position: relative; top: 12px; margin-left: 8px;} #estimation_popup .progress-bar-price { font-size: 16px !important; }

Kundeubuyi5

Sorry..I don't know how to send an email to you, but can you try to upload these 2 photos again? (with the same file name) http://gss.ubuyi5.com/wp-content/uploads/user_uploads/lmansze2/image.jpeg http://gss.ubuyi5.com/wp-content/uploads/user_uploads/iphone6/image2.jpg

Autorloopus

Thanks, the files work correctly on my side, they are correctly uploaded. You can contact me from here : http://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support I will reply, and you can send me the export of the form .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von abhishek_n_anand

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenSupportAnpassung
Kundeabhishek_n_anand

Hello, I m using an option where user can select the quantity using Enable quantity choice ?. The icons which shows above the image, I want show them below the image. when i do it by css the icons stop working.can I change (+)(-) icons to sliding scale and after that can i make them below image without overlapping the image. Can you help me in this? Thanks in advance

Autorloopus

Hello, For support requests, please contact from the support tab, using your buyer account.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von FabioAl

3 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

5 Nachrichten3 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
KundeFabioAl

Hi, in the order summary sent to the customer by email, at the end of the order if you use a coupon code, the same appears repeatedly, how can you hide it? example: discount (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON) (CODECOUPON): - € 50.00

Autorloopus

Hello, Are you sure the plugin is updated ? What is the used version ?

KundeFabioAl

9.421

Autorloopus

Thanks. Please contact me from the support tab, telling me the url of the form, I will debug it .

Autorloopus

Thank you, I found and fixed the issue. I sent a correction as automatic update .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von YipXyz

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-Thread
KundeYipXyz

Hi Great Plugin, after sales question. I need to be able to change the title of the last step. Now he is always taking the title from step name. I asked this few weeks ago but not possible... has it been updated yet? And if i pay extra for this feature something we can get done? Thanks

Autorloopus

Hello, You can freely change the last step title from settings (in "Last step" tab), changing the text in the "Last step title" option.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von rfmarchetti

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

5 Nachrichten2 AutorentwortenKäufer-ThreadSupportAnpassung
Kunderfmarchetti

Hello, that is great and I think it will solve my problem helping my customer to buy my product. Please, tell me: - is it compatible with Jupiter theme (sold here at envato)? - is it compatible with visual composer? and the most important: My partners dont understant a thing about all this. I would need to show them the process working with our product so they can visually see it on action. Would you provide me a demo access in YOUR wp install so I can create one demo form for them to see it working? That would deftnelly help me convice them this is our best choice. thanks

Autorloopus

Hello, 1. Yes, it works with any theme 2. Yes, it is compatible with VC 3. No, sorry, I can't give you access to my wp installation, but you can find a video trailer, a video tutorial, a written tutorial, screenshots and 3 different demos on the plugin page. Maybe it can help .

Kunderfmarchetti

ok, thanks. I forgot to ask if I can hide the price/process bar at the top. that is not important for me and will confuse my client (really old ladies). thanks

Autorloopus

Yes, simply pasting this rule in the "Custom CSS rules" field of the form (in tab "Design") : #estimation_popup #genPrice {display: none !important;}

Kunderfmarchetti

great! thanks

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von oxygengraphics

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-Thread
Kundeoxygengraphics

Is there any way I can get this plugin to display a break down of 3 costs rather than just one on the final step? Thanks

Autorloopus

Hello, No, sorry, a form can generate a single price, a subscription price, or a single price + a subscription price at same time, but not 3 different single prices. You need to use different forms .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von FabioAl

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

4 Nachrichten2 AutorentwortenKäufer-ThreadZahlungen
KundeFabioAl

Hello, good job! From my testing before putting into production all ok :-) Question: After the customer is redirected to PayPal payment made is redirected to the URL set in "Call an url on close"? Thank you

Autorloopus

Hello, Thanks :) Yes, after the payment, the customer is redirected to the url you set in the "Call an url on close" option of the form.

KundeFabioAl

Thank you! 5 Stars for "WP Cost Estimation"

Autorloopus

Thank you very much !

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von gmumm09

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-Thread
Kundegmumm09

Hi there, I'm considering buying your plugin but wanted to know if the plugin allows you to display two prices: 1- A one time upfront costs 2- An ongoing cost For instance, I own a business where customers have to purchase equipment upfront and then pay a separate monthly fee after that. Would this plugin work?

Autorloopus

Hello, A form can give as result a single price or subscription, but not the both at same time. Maybe you can redirect the user to a second form when the first is finished (single price, then subscription) . I note the idea.

Autorloopus

Hello, The last update allows your forms to generate a single price and a subscription at same time, as asked. It also works with payments.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von jonrouse

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadPDF und E-Mail
Kundejonrouse

I've updated today and it took my site offline.

Autorloopus

Hello, I received your email 1 minute ago and I replied. I wait your answer .

Autorloopus

Fixed

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von webaholicsteam

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadZahlungenPDF und E-Mail
Kundewebaholicsteam

I would like bump the request for a one-time cost in addition to the monthly subscription. There is great need for this feature to allow for setup costs with monthly plans. I contacted you on your site about this, I would be willing to develop it for you so can add it to your next update if you would like.

Autorloopus

Hello, Thank you very much for your aid proposal and your request . I don't see the email. I planned to add this feature in the next update. I'll begin development next week.

Autorloopus

Done, I just sent an update to envato and as automatic update. You can now use the new item option "Is a part of subscription ?" in your subscription forms to generate a single price + a subscription price together. It also works with payment .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von poky40

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-ThreadZahlungen
Kundepoky40

Bonjour, petite question rien ne permet de savoir si la commande a bien était payé? J'ai testé en allant jusqu'a paypal et en annulant à la fin, la commande et quand meme dans la liste des commandes mais aucune mention de paiement.

Autorloopus

Bonjour, Il vous suffit d'activer l'option Paypal IPN dans votre formulaire et configurer l'IPN dans votre compte paypal. Seules les commandes dont le paiement est vérifié seront alors prises en compte.

Kundepoky40

Merci pour la reponse

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von fra84x

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupport
Kundefra84x

Hi, I have a problem, because I try to upload the image preview of the items in the estimate, but it doesn't show anything and the field stay empty. thanks If you go to www.woowagency.com/costo-siti-web you can have a look at :) Thanks

Autorloopus

Hello, The plugin simply uses the default wordpress media picker, and the picture should be added to the field once the button "Insert into post" clicked. Maybe you have a plugin causing a conflict with it. A simple solution is to paste the picture url directly in the picture field (you can see url of your pictures from the Media > Library wordpress panel). If you want, you can contact me from the support tab sending me a temporary access to the backend, I will check it .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von connect5media

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadAnpassung
Kundeconnect5media

Hey, I am looking for a plugin to use as a loan calculator and I really like your front end design. Can we create custom fields to the submission form? Can we upload custom icons? Can we display some sort of "thank you" page when the user submits? Cheers, Ian

Autorloopus

Hello, Thanks :) 1. Yes, you can freely manage fields (textfields, selects, textarea, files uploads, colorpickers, checkbox ...), items, steps and forms . 2. Of course, you can use your own pictures/icons 3. Yes, you can redirect the user to a specific page when the user submits the form.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von jpandino

0 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten0 Autorentworten
Kundejpandino

I upgraded to the new version today and I can't activate the plugin. I deleted the plugin and reinstalled still the error persists... Parse error: syntax error, unexpected '[' in /nfs/c03/h05/mnt/166612/domains/domain.yeah/html/wp-content/plugins/WP_Estimation_Form/includes/lfb-core.php on line 1529

Kundejpandino

I deleted all the files then installed the previous version and it works now.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von socialdev

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenSupportAnpassung
Kundesocialdev

Before Purchase Question 1. As far as I checked, it doesn't support decimal separator if the number is over than 1,000,000. It shows me 1000,000. 2. I need an option for some item must be selected. Is there any option that user cannot deselect? If you can change this, I will surely purchase this nice plug in.

Autorloopus

Hello, 1. Yes, you can now freely edit the million separator, the thousands separator and the decimal separator. 2. Yes, there is an option "Is required ?" for checkbox and textfields. There is no option to make a picture unselectable currently, but you can contact me from the support tab once your form ready, I can give you a custom CSS rule to do it .

Kundesocialdev

Thank you so much!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von puzzlerdesign

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
Kundepuzzlerdesign

Hello. Before purchase this plugin I need some info. I need to a dynamic price calculator based on a costum size (weight, height) of the product (print agency sells a printed supports like panel or pvc banner). Can this product create something like that? http://imgur.com/K5SvZnI

Autorloopus

Hello, Yes, you can do it using conditions on links between steps. For example, if "base" > 125 and 75 , you send the user on step Y. On step Y, you can add a hidden selected item to add a specific price or apply a specific percentage on the total price. Then simply do the same thing for other specific prices depending on the size (steps, items and forms can be duplicated in 1 click). Then steps X,Y,Z can send the user to the same step B to continue the form.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von higherimages

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenSupport
Kundehigherimages

Having an issue with multiple forms - they all start with the same number so they sometimes send the wrong emails out. Really weird. is there any way they can each start with a different letter so they do not overrun one another? http://www.bluechipexterminating.com/wp-content/uploads/2016/03/chip.jpg

Autorloopus

Hello, Apparently you did not purchase the plugin. If you have an issue, please contact me from the support tab with your buyer account, I will help you . The version used on your website isn't updated. Reference prefix can freely be edited from settings of each form .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von rucoxn

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadSupportAnpassungPDF und E-Mail
Kunderucoxn

Hi I've been trying to contact you via the AUTHOR button (I've sent 3 messages so far) but I am not getting a response.. hopefully you can please help me here about the WP Estimation Builder: (1) if we needed to add a step where we could add a certain % to the total price - can we do that and how? the reason we are asking is because we wanted to add sales tax to the estimator we are setting up - so is there a way to create a step where the user selects what state they are from and then depending on their choice, the estimator will automatically add the appropriate tax % to all total prices calculated? (2) is there a way to hide the button style from a step so the only thing a user has to do is click on the image to select it? (3) When you click on an image to select it in a step- the buttons the user has to press to indicate how many of that product they have or want is currently showing at the top of the image - is there a way to set it so it appears at the bottom of the image? thanks :grin:

Autorloopus

Hello, The only email I received from you was 12 days ago, and I replied (about tax) . If you want to contact me, please simply use the support tab or reply to my email. 1. As I wrote in my email, there is no such option currently. You need to use a required item applying percentage to apply the tax . I noted the idea. 2. Yes, simply use a group name on your item, and set the "Selection required" option of the step to true. 3. Yes, simply use this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup .quantityBtns { top: auto !important; bottom: -34px !important; }

Autorloopus

1. I just added a new option allowing to hide items and steps in the form (and show them in summary/email and calculation). With it, you can easily apply your tax at end of the form. I'm going to send it as automatic update. You can contact me from the support tab if you want it immediately .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von testtube

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenKäufer-ThreadSupportPDF und E-Mail
Kundetesttube

Hi, I have just updated the plugin to find that when I tested it the email that is sent with the quote is completely blank. It used to work until 5 minutes ago - I have attached my site, so perhaps you could help. Many thanks Testtube https://omnisearch.uk

Autorloopus

Hello, Please contact me from the support tab, giving me a temporary access to the backend, I will debug it .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von odesignc

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

5 Nachrichten2 AutorentwortenKäufer-ThreadSupportAnpassungWooCommerce
Kundeodesignc

hi, important question: i am using woocommerce. How to force/ask the user to login/register when a non logged user access this payment form ? if you say there is no way or option, can you kindly provide me a plugin or a code line to make this ? thanks

Autorloopus

Hello, To do that (protect a page by login), you need to create a new page template in your theme : http://fotan.us/require-login-for-single-wordpress-page/ If you want, you can contact me from the support tab and send me the page.php file of your theme, I will create the custom template for you.

Kundeodesignc

ok i just sent you a email now, thank you

Kundeodesignc

thank you so much for your help !!

Autorloopus

Thank you for the review :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von StudioNuuk

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadSupport
KundeStudioNuuk

I have a problem : wp-content/plugins/WP_Estimation_Form/includes/lfb-core.php on line xxxx But my version of PHP is 5.4.45. What can i do ? Thanks

Autorloopus

Hello, Please contact me from the support tab, I will help you .

Autorloopus

Fixed.

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von samurai1

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

4 Nachrichten2 AutorentwortenKäufer-ThreadSupport
Kundesamurai1

Hi, great plugin - I guess! Pre-purchase question: Do you plan to solve this case? Users can leave additional free text information (that are not relevant to the price) in steps. Example: Choose your car paint: standard/metallic/pearlescent ... Type your color: "...". This is usefull in the case of plenty of options or unlimited options for 1 item. Thank you in advance!

Autorloopus

Hello, Thanks :) This case is already solved : you can freely use textfields, textareas, file upload fields and colorpickers (since the last update) in your forms .

Kundesamurai1

Thx ... and sorry that I'm a fool. I will buy .. and learn. :-))

Autorloopus

No problem, you're welcome :)

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von roguey

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-ThreadPDF und E-Mail
Kunderoguey

Is it possible to use this for outcomes other than cost estimation? eg. To find the right tool as it asks a series of questions re features, user numbers etc? just not a $0 outcome?!?

Autorloopus

Hello, Yes, it is possible : there are options to hide the final price, and the prices in the email and summary, and another to show steps instead of price in the progress bar .

Kunderoguey

LEGEND

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von AngeloLazzari

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenPDF und E-Mail
KundeAngeloLazzari

Hi, grat plugin! i just wanted to know if there is the option to ask customer email to see/send the estimated price or email to start the cuote... simply i want to take trace about how many is tring to make a quote... i don't want visitors can have a quote without to leave at least the mail and telephone for example...

Autorloopus

Hello, Not currently, thanks for the suggestion .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von onlyonemj

4 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

9 Nachrichten4 AutorentwortenSupportZahlungenPDF und E-Mail
Kundeonlyonemj

Pre-sales question - does it have a Mailchimp sign-up checkbox? And what are the available payment gateways?

Autorloopus

Hello, Not currently, but I note the idea, thanks. Payments can be done via paypal (single payment or subscription) . You can find all features list on the plugin page.

Kundeonlyonemj

Thank you for swift response. I have another question - is it WPML friendly?

Autorloopus

You can easily translate the backend texts in different languages using the "String Translation" WPML feature or using the .po file. All frontend texts are directly editable for each form from backend. You can duplicate a form in 1 click, then change texts and currency settings (its symbol, position and separators) if you want to use it for different countries.

Kundeonlyonemj

Ok fantastic thanks very much - it is the front-end languages and currency that I needed to show in French and English. Is there a way for me to add the mail chimp signup checkbox myself somehow or is there a risk that I would break the code for this plugin? It's that and a file upload option that would complete what my client is looking for. Fantastic work by the way.

Autorloopus

If you know php, you can edit the function send_email() of the file includes/lfb-core.php (you can recover the customer's email using the variable $email at end of the function). I noted this great idea, I will add it as an option in a next update .

Kundeonlyonemj

Thanks - that helps. I'm guessing that the "Mailchimp for Wordpress" plugin would not have the ability to add the checkbox to your form at the end?

Autorloopus

No, but if you want, contact me from the support tab after purchase, I will send you a customized version that send the customer's email to your mailchimp list at end of the form . Then I will add it as a new feature in the next update.

Kundeonlyonemj

Thanks very much you're too kind! I'm sure people would find this feature useful for the next update. Can't wait to implement into client website!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von belayachimarouane

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten1 AutorentwortenKäufer-Thread
Kundebelayachimarouane

Pre Purchase question : In my estimation calculator, I need to ask clients for a their house surface, than depending on that surface, option will have different costs. Is it possible with this plugin ? Does use conditional logic ? Thank you

Autorloopus

Hello, Yes, it is possible. Simply activate the "Enable quantity choice ?" option on the "House Surface" item (quantities can be changed with buttons, slider or a number field), then use conditions "Quantity is egal to" , "Quantity is superior to", "Quantity is inferior to" on the links to redirect the user to the good step depending on his choice. You can duplicate your steps in 1 click to set the options with different prices depending on the choosen surface .

Kundebelayachimarouane

Great! Purchasing it now!

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Idaniel

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 Autorentworten
KundeIdaniel

Hi, I have question before purchase, is it possible to add font-awsome icons? Best regards,

Autorloopus

Hello, No, icons must be images (you can easily find icons here : http://www.flaticon.com/ , http://www.iconsdb.com/ ).

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von friedinand

1 direkte Autorenwort in diesem öffentlichen CodeCanyon-Gespräch.

2 Nachrichten1 AutorentwortenZahlungen
Kundefriedinand

Hello, payu gateway si supported for payments?, also, is possible create rules based in dates? thanks.

Autorloopus

Hello, Only paypal is used for payments. No, there is no date rules option currently, I note the idea, thanks .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von Brockway

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadPDF und E-Mail
KundeBrockway

Hi Loopus, Can you take a look at this screen : https://www.dropbox.com/s/tbzpzcwilq4lh12/loopus.jpg?dl=0 I disable price everywhere thanks to all options you provide. But it still display there, how can i disable that ?

Autorloopus

Hello, The option "Hide zero prices" allows you to hide $0 prices from the summary, but not the full price column or the total row. I note the request and will add this option in the next update.

Autorloopus

Done, I just sent you the last update : new option "Hide all prices" in "Last step" tab, to hide price column and total from summary/email new option "Automatic next step" to enable/disable the automatic call of next step when only one item is selectable and step is required new option "Inverse gray effect" to inverse the grayscale effect on picture (item is gray if unselected) I sent it as automatic update too .

Öffentliche CodeCanyon-Diskussion · WP Cost Estimation & Payment Forms Builder

Frage von doodlebot

2 direkte Autorentworten in diesem öffentlichen CodeCanyon-Gespräch.

3 Nachrichten2 AutorentwortenKäufer-ThreadSupportAnpassung
Kundedoodlebot

Hi, I have added fields to the 'last step' tab, but they are not editable when filling out the form. The rest of the form is fine. Hope you can help?

Autorloopus

Hello, Yes, please contact me from the support tab, giving me the url where I can see the issue, I will debug it.

Autorloopus

Fixed, there was a css conflict.