Code

Discussion on Cart to Quote for Woocommerce

Discussion on Cart to Quote for Woocommerce

Cart 600 sales

nitroweb supports this item

Supported

This author's response time can be up to 5 business days.

549 comments found.

I found a misspelling in the email that goes out to admins when a new quote is submitted.

“You have a quore review reminder”

So it says “quore” instead of “quote”. Please advise.

Hi,

We found issue on your plugin.

The cause of issue which is the plugin WooCommerce PayPal Checkout Gateway cause of the error message and the WooCommerce Product Add-ons cause of field are gone. Please see screenshot http://prntscr.com/qmxliw

But when I downgrade the plugin WooCommerce Product Add-ons then deactivated the plugin FileTrip and now the quote plugin is working. Please see screenshot http://prntscr.com/qmxm32

Can you please make it working without downgrading the plugin WooCommerce Product Add-ons and deactivated the plugin FileTrip?

Thank you!

22 days with no reply. If you are no longer supporting this plugin, please advise as we will request a refund.

We could not get this to work or function properly on our site despite hours of testing, etc. How do we go about getting a refund?

Hello

With Rehub Theme your pluging cause issue

bug in custom plugin

file wp-content/plugins/woo-cart-to-quote/assets/css/custom-front.css?ver=5.3.2

code of file

.clearfix{display:block} .clearfix{display:inline-block}

this is critical wrong code in this plugin.

Plugins should not change reserved class names like .clear, .clearfix, etc otherwise, site will be broken

Hello Reply you mention 10 Business day but no reply from your end

Hi my plugin get some error on Request From Error: There has been a critical error on your website. Please check your site admin email inbox for instructions.

Learn more about debugging in WordPress.

Hi, is Cart to Quote compatible now with Products List Pro, I want product list to go to quote insted to cart

I bought this plugin and would like to add a function on it. Do you take a custom job for your plugin?

  • I would like to have a total cart volume compare to big shipping box volume ( 2 box sizes)

I would like to hide the Discount column on my email and PDF quotes. Is this possible?

I would like to be able to sort my Quote List by Discount and Total. Is this possible?

Hi! I have some questions:

1- In the back end how can I filter the quote? For example if I want to search for a particular client or a quote?

2- I need to eliminate the discount column. It is appeare in the client’s account and in the mail that he receives.

Thank you!

Cecilia

Afternoon,

I purchased the plugin but when I add items to a quote it changes the pricing on the quote. The products we sell is based on area, so it seems your plugin is only adding the qty multiplied by the product’s base price, not the calculated price based on the area and selection on the product page. I’d like to send screengrabs of the issue – where can I send it too? If the cart can’t do this then it unfortunately won’t work for us, so I hope there is a resolution :)

Seriously, still no response after 6 days???

Pre-purchase inquiry:

Is the option to hide the ‘add to cart’ button global, or can it be on selected items?

(We only require some selected items to allow the ‘add to quote’ function only )

Hi Spyros, really hope to get your confirmation on the above as we are trying to make a purchase on a Quote plugin. Thank you very much.

Hello, I have a problem with the pdf, when the quote includes more than 10 products, only the header appears, the rest is blank

Hi Spyros, Would you like to point me where I can find documentation on how to customise the emails? I was under the impression that default emails sent by this plugin will use the Woocommerce templates. I am afraid the initial quote notification sent to a customer and to a manager are both simple strings. In the admin area, I found the option to tweak the look. However, I am not able to add purchased product details, etc. and make this content dynamic. Kind Regards Michael

To be precise I would like to modified $message value in line325 frontend.php : $message = apply_filters(‘c2q_emailnewquote_message’, __(‘You have a new quote request:’, ‘c2q’)).’ ’.get_the_permalink($id);

Hi Spyros, Following my customer suggestions I made few tweaks to the code. I think anyone may benefit from some of them:

// email admin on new quote    
if (!filter_var(get_option('wc_settings_tab_c2q_emailnewquote'), FILTER_VALIDATE_EMAIL) === false) {    
$adminmail = apply_filters('c2q_emailnewquote_adminmail', get_option('wc_settings_tab_c2q_emailnewquote'));    
$subject = apply_filters('c2q_emailnewquote_subject', __( 'You have a new quote request. ID number: ' . $id), 'c2q');    
$message = apply_filters('c2q_emailnewquote_message', __('You have a new quote request:', 'c2q')) . '' . get_the_permalink($id) . '';    
$sendtoadmin = wc_mail($adminmail, $subject, $message);
if ($sendtoadmin === false) {    
  wc_add_notice(__('Could not send email to admin!', 'c2q'), 'error');    
}
}
// email user on new quote    
if (get_option('wc_settings_tab_c2q_usermailnewquote') == 'yes') {    
$subject = apply_filters('c2q_usermailnewquote_subject', __( 'Your quote information'), 'c2q');
if (trim(get_option('c2q_new_quote_text_override')) != '' ) {    
    $message = get_option('c2q_new_quote_text_override');    
} else {    
    $message = apply_filters('c2q_usermailnewquote_message', __('Thank you for submiting a new quote request. We will contact you soon with an awesome offer!', 'c2q')) . '
' . site_url() . '';

What about adding them to the next release? Let me know if you have GitHub repo, I will do a pull request. Michael

Hi,

I am receiving the PHP error when I try to save the settings.

WC_C2Q_Settings::update_settings('')\n#3 /nas/content/live/devmainlinetra/wp-includes/class-wp-hook.php(286): call_user_func_array('WC_C2Q_Settings...', Array)\n#4 /nas/content/live/devmainlinetra/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array)\n#5 /nas/content/live/devmainlinetra/wp-includes/plugin.php(465): WP_Hook->do_action(Array)\n#6 /nas/content/live/devmainlinetra/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php(76): do_action('woocommerce_upd...')\n#7 /nas/content/live/devmainlinetra/wp-content/plugins/woocomme in /nas/content/live/devmainlinetra/wp-content/plugins/woo-cart-to-quote/classes/woo.php on line 700, referer: https://devmainlinetra.wpengine.com/wp-admin/admin.php?page=wc-settings&tab=c2q_settings

This happens from the back end. When I try to change quote receivers email address and the try to update then the server error. The error is occurring from woo.php

public static function c2q_get_editable_roles() {

$roles = array();
foreach (get_editable_roles() as $role_name => $role_info) {
$roles[$role_name] = $role_info['name'];
}
return $roles;
}

When I comment the code inside the function then its working fine. get_editable_roles() there is no definition for that.

Hi tjpicasso,

I’ve just posted version 1.0.13 and waiting approval before being available. It should fix this issue. I ‘ve set it to notify buyers once approved.

Best regards, Spyros

Thanks. On another note, how can I modify class file such as frontend.php

What is the code to add to quote? I want to redirect a button within my pricing-rable to add a service to the quotelist. For example:

Add to chart url is: https://www.crowdwatch.nl/cw-servicepakket/?add-to-cart=5671043 But if i put the URL: https://www.crowdwatch.nl/cw-servicepakket/?add-to-quote=5671043 nothing happens

HI Kabbap,

You can try the [c2q_button] shortcode. Please keep in mind that the product object should be there and set global.

Best regards, Spyros

Hello, I am not getting Link at My Account page even check marked ‘Add quotes list on my account’ in settings page

Hi akhan24,

The quotes lists should be on the Dashboard, not on a separate page. They should be displayed after you create your first one.

Best regards,
Spyros

Dear all, after installing the plug in, Cart to quote, 15 Oct 2019 REGULAR LICENSE

I can´t modify and customizing text.

I got a message with following information.

Error Details

An error of type E_ERROR was caused in line 700 of the file /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-content/plugins/woo-cart-to-quote/classes/woo.php. Error message: Uncaught Error: Call to undefined function get_editable_roles() in /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-content/plugins/woo-cart-to-quote/classes/woo.php:700 Stack trace: #0 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-content/plugins/woo-cart-to-quote/classes/woo.php(310): WC_C2Q_Settings::c2q_get_editable_roles() #1 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-content/plugins/woo-cart-to-quote/classes/woo.php(253): WC_C2Q_Settings::get_settings() #2 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-includes/class-wp-hook.php(286): WC_C2Q_Settings::update_settings(’’) #3 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(’’, Array) #4 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-includes/plugin.php(465): WP_Hook->do_action(Array) #5 /var/www/vhosts/sagitaria.com/wc.sagitaria.com/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php(76): do_action(‘woocommerce_upd…’) #6 /var/www/vhosts/sagitaria.com/wc.sag

Thanks in advance And please let me know if you need more details.

Hi ArqueriaSagitaria,

This is strange as I do not get this and the function should be available in wp-admin, however thank you for pointing this out. I will try to post an update of the plugin in the next 48 hours in order to prevent this.

Best regards,
Spyros

Thank you Spyros, please let me know if the update is available. So I can try it once more.

Hi ArqueriaSagitaria,

I’ve just posted version 1.0.13 and waiting approval before being available. I ‘ve set it to notify buyers once approved.

Best regards,
Spyros

Hi, could you please advice how I could add the SKU column to the quote? Thank you.

Hello, pre-sale question. What does the “expire date” do? How does it work? I am looking for a plugin where I can quote to a customer, but the quote should only be available to the customer for 2 weeks, after that the quote is expired and it should not be available to the customer. Does it work this way?

Hi eboppel, you are correct, this is what it does.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey