Loading...
Marketplace history

Real CodeCanyon questions and author answers

Browse buyer questions, pre-sale scenarios, setup issues, and direct author replies from the years when WP Cost Estimation was sold on CodeCanyon. See how real customers used the plugin and how common questions were answered.

5,557

Public discussion threads

Public CodeCanyon support history

19,461

Messages

Customer questions, follow-ups, and context

8,679

Author replies

Direct replies by the plugin author

78

Archive pages

Newest conversations first

Public email addresses and purchase-code-shaped values are redacted. Original wording is otherwise kept as plain text so the support context stays readable.

Support: 2699Customization: 1536Payments: 1482PDF and email: 1275WooCommerce: 406Booking: 221Licensing: 215

Search the archive

Find a CodeCanyon question or answer

Search all public discussion threads by keyword, customer name, feature, integration, or support topic.

Type at least 2 characters to search the full archive.

Page 54 of 78

Latest archived discussions

Each thread keeps the customer question, follow-up comments, and author replies together, newest first.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from manokemh

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupport
Customermanokemh

Hi there! I have 2 issues here. First, it seems like I'm forbidden from downloading the update. It just failed to install everytime I update. Second, the plugin loads really long on the foreground and the progress bar when set to show the price does not increase much in the bar relative to the costs. Please kindly advise. Thanks!

Customermanokemh

I might have accidentally revoke access for Envato API. Would that affect?

Authorloopus

Hello, 1. Please contact me from the support page, sending me a temporary access to the backend, I will check it . 2. Simply fill the option "Maximum price" with a value. It will define the price corresponding to the progress bar filled (the real total price can exceed this value) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from VeryBrightIdeas

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CustomerVeryBrightIdeas

I'm trying to get the table at the last step to fit devices like a Samsung galaxy S7 but instead it scrolls. Any ideas?

Authorloopus

Hello, The final summary uses the responsive table component of bootstrap : if the width of the screen is smaller than the table, the user can scroll it horizontally to see the content. You can freely edit the styles of the table and cells using the Form Designer. If you want, you can contact me from the support page sending me the url of the form, I will check it.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from andersonnarciso

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesCustomizationPayments
Customerandersonnarciso

Hello how are you? I like your plugin, I wonder if he has no possibility of separating items with subscription of items with price paid only once. Example: Summary: Media management $500/month Membership fee $200 Graphic design $300 Its possible?

Authorloopus

Hello, Yes, it is possible. Once the "Use subscription" option activated, you will see a new option "Isn't a part of the subscription" on the item panel. Simply activate this option on the items having a single cost. The result will be the single cost total price + the subscription total price. It also works with payments (Paypal or Stripe). In this case, the first payment will be only the single cost, and the subscription will start the next month (or the next week/day/year, depending on the chosen frequency) .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from volcom2278

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupportCustomization
Customervolcom2278

Is there anyway to customize the progress bar to call a certain step like 1/9 or 2/9?

Customervolcom2278

$response .= ' id.'" class="btn btn-wide btn-primary btn-next '.$hideNtxStepBtn.'">Style '; someting like this but call an exact step instead of next?

Authorloopus

Hello, You can choose to show the current step (ex: 1/9) in the progress bar instead of the total price, but the progress bar can't be used directly to change the step . As all steps and items are fully dynamic (they can be activated/disabled depending on freely defined conditions), a such an option would not work in many cases (because the next steps can be different or disabled depending on the selection made). If you need a specialized team to add such specific customizations to your version, I recommend you this one : https://wpkraken.io/?ref=loopus .

Customervolcom2278

Can I get a refund then? Because a super little thing like this I can't even get help on.

Authorloopus

Yes, no problem. Please uninstall the plugin then ask a refund from here : https://themeforest.net/refund_requests/new

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from volcom2278

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
Customervolcom2278

Is there anyway to customize the progress bar to call a certain step like 1/9 or 2/9?

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from JosueAlfonso

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer thread
CustomerJosueAlfonso

How can i configure the cost estimation from the start? not clicking a button to start.

Authorloopus

Hello, Simply disable the option "Enable Introduction ?" in the "Last step" settings tab of the form.

CustomerJosueAlfonso

thanks! and its possible to reduce height?

Authorloopus

Yes, you can freely edit the styles of each element of your form using the form designer extension : https://www.youtube.com/watch?v=sCxV7CdTcrQ

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from ishiboy

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPayments
Customerishiboy

Hi. I'm interested in buying this plugin. Does it have a functionality wherein users (those who complete the form) can log in and checkout the status of their application/purchase? Thanks a lot!

Authorloopus

Hello, No, sorry, there is no such option currently. Thanks for the idea.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from theplastickid

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadCustomization
Customertheplastickid

Is it possible to leave a different message based on a condition at the final page. For example. If the estimate is more than $5000 display one message if the quote is less display a different message. Or display message based on the users choices, check boxes etc.

Authorloopus

Hello, There is no option to directly do that, but you can do it pasting this code in the "Custom JS" field of your form : jQuery(document).ready(function(){ jQuery('#wpe_btnOrder').click(function(){ var form = wpe_getForm(jQuery(this).closest('#estimation_popup').attr('data-form')); if(form.price > 5000){ jQuery('#finalText').html("Text for total superior to $5000"); } else { jQuery('#finalText').html("Default text"); } }); });

Customertheplastickid

Thanks, how would you write a conditional statement to check the result of a number in a drop-down (selected earlier in the form) against the final total? I want my client to select their budget with a drop down field and then provide a different message if their selected budget is less than or greater than the job amount. I.e. "Sorry your budget is not in line with our estimate" or "Thanks for submitting your proposal, it looks like we can work together".

Authorloopus

Here is the JS code to use (you need to replace the title of the select by its real exact title) : var titleOfTheSelect = "My select title here"; jQuery(document).ready(function(){ jQuery('#wpe_btnOrder').click(function(){ var form = wpe_getForm(jQuery(this).closest('#estimation_popup').attr('data-form')); if(jQuery('#estimation_popup [data-original-title="'+titleOfTheSelect+'"]').attr('data-price') > 5000){ jQuery('#finalText').html("Thanks for submitting your proposal, it looks like we can work together"); } else { jQuery('#finalText').html("Sorry your budget is not in line with our estimate"); } }); });

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from yunfeng_rocks

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadPayments
Customeryunfeng_rocks

Does this plugin accept Stripe's Alipay method?

Authorloopus

Hello, Not currently. I note the request, thank you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from megrikyan

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
Customermegrikyan

Hi there. Just installed this plugin. It works perfect. I have one question. On the first step my client chose one of the options. And plugin shoes the price for this option. On the next step There are some sub-options. And the plugins is supposed to substitute the previous price to the new price (according to the chosen sub-option) But instead the plugin is summing two prices (two options) Here you have the link. But everything is in Russian. Hope you understand my question :) http://ru.globalhomebcn.com/?lfb_action=preview&form=2

Authorloopus

Hello, Yes, the price of the selected items on each step is added to the total cost : each step don't reset the price to $0 . If you want to remove the total price added on step 1 when the user comes to step 2 : Create a new checkbox as first item of the step 2 Set it "Hidden" and "Preselected" Activate the "Custom calculation" option and fill this calculation : 0-[total] The price will be reset to $0 when the step 2 will be called.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Kariboulevrai

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesCustomizationPaymentsPDF and email
CustomerKariboulevrai

Bonjour, sera t-il bientôt possible de laisser le choix à la fin du formulaire le type de paiement ? : PayPal, Stripe ou Virement bancaire par exemple.

Authorloopus

Bonjour, Je note la suggestion, merci. Actuellement, le moyen de paiement par CB (Paypal ou Stripe) est directement défini par l'admin. Une fois l'une des deux options sélectionnée, vous verrez une nouvelle option "Effectuer le paiement seulement si sélectionné" lorsque vous créez une nouvelle checkbox. En utilisant cette option, le paiement par CB aura lieu seulement si cette checkbox est selectionnée par le client. Dans le cas inverse, vous pouvez par exemple rediriger le client vers une étape composée de champ de textes afin de récupérer les infos pour un virement bancaire.

CustomerKariboulevrai

Merci pour la réponse ! C'est parfait ! je n'avais pas pensé pas à cette solution. Dans le mail final envoyé au client, est-il possible d'envoyer un texte (coordonnées bancaires) qui s'affiche selon la condition : "paiement par virement coché" ?

Authorloopus

C'est possible en utilisant un champ de texte caché contenant le texte souhaité, et en utilisant l'option "Show depending on conditions" pour l'activer seulement si la checkbox de paiement n'est pas cochée. Ce texte peut être récupéré dans l'email en utilisant l'option "Get the value of a field" dans le template de l'email. Il n'apparaitra dans l'email seulement s'il est activé dans le form (même invisible), donc lorsque la checkbox du paiement sera désélectionnée.

CustomerKariboulevrai

Merci beaucoup pour la réponse, j'utilise un article "text riche" pour afficher les coordonnées bancaires (avec une condition) mais je n'ai malheureusement pas la possibilité de récupérer la valeur de ce "text riche" pour l'email. Est-ce qu'il y a quelque chose que j'ai mal compris ?

Authorloopus

Bonjour, Il faut utiliser un "Textarea" pour cela. Le texte riche ne peut pas être récupéré dans l'email .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from lupchiancristi

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesSupportCustomizationLicensing
Customerlupchiancristi

Hi I have the plugin in x-theme bundle...Love it but I have an issue....the css class it's working only with the sample form that was installed with the plugin....on the custom form I made it's not...I tried even making a copy of the default form and still not working...the only class that it's working it's this one "open-estimation-form form-1" second or third it's not... Did you encounter this isue before ?thanks you

Authorloopus

Hello, If you had the plugin as extension of the X theme, you need to send your support requests directly to Themeco. You can see more information on the License panel of the form. About the question, you need to add the shortcode of the form 2 on the page to allow the button to open it as popup : [estimation_form form_id="2" popup="true"] Then the css class on the button : open-estimation-form form-2 You can find these instructions on the "Shortcode" panel in the backend.

Customerlupchiancristi

Thanks a lot for your quick answer, I have figured that out....didn't read the instructions properly...Thank You! Great work with the plugin btw...love it

Authorloopus

Thank you !

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from kaftakis

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupport
Customerkaftakis

Hello, i have seen one example where at the end of one slide one slider (with the amount of the selection) appears. How can i do that this amount slider appear on my Form?

Authorloopus

Hello, For support requests, please contact me from the support page using your buyer account and sending me the url of the mentioned form, I will help you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from NorthParkGroup

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CustomerNorthParkGroup

Why does the screen flash a few times on the first step of my form? It doesnt seem to do this on any other step? Is it a conflict with the theme? Here is the domain http://www.sandiegoreplacementwindows.co/get-a-quote/

Authorloopus

Hello, The shortcode of the same form seems to be added twice on the page. Please remove the second same shortcode, it should fix it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from klaas-th

5 direct author replies in this public CodeCanyon conversation.

11 messages5 author repliesBuyer threadSupportCustomizationPayments
Customerklaas-th

I have a question: I saw on the video tutorial that it is possible to make a item calculation. I own a dog care house; If dogs stay till 7 days, then I will be €27 per day. More than 7 days but till 14 will be €24 per day. (€24 for all days!) More than 14 days will be €21 per day. (€21 for all days!) How to make this as a calculation? :-)

Authorloopus

Hello, It depends on the type of the item that ask for the number of days. It will be something like : if([item-1_quantity] == 7){ [item-1_quantity]*27 } else if([item-1_quantity] > 7 && [item-1_quantity] For support requests, please contact me from your buyer account, sending me the url of your form, I will help you .

Customerklaas-th

How do you mean it will depend on the type of the item? I just want to have this option, nothing more nothing less. After this option to the final price. Thanks you in advance!

Authorloopus

Yes, it is possible. I wrote "It depends on the type of the item" because if the item asking for the number of days is a slider or a picture, the code will use "[item-1_quantity]". If it is a numberfield, it will use "[item-1_value]". It isn't important, this code is directly generated by the plugin, you simply need to use the "Add a value" and "Add a condition" buttons to recover the value of an item and visually create yours conditions. The plugin generates the corresponding code in the calculation field .

Customerklaas-th

Alright, so let's say I will use this: if([item-1_value] == 7){ [item-1_value]*27 } else if([item-1_value] > 7 && [item-1_value] <14){ [item-1_value]*24 } else { [item-1_value]*21 } How do I get this connected with the final costs, so in the final summery?

Authorloopus

Simply use this calculation on an hidden and preselected checkbox, like on this example: https://www.youtube.com/watch?v=xH8frpa7wL0 Even if the checkbox that applies the calculation is hidden in the form, it will be displayed in the final summary (option "Show in summary").

Customerklaas-th

Could you guide me step by step to pull this off? As I said, I only want to have this integrated in the site. No pictures, or something. I found the plugin a bit difficult actually. So if you can guide me through the process it would be great.

Customerklaas-th

I will go for the [item-1_value] / numberfield.

Authorloopus

If you bought the plugin and need help on your form, please simply contact me from the support page from your buyer account, I will help you. If it is a pre-purchase question, I confirm, yes it is possible. The mentioned video tutorial show how to use such custom calculations.

Customerklaas-th

Where is the support? I just bought it.

Authorloopus

Here : https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from erikjmanger

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
Customererikjmanger

I just installed this plugin. I am receiving "Uncaught RangeError: Maximum call stack size exceeded" from the "lfb_form.min.js" file. This seems to be breaking all site javascript and causes the entire page to be unresponsive when it comes to java interface. It more than likely is the result of overlapping javascript renderings on the page. Any ideas on how to fix this?

Authorloopus

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

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from mstrategije

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
Customermstrategije

Presale; Can you put obligatory fields? For example I have one drop down menu with 10 items and second drop down menu with 10 items and i want to show the price after both Items are selected. Also can I put items that will reduce total price by 10% All of this is made up. Example: First dropdownmenu has ten items and items have values form 10 – 100$ 2nd drop down menu has ten items and items have values form 100-200$ 3 dropdown menu has 10 items, let say citys – Chicago, LA, New york and if you pick ANY of them totalprice will be reduced for 10%. Example 1st ITEM lets call it Taxi fair costs – 30$ obligatory 2nd ITEM lets call it 4 persons costs – 110% obligatory Totaly thats 140 $ And if you pick any items lets say chicago from last drop dworn which is not obligatory the price will be 10% less: 140 $ – 14 $ (thats 10%) = 126

Authorloopus

Hello, 1. Yes, you can set any item as mandatory. 2. Yes, it can be sone using custom calculations (ex : https://www.youtube.com/watch?v=xH8frpa7wL0 ) . You can create conditions such "if the selected option of this dropdown is ..." and apply the wanted calculation depending on the selection done.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from perolavh

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
Customerperolavh

Do you have any idea why the "small arrows" disappear in the select fields on Google Chrome? And is there any way to fix this?

Authorloopus

Hello, Please can you contact me from the support page sending me the url of the form ? I will check it.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from EpikD

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBooking
CustomerEpikD

Please look into integration with other booking platforms such at https://codecanyon.net/item/booked-appointments-appointment-booking-for-wordpress/9466968 Having a unity with the potential of booking after an estimation is created is indeed the next step. Perhaps a collaboration with the devs of this other plugin would be a win for everyone.

Authorloopus

Hello, Thank for the idea, I will have a look on this plugin.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from stephenturner

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadSupportCustomization
Customerstephenturner

Hi, i need a calculator that allows a user to enter width in feet, length in feet, then select a thickness from a dropdown or slider, this will then give cubic feet, i then need to do a calculation to convert to tonnes of material required, will this plugin do this? thanks in advance... :-)

Customerstephenturner

maybe i should clarify, after the 2 dimensions have been put in and the third selected from a dropdown or slider, this will give me 3 values, which i have a calculation to convert to cubic feet, then into tonnes of material required... :-)

Authorloopus

Hello, Yes, it can be done using custom calculations. Here is an example : https://www.youtube.com/watch?v=xH8frpa7wL0

Customerstephenturner

Excellent, fantastic support!!!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from likeacat

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
Customerlikeacat

Hi there. We have the option to show the total price at the bottom of the form and the slider can show the step or the total price. Is it possible in a future update to have the slider show the total price and the total at the bottom just show the price for that step (or vice versa)? It gets kind of confusing especially with subscription products to know exactly how much that steps options cost, especially when you use the quantity buttons on some of the items in the step.

Authorloopus

Hello, Sorry, this option isn't planned currently. If you need a specialized team to add such specific options on your version, I recommend you this team : https://wpkraken.io/?ref=loopus . They are used to work on this plugin .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from likeacat

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomizationPayments
Customerlikeacat

Hi there. My form styling from my theme is overriding some of the form elements, specifically the text inputs. Most of the steps work great it's just the name and email address fields and payment form that's all gnarly at the end. So any chance you could provide the form elements css so that I can just paste it directly into the page that contains the estimator?

Authorloopus

Hello, Please contact me from the support page sending me the url where I can see the form, I will give you the css rules.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from BrokersVentures

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupport
CustomerBrokersVentures

Still stoked about the endless possibilties and how easy it is to use. Many thanks to Charly for building this and his great support - 6 stars from my side. Cheers Björn

Authorloopus

Thank you very much ! :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from michaelalbee

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
Customermichaelalbee

I have a form with Stripe payment enabled ... when I process the form the information is being passed to stripe and to mailchimp, but no emails are arriving and no order is being shown in the order list. PLEASE HELP!!!

Authorloopus

Hello, Please contact me from the support page sending me a temporary access to the backend of the plugin, I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Parkwayinc

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomization
CustomerParkwayinc

Hello, I have had this on my webpage for a short time now and it appears to be having an affect on my sites GTMetrix scores. When I pull my report for https://parkway.business it shows that there are issues deferring the java script among others. I am guessing I must have a wrong setting that is causing the challenges Can you help provide me guidance on how I can resolve this issue?

Authorloopus

Hello, The "Ajax navigation support" seems activated, that's why the js and css files of the plugin are loaded on each page. If you disable it, they will be only loaded on the form page which requires them .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from eleeme

3 direct author replies in this public CodeCanyon conversation.

5 messages3 author repliesBuyer threadSupport
Customereleeme

Hi there, when I select an item (image), the cross disappear but the check doesn't appear how can I fix this?

Authorloopus

Hello, Please contact me from the support page, sending me the url of the form, I will debug it .

Customereleeme

is showing this jquery error: Uncaught Error: no such method 'show' for tooltip widget instance at Function.error (xxx/wp-includes/js/jquery/jquery.js?ver=1.12.4:2:1814) at HTMLDivElement. (https://eltesoro.com.co/wp-content/themes/bridge/js/plugins.js?ver=4.7.2:38:8376) at Function.each (xxx/wp-includes/js/jquery/jquery.js?ver=1.12.4:2:2881) at a.fn.init.each (https://eltesoro.com.co/wp-includes/js/jquery/jquery.js?ver=1.12.4:2:846) at a.fn.init.$.fn.(anonymous function) [as tooltip] (xxx/wp-content/themes/bridge/js/plugins.js?ver=4.7.2:38:8111) at wpe_itemClick (xxx/wp-content/plugins/WP_Estimation_Form/assets/js/lfb_form.min.js?ver=9.564:2:3680) at HTMLCanvasElement. (xxx/wp-content/plugins/WP_Estimation_Form/assets/js/lfb_form.min.js?ver=9.564:2:99217) at HTMLCanvasElement.dispatch (xxx/wp-includes/js/jquery/jquery.js?ver=1.12.4:3:12444) at HTMLCanvasElement.r.handle (xxx/wp-includes/js/jquery/jquery.js?ver=1.12.4:3:9173)

Authorloopus

Thanks. Please contact me from the support page, I will send you the correction .

Authorloopus

Fixed :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Ehrenplatz

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPDF and email
CustomerEhrenplatz

I've a problem with the plugin - it isn't working. Please check here: http://photobooth-deluxe.ehrenplatz.media/photobooth-konfigurieren/ There is no function. What I've to do?

Authorloopus

Hello, Please can you check our previous emails ? I sent you a correction of the plugin.js file to fix this js conflict. Feel free to contact me by email if you need it again .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from elietannoury

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
Customerelietannoury

Hi, Is it possible, in Backend, to move items between steps. It just saves time recreating the item/s.

Authorloopus

Hello, No, you can duplicate a full step in 1 click,but there is no option to directly move an item to another step. I note the suggestion, thank you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from jorge33

0 direct author replies in this public CodeCanyon conversation.

1 messages0 author replies
Customerjorge33

multiple

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from socialeyes

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
Customersocialeyes

Hi there. calculated forms need to produce 3 columns of results based on industry average, their current rates and the clients rates. Is this possible to do and display Cheers

Authorloopus

Hello, No, sorry, there is no this specific option currently.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from SuccessOrNothing

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportCustomization
CustomerSuccessOrNothing

Hi. Is there a hook or another way to disable the form designer? I don't need it and I want to optimize my website for speed. Thank you! This's a great plugin!

Authorloopus

Hello, No, but feel free to contact me from the support page, I will send you a custom version disabling it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from youssefwass

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
Customeryoussefwass

Bonjour, déjà super plugin ! Dans la dernière étape, je souhaite afficher un bouton de login Facebook pour forcer les utilisateurs à se connecter avant d'afficher le tarif final. Est-ce possible et sinon avez-vous des pistes, merci :)

Authorloopus

Bonjour, Merci ! :) Désolé, il n'y a pas de telle option actuellement, ça nécessiterait de personnaliser le code de votre version du plugin. SI vous avez besoin d'une équipe spécialisée dans la customization de plugins wp, je vous recommande celle là : https://wpkraken.io/?ref=loopus Il y a également des freelances disponibles ici : https://studio.envato.com/search?search%5Bquery%5D=wordpress+plugin+customization

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from Nharris321

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportLicensing
CustomerNharris321

Good afternoon. I have purchased the plugin through x theme. The color picker has a bug that does not allow users to pick colors on Chrome. On safari a user can pick a color; however, if they try to change colors the picker fails to work. Thank you for your help! Best -Nye

Authorloopus

Hello, If you had the plugin as a free extension of a theme, you need to send your support requests directly to the support team of the theme. If you bought a license from me, please contact me from your buyer account, I will help you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from orangecrush

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
Customerorangecrush

Hi, I see there is no HTML block field. Is it possible to add a google map via a short code on the form? This is what I am using now with gravity forms: www.getfreshcarpetcleaning.ca/quote. Thanks!

Authorloopus

Hello, You can freely add HTML content in any step using a "Rich text" item. Shortcodes can't be used in a form .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from McSantpir

8 direct author replies in this public CodeCanyon conversation.

16 messages8 author repliesCustomization
CustomerMcSantpir

Hello, A question before purchase, should do the calculation of a product (wine labels) according to the height and width on the basis of previously variables defined for measures, example: the toner cost, cost of the paper, the cost of goodwill machine, cost digital printing, printing cost in gold (foil), etc. And 'possible to do this type of calculations?

Authorloopus

Hello, Yes, it can be done using custom calculations. Here is an example : https://www.youtube.com/watch?v=xH8frpa7wL0

CustomerMcSantpir

thank you... sorry i have another question: i have in php+javascript this formula: var labelcm2= (width+0.7)*(height+0.7); var var1 = (qty * (labelcm2 * costfullcolor)); var var2 = 0; if($('#container .printdigit').val()=='yes') { var var2 = var1; var vardigit = 30; } else { var var2 = 0; var vardigit = 0; }; is possible to replicate this in E&P form?

Authorloopus

Hello, The "qty" variable isn't defined, and I can't really know what is the use of "var2" and "vardigit" in your current form, but if the goal is to modify the total price depending on the selection made by the user, yes, it can be done using the mentioned custom calculations. You can recover the values filled by the user in numberfields and check if a specific option is selected like in the mentioned code. Conditions can be visually generated using the button "Add a condition" above the calculation field.

CustomerMcSantpir

sorry I had to be more clear, I copied from the php file: qty is the number of labels to print (from numberfield) vardigit is the price for the preparation of the digital press (30 euros if you selected "yes" in the drop-down menu, if it is selected "no" the price is 0). At the same time the variables are prepared for later use, such as color printing cost (var2 which is the sum of the toner with the calculation of depreciation). What I understand is if I can prepare the calculations to be used later and not calculated immediately with the operator at the final price. I hope I was clear, this calculation is fiendishly complicated

Authorloopus

Ah yes, thank you for clarifications. The calculation described can be done, but it isn't possible to prepare variable for later. The "color printing cost" will need its own calculation .

CustomerMcSantpir

Ok, thank you very much. In theory I could prepare this calculation in a checkbox and use it later, right? question: can automatically select a ceckbox depending on the choice of a dropdown list?

Authorloopus

1. The calculation of a checkbox is applied as soon as the checkbox is checked. 2. Yes, to do that, set the checkbox as "preselected", then use the option "Show depending on conditions" to define the mentioned conditions .

CustomerMcSantpir

Ok, I think I will buy this product, especially for the excellent customer service

Authorloopus

Thank you !

CustomerMcSantpir

I take advantage of your kindness .... I have one small question ... I've seen from various videos that you can create several steps in a form. ok, this is great! but the information contained in one of step, can be moved to another step or copied for use in another form?

Authorloopus

Yes, you can duplicate a step or a full form in one click.

CustomerMcSantpir

and the single voice (example a specific drop down list) locate into the first step? duplicate single step and remove unnecessary?

Authorloopus

Sorry, I'm not sure to well understand. You can create a dropdown anywhere in your steps before the result one. You can duplicate items, steps and full forms in 1 click. You can also use the "Show depending on conditions" option to dynamically show/hide some specific items/steps depending on some specific conditions.

CustomerMcSantpir

say it is not important, but for example I want to move one or various elements (dropdown list, checkboxes, etc.,) from step 1 to step 2 or better from form1 to form2. Your answer is not urgent is just for my curiosity. :)

Authorloopus

In this case, you will need to recreate the item in the other step/form.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from viper38

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
Customerviper38

the plugin was updating but it still updating 25 minute ago... please help me

Authorloopus

Hello, Please contact me from the support page, I will send you the update to apply it manually.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from fabiodimar

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadCustomizationPDF and email
Customerfabiodimar

it's possible put a gravity form in a intermediate step and not in the last step?

Authorloopus

Hello, No, sorry, there is no such option currently. If you need a freelancer to customize your version with such specific features, maybe you should have a look here : - https://wpkraken.io/?ref=loopus - https://studio.envato.com/search?search%5Bquery%5D=wordpress+plugin+customization

Customerfabiodimar

ok last question if i want to attach the [project_content] to the email i receive with the gravity form at the last step?

Authorloopus

You simply need to create a field having the css class "estimation_project" in your gravity form to recover the selection (and "estimation_total" on a numberfield to recover the total) You can find all instructions in the documentation .

Customerfabiodimar

ok thanks

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from steamyconcepts

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer thread
Customersteamyconcepts

I would like an item to be one price for the first 2 and then a different price for each additional. Is there a way to do that?

Customersteamyconcepts

For example: The first 2 rooms for $49. Then each additional room for $35.

Authorloopus

Hello, You can do that simply using the "Reductions on quantities" option on your item.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from chilleandersson

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
Customerchilleandersson

Hi , quick question. I would like the checkbox circle background (when using a image) To be the standard grey. And when chosen (the x becomes "checked") i would like the background to become another color. I tested the form designer and I got to change the background color but it becomes the same when checked or not? Would be great if you had an solution for this. Oh and thanks for an awesome plugin!

Authorloopus

Hello, Thank you ! Here is the rule to use in the "Custom CSS rules" field of your form (tab "Design") to do that : #estimation_popup .selectable .icon_select { background-color: #ecf0f1 !important; } #estimation_popup .selectable.checked .icon_select { background-color: blue !important; }

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from teezoc

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomization
Customerteezoc

Hello, I have few questions about the plugin: 1. There is an option to make a custom link for each step? for example: www.domain.com/step-1/ www.domain.com/step-2/ www.domain.com/step-3/ 2. There is an option to make the title of picture option below the picture? (and hide the hover window). 3. There is an option to change the progress bar from right to left? 4. You wrote you support RTL but the table after the summary title does not support it. Thank you.

Authorloopus

Hello, 1. No, a form can't start on another step than the start one 2. You can use the "Description" option to do that. You can hide tooltips using this rule in the "Custom CSS rules" field of your form (tab Design) : #estimation_popup > .tooltip {display: none !important;} 3. No, sorry 4. Please contact me from the support page sending me the url where I can see the form, I will check it .

Customerteezoc

Hey, 1. I don't want that the form will start on another step, I just want to make a custom link for each step. 2. if I want the title will show above of picture? 4. Link: http://www.kabi.co.il

Authorloopus

1. You can freely create different links in each step using "Rich text" items inside. If you want to generate an url that will call a specific step, as mentioned, there is no such option : the form always start to the first step. 2. There is no option to do that. 3. Thank you, the final summary seems to be rtl. If you're talking about the alignment , you can add this rule to the "Custom CSS rules" field of the form (tab Design) to align it to the right : #lfb_summary th, #lfb_summary td {text-align: right !important;}

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from axiomdesigns

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportCustomization
Customeraxiomdesigns

Hi, Plugin doesn't work on my website. There are several things right now that not working. for example items per row, admin side not looks good etc... website URL: http://uniqueironart.com/get-a-quote-uniqueiron/

Authorloopus

Hello, There are some custom css rules created from the Form Designer that create troubles in the form. Please try to reset these styles, it should fix the problem on frontend. For backend side, please contact me from the support page sending me a temporary access, I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from INTUITIVECODE

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CustomerINTUITIVECODE

Latest version NEVER available for download. We do not update plugins using WP admin. We update them by SFTP, however the updates are NEVER available to download

Authorloopus

Hello, I'm not sure to well understand your problem. You can apply the last automatic update directly from the WP Dashboard > Updates menu link. If you prefer to have the last update directly in .zip, you can freely contact me from the support page.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from esowersby

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadCustomization
Customeresowersby

Hi With this plugin, will it be possible to set the price of only a specific option to be increased by a percentage, depending on the choice made on another option? But it doesn't affect the price of the other items/options selected. Can a "location" be an option, then depending on the location they enter, it will be a certain cost. Thanks!

Authorloopus

Hello, Yes, it can be done using custom calculation on the mentioned item. Simply click the button "Add a condition" above the calculation field to visually create your conditions, it will generate the needed code in the calculation field.

Customeresowersby

Awesome, thanks!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from lynewman

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadSupportPayments
Customerlynewman

I see you can define a percentage for paypal, will you be adding it to stripe as well? Would love to have that option - thanks. Still loving this plugin!

Authorloopus

Hello, Yes, no problem, it will be added in the next update You can contact me from the support page if you want it immediately.

Customerlynewman

Oh wow, awesome!! Will do!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from thekayzer1

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesPaymentsPDF and email
Customerthekayzer1

Pre-purchase question, is there any chance of having a option at the end for customers to choose what type of payment they want to pay with? instead of having only one type of payment ? and how would you do it.? warm regards. Kay

Authorloopus

Hello, There is an option allowing to activate the payment at end only if a defined checkbox is selected (otherwise it will simply send the order by email), but not to allow the customer to choose himself between paypal or stripe. This parameter is currently only defined by the admin.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from LemonSevens

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesSupportBooking
CustomerLemonSevens

Before purchase, I'm wondering what solutions for booking appointments you offer? Obviously, after my visitor wants an estimate they'll want to continue by booking an appointment. And what about integrating with other booking plugins? Thanks!

Authorloopus

Hello, There is no such booking system support currently, I note the idea and will study this possibility, thank you.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from AlexSystems

3 direct author replies in this public CodeCanyon conversation.

6 messages3 author repliesBuyer threadSupportCustomization
CustomerAlexSystems

Hello, First, thank you a lot for awesome plugin I heavily rely on in my projects! Need your help! Could not work out the solution on my own unfortunately. Let’s say, I have : 1st step: a picture (e.g. product A) [item-1] with price 25$ 2nd step: a slider (which is to regulate the quantity of product A, [item-1] ) with minimum quantity “1” (use calculation [item-1_price]) Result: at 2nd step with slider quantity “1” I get 25$+25$=50$, with quantity “2” I get 25$+25$+25$=75$ etc. the quantity slider does not multiply but adds the price of 25$ and therefore I get miscalculation. I would like the slider to have minimum quantity “1” Again, many thanks in advance! Yauhen

Authorloopus

Hello, The best way to do that is to set a price of $0 to item1, then use a such calculation on the slider : if([item-1_isChecked']){ 25 } if([item-2_isChecked']){ 50 } etc ..

CustomerAlexSystems

Hello! I have a situation as follows: Customer sees the basic price of a product, say 100$, and clicks the button “Purchase” and is taken to your form. On the progress bar he must automatically see this start price of 100$ right at this first step. Second step is options or executions of this basic product. Say, customer would add to basic product… Option A +10$ Execution B +20$ And progress bar shows 130$ of the product And at step 3 the customer chooses quantity of the product (basic+option+execution) with quantity slider. Quantity “1” – 130$ Quantity “2” – 260$ Etc. The quantity slider has to have minimum quantity “1” I guess this is pretty common situation. What should I do to have this functionality ? Thank you very much! Yauhen

Authorloopus

Hello, Here is a way to do that : Set the "Initial price" of your form to $100 Create a step, add pictures or checkbox items inside, for each option. Simply fill their price option, it will be added to the total when the item will be selected. Create the step 3, add the slider item without using price on it Add an hidden and preselected checkbox after the slider, and set this custom calculation on it : ([total]*[item-3_quantity])-[total] (where item-3 is the slider) It should do the job.

CustomerAlexSystems

And it really worked! Fantastic! Many thanks!

Authorloopus

Thank you :)

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from cafofoman

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author replies
Customercafofoman

Hi, I want buy this great plugin, but before, I want know if do it necessary for my business: I want: 1. User enter site and fill the estimation; 2. User not see values 3. In admin area, I see de values 4. I apply a discount for individual values 5. I send proposal for user. It´s possible in this version (ou in standalone?)? thanks

Authorloopus

Hello, No, sorry, there is no such option currently.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from nino_ort

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPDF and email
Customernino_ort

Hi loopus! First of all great plugin and awesome support! I have selected the display prices in title option, because I need the client to know the costs of each item before selecting. However I don't want the prices shown at the summary/email. I have checked the "Hide all prices" option at summary, but they still appears in the titles of the items at the summary/email. How can I remove that prices too? Thanks in advance!

Authorloopus

Hello, Ah yes, I understand. I'm going to improve it to remove the price from titles in the summary if this option is enabled. It will include in the next update. You can contact me from the support page if you wantit immediately.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from john_mac

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomizationPDF and email
Customerjohn_mac

REF - Customer fields in the subject hi, is it possible to setup a custom field in the subject line

Authorloopus

Hello, Please can you use the "Reply" button ? No, there is no option to setup a custom field in the email subject. If you need a freelancer to add such specific customizations to your version, maybe you should have a look here : https://studio.envato.com/search?utf8=%E2%9C%93&search%5Bquery%5D=customization+wordpress+plugin

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from john_mac

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadCustomization
Customerjohn_mac

Hi, Date picker, looks to add an "S" after the date so 15 march becomes - 15S March 2017 any ideas ? my datapicker is set to - en and my version is - 9.562

Authorloopus

Hello, Really strange. What is the date format defined in the WP Settings ?

Customerjohn_mac

Date Format Date Format 1st February 2017jS F Y

Customerjohn_mac

ok, so i changed to a custom formate of - j F Y and now working thanks.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from JanDrabek

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CustomerJanDrabek

Hi, my exports are not working. I'm trying to transfer forms from test to live site but when I export and import zip file I always get default form.

Authorloopus

Hello, Please can you contact me from the support page, sending me a temporary access to the backend and the exported file ? I will debug it.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from umtulu

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadCustomization
Customerumtulu

Can we do something like that? http://net-brut.com/#/KidemIhbar

Authorloopus

Hello, You can reproduce these calculations using custom calculations, but there is no option to show the number of years, months and days between the two selected dates in the final summary. To recover the number of days between two datefields, you can use this js function in a custom calculation, replacing the titles by the exact titles of the datepickers : (Math.ceil(Math.abs(new Date(jQuery('[data-title="My second datepicker"]').datepicker( 'getDate' )).getTime() - new Date(jQuery('[data-title="My first datepicker"]').datepicker( 'getDate' )).getTime()) / (1000 * 3600 * 24)))

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from plnewton

1 direct author reply in this public CodeCanyon conversation.

3 messages1 author repliesBuyer threadCustomization
Customerplnewton

Is it possible to reduce the space between the title of a field and its checkbox (or and other field type)

Customerplnewton

Also is it possible to move the title and the description to the items side rather than on top and below? I want to do this for selected items only not the entire form

Authorloopus

Hello, 1. It can be done using this css rule : #estimation_popup .lfb_item .has-switch {margin-top: -5px;} 2. It can be done enabling the option "Show labels inline" in the "Design" settings tab of the form. But it will be applied to all items, not only the selected ones. If you need a freelancer to add such specific customizations to your version, maybe you should have a look here : https://studio.envato.com/search?search%5Bquery%5D=wordpress+plugin+customization

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from mlacroix0

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer thread
Customermlacroix0

Hi, Awesome plugin :) How can I show the description of the field in the final table? I'd like to have the title of the item in bold and the description written below for each row. Thanks!

Authorloopus

Hello, No, sorry, the description can't be displayed in the summary. If you need a freelancer to add such specific customizations on your version, maybe you should have a look here : - https://wpkraken.io/?ref=loopus - https://studio.envato.com/search?search%5Bquery%5D=wordpress+plugin+customization

Customermlacroix0

Thanks! I will look for a freelancer. Just a quick question: If a freelancer modifies the plugin, will it stop me from getting the future automatic updates? Will I need to manually update it?

Authorloopus

Yes, if you customize your version, you must not apply next updates or the customized code will be replaced .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from INTUITIVECODE

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
CustomerINTUITIVECODE

Purchased. Started to create a form, but when I click on the next step it does not move forward. I am doing the same as in your test form that comes with the plugin. Dont understand how to solve this issue, and also how to request support. I am stuck

Authorloopus

Hello, I replied on your 4th comment .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from INTUITIVECODE

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CustomerINTUITIVECODE

Is it possible to have two forms on the same page, for example one for paid plugins and one for free plugins?

Authorloopus

Hello, I replied on your 4th comment .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from INTUITIVECODE

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
CustomerINTUITIVECODE

noticed that not ALL woocommce active products appear on the list. what to do?

Authorloopus

Hello, I replied on your 4th comment .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from INTUITIVECODE

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportPayments
CustomerINTUITIVECODE

is it possible to have some products linked to Paypal while others not? This would be very useful

Authorloopus

Hello, Please can you use the button "Reply" instead of creating new comments for each question ? Please simply contact me from the support page ( https://codecanyon.net/item/wp-cost-estimation-payment-forms-builder/7818230/support ), I will help you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from cyrildarmouni

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
Customercyrildarmouni

Question I have an excle sheet for price for accounting firm in French to calculate cost of services and output would you be able to implemente if for a cost with your plugin If yet let me know i send you the sheet and explanation I am willing to pay for it as long as it work nice

Authorloopus

Hello, No, sorry, I am not currently available as freelancer. If needed, you can find available freelancers here : https://studio.envato.com/

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from cyrildarmouni

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupportLicensing
Customercyrildarmouni

Hi I just purchased the licence but i am in a test URL can i put the licence then move it to the final URL once live? thanks

Authorloopus

Hello, Yes, no problem .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from JuliusBa

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupport
CustomerJuliusBa

Hi, can't import forms. Zip error. Php extension is on, permissions on tmp folder is 747, but no way. Any clue?

Authorloopus

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

CustomerJuliusBa

Yes I can but it can't solve the problem, cause, I'm made a test with 4 website and no way it can import forms. It's a bug

Authorloopus

Hello, It works on my side and for other customers, there is probably a problem somewhere. Please contact me from the support page sending me a temporary access to the backend, I will debug it .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from plnewton

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomization
Customerplnewton

Hi, Can your product do a quoting system like this: https://www.unifiedmanufacturing.com/instant-quote/ Thanks

Authorloopus

Hello, Yes, you can use this plugin to create a similar form (the design will not be the same, but you can reproduce all these features) .

Customerplnewton

Thanks for your quick reply, I have actually bought the plugin and began setting it up, had a small issue so far with calculations which I submitted a support request for but in the passed few minutes worked it out

Authorloopus

Ah yes, I replied .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from hobeja7

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
Customerhobeja7

Hi. I'm making a form in which I ask the user for material (which has a fixed price in the item list) and then I ask the user for specific measures (length, width, height numbers). I'm using a hidden field to calculate the formula: (( [item-66_value] * [item-65_value] *( [item-67_value] /12)* [item-61_price] )/2000) Yet it doesn't calculate. It throws back the fixed price only. By the way, I've been using your plugin for a couple of days now, and I must say you have a great support. PS: The formula has * signs and are being taken as bold comments...

Authorloopus

Hello, Please contact me from the support page, sending me the url of the form, I will help you .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from anthonyhamel

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer thread
Customeranthonyhamel

Hello, Im having a lot of trouble calculating tax at the end of my estimator. Im pretty new to this stuff so a detailed example and explanation would be very much appreciated.

Authorloopus

Hello, Here is a simple example: - Create a new hidden and preselected checkbox named "VAT" on your last step before the result one - Set its "operator" option to "X" and its percentage to "20" That's all. The checkbox will be hidden in the form, but it will be displayed in the final summary, applying a tax of 20% on the total .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from JanDrabek

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadSupportCustomization
CustomerJanDrabek

Hi, absolutely awesome plugin. Having it for a long time but using only now and it's grate. I have only one problem. I'm trying to use menu link for popup form. I did following: 1. Create custom menu link with url # 2. Added class open-estimation-form form-2 3. Enabled Ajax option in general But popup is only opening on page where is shortcode inserted. How to make it to open on any page?

Authorloopus

Hello, Thank you :) You also need to add the form shortcode with the popup attribute to the page. To add it automatically to all page of the website, you can add this line to the header.php file of your theme, just after the <body> tag : <?php echo do_shortcode('[estimation_form form_id="2" popup="true"'); ?>

CustomerJanDrabek

Is it possible to do that via function.php?

Authorloopus

Yes, it can be done using this code: function form_shortcode_allpages($content) { return $content.'[estimation_form form_id="2" popup="true"]'; } add_filter( 'the_content', 'form_shortcode_allpages');

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from anthonyhamel

1 direct author reply in this public CodeCanyon conversation.

4 messages1 author repliesBuyer threadSupportCustomizationPDF and email
Customeranthonyhamel

Hello, Im having trouble hiding the price from the client until they submit the form. In an ideal situation, I would have the summary show only selections and quantities and then have the email thats sent out to them show the price.

Authorloopus

Hello, You can do that adding this rule to the "Custom CSS rules" field of your form: #lfb_summary table tr td:last-child, #lfb_summary table tr th:last-child {display:none !important;}

Customeranthonyhamel

My apologies but I'm fairly new to Wordpress. Where would I put that?

Customeranthonyhamel

Never mind, I figured it out. Huge help and thank you!!

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from csavu7

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadPDF and email
Customercsavu7

Hi, I need this plugin for users to be able estimate their cost for a group vacation. Now, they have to be able to choose their room occupancy (single, double and triple) and the last step would be filling up a form. This form depends on wether they are 1, 2 or 3 in the room because we need information on each guest. Can the last form depend on the path they chose? If not, what would a solution be? Thank you

Authorloopus

Hello, The fields of the final result step can't depend on conditions, but you can freely do that on any step before the result one using the "Show depending on conditions" option on your fields. The email can also be asked before the result step .

Customercsavu7

Ok so if I understand correctly I can have three options on one page: 1) Single 2) Double 3) Triple And depending on what they choose, the next page would have one of three forms that I create?

Authorloopus

Yes, exactly.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from thekayzer1

4 direct author replies in this public CodeCanyon conversation.

9 messages4 author repliesSupportCustomization
Customerthekayzer1

I have a big question, about the distance pricing, once you get to the step where you need to pick a vehicle to calculate the price of the distance plus the charge for the type of the vehicle is there any chance for the customer to add how many of those vehicles it needs, like for example when you click on one of them it only adds them once and then it multiply it by the distance in miles/kilometers, but what about if the customer needs more than just 1 car, what if it needs 2 or 3 ?. How can we let the customer enter or pick how many of those vehicles it needs instead of doing the same process over and over ?

Authorloopus

Hello, You can use distance in the custom calculations. For example, you can create a picture with quantities enabled to ask the number of cars, and use a such custom calculation on it (where 10 is the price by miles or kilometer ): [distance-....]*10 Simply click the "Add a distance" button above the calculation to generate the distance calculation code . The result of this calculation will be multiplied by the selected quantity.

Customerthekayzer1

Hey Loopus team, thanks for the quick reply I have already follow your steps and it doesnt really work, I keep getting 0$ as result, I desactivated the distance as quantity and entered the code of the distance * 10 , but still receive 0$ even thought enable quantity choice has been selected.

Authorloopus

Hello (I'm not a team), For support requests, please contact me from the support page using your buyer account, I will help you .

Customerthekayzer1

Im using a theme that came with the form builder, and I have scratching my head the whole day trying to find out how to do it. here is how it looks http://i.imgur.com/ffqyOaY.png

Authorloopus

Ah ok. If you had the plugin as a free extension of a theme, you need to send the support requests directly to the support team of the theme, they will be happy to help you .

Customerthekayzer1

oh ... mmm thank you

Customerthekayzer1

there is no way you could probably help me please ?, im sure is not that hard for you. im just new to all this please

Authorloopus

No, sorry, I can only deliver support to my customers. But as mentioned, the support team of the theme should help you, you simply need to contact them.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from hobeja7

2 direct author replies in this public CodeCanyon conversation.

5 messages2 author repliesBuyer threadSupportCustomizationPDF and email
Customerhobeja7

Hello Loopus Support, I just started using this plugin. I'm using the Bridge Theme, and it's not working fine. Bought the plugin a while ago for a project, but they postponed this part because of the formulas, until now. Do you know if this will be fixed in any future updates?

Authorloopus

Hello, Please contact me from the support page, I will send you an updated version of the plugins.js file of the theme to fix this conflict.

Customerhobeja7

Wow, that was quick! Sending email right away. Thanks for the support!

Customerhobeja7

I have another question. Currently I'm working the website changes live in a sub-domain. It asked me to enter the purchase code and it's asking again for the purchase code to activate the design functions. My question is: When I move the website to it's domain, will the plugin still work?

Authorloopus

Yes, no problem .

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from anthonyhamel

1 direct author reply in this public CodeCanyon conversation.

2 messages1 author repliesBuyer threadSupport
Customeranthonyhamel

Hello, I am building a estimation tool for an event rental company. It seems to work find but when I have the tool estimate several different products (ex. tables, chairs, dance floor) it will only forward the data from one of the selected elements. For example, I will add 30 chairs and then when I try to add tales, it will close the chairs option and display the chairs. The problem is, it will only show a quote at the summary page for the most recent field entered... the site is http://entertainmentsource.ca/quoteitall/

Authorloopus

Hello, Because you set the same "group" name to the checkbox "Tables", "Chairs" etc ... so only one of them is selectable. Simply empty their group option to allow the user to freely select them.

Public CodeCanyon discussion · WP Cost Estimation & Payment Forms Builder

Question from star09

2 direct author replies in this public CodeCanyon conversation.

4 messages2 author repliesBuyer threadPDF and email
Customerstar09

Hi (Pre Purchase Question) Is it possible to display final costing only. at Back-end we will be making many questions and options all options will be having their respective costing and selecting particular option will cost X amount but that options costing won’t be visible to visitor they can only see final costing after selecting everything. is it possible ?

Authorloopus

Hello, Yes, you can choose to hide the progress bar or use to it to show the current step instead of the total price. You can leave the total price of the final result step, or choose to hide it and send it by email to the customer.

Customerstar09

Great, So i can have price for all options at back-end as per selection final rate will be displayed right ? Thanks a lot, Buying it ASAP

Authorloopus

Yes