Title: Button Missing
Last modified: June 22, 2022

---

# Button Missing

 *  [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/)
 * Hello! Just noticed that the (Proceed To Submit Your Quote) button on the cart
   >> checkout page is missing here: [https://www.karaymetals.com/cart](https://www.karaymetals.com/cart).
 * There is a 500 error that may be the cause. Just don’t know where to start troubleshooting.
 *     ```
       Request URL: https://www.karaymetals.com/cart
       Request Method: GET
       Status Code: 500 
       Remote Address: 18.216.254.166:443
       Referrer Policy: strict-origin-when-cross-origin
       ```
   
 * Thanks
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fbutton-missing-6%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 9 replies - 1 through 9 (of 9 total)

 *  Thread Starter [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15760508)
 * I’m receiving these erros in php log file:
 *     ```
       [22-Jun-2022 12:43:32 UTC] PHP Fatal error:  Uncaught ArgumentCountError: Too few arguments to function no_price(), 1 passed in /var/www/whatsthebigidea.com/htdocs/wp-includes/class-wp-hook.php on line 307 and exactly 2 expected in /var/www/whatsthebigidea.com/htdocs/wp-content/themes/brooklyn-child-KarayMetalsNEW/functions.php:232
       Stack trace:
       #0 /var/www/whatsthebigidea.com/htdocs/wp-includes/class-wp-hook.php(307): no_price('<span class="wo...')
       #1 /var/www/whatsthebigidea.com/htdocs/wp-includes/plugin.php(191): WP_Hook->apply_filters('<span class="wo...', Array)
       #2 /var/www/whatsthebigidea.com/htdocs/wp-content/plugins/woocommerce/includes/class-wc-cart.php(291): apply_filters('woocommerce_car...', '<span class="wo...')
       #3 /var/www/whatsthebigidea.com/htdocs/wp-content/plugins/woocommerce/includes/wc-cart-functions.php(302): WC_Cart->get_total()
       #4 /var/www/whatsthebigidea.com/htdocs/wp-content/plugins/woocommerce/templates/cart/cart-totals.php(99): wc_cart_totals_order_total_html()
       #5 /var/www/whatsthebigidea.com/htdocs/wp-content/plugins/woocommer in /var/www/whatsthebigidea.com/htdocs/wp-content/themes/brooklyn-child-KarayMetalsNEW/functions.php on line 232
       ```
   
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15760626)
 * [22-Jun-2022 12:43:32 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too 
   few arguments to function no_price(), 1 passed in /var/www/whatsthebigidea.com/
   htdocs/wp-includes/class-wp-hook.php on line 307 and exactly 2 expected in **/
   var/www/whatsthebigidea.com/htdocs/wp-content/themes/brooklyn-child-KarayMetalsNEW/
   functions.php:232**
 * the error is from custom code in your functions.pho in your child theme’s function.
   php
    the error is not coming from the plugin.
 *  Thread Starter [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15760688)
 * Thanks for your fast reply. Think it may be the cause of the missing button?
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15760993)
 * you are getting a fatal error. so you need to fix that first.
 *  Thread Starter [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15763718)
 * It was indeed related to the Fatal Error. After adding
 * `= null` to
 *     ```
       function no_price( $price, $product = null) {
       $price = '-';
       return $price;
       }
       ```
   
 * all was good.
    -  This reply was modified 3 years, 11 months ago by [David Radovanovic](https://wordpress.org/support/users/dpaule/).
 *  Thread Starter [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15763724)
 * Now I have to see why emails are not being sent 😉
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15764737)
 * check the spam folder and make sure the emails are enabled. check the error log
   after an order is submitted.
 *  Thread Starter [David Radovanovic](https://wordpress.org/support/users/dpaule/)
 * (@dpaule)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15768123)
 * Nothing arriving in Spam folder. Which error log? PHP? Or email? I am using Postfix.
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15768912)
 * your php error log . also your email log. install wp_smtp plugin and see if your
   emails are being sent. [https://wordpress.org/plugins/wp-smtp/](https://wordpress.org/plugins/wp-smtp/)
 * No other report of this problem. so there is a problem there with your email 
   or email server. which email are you not getting? as admin or as customer?

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Button Missing’ is closed to new replies.

 * ![](https://ps.w.org/woo-rfq-for-woocommerce/assets/icon-128x128.png?rev=2024323)
 * [NP Quote Request for WooCommerce](https://wordpress.org/plugins/woo-rfq-for-woocommerce/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/reviews/)

## Tags

 * [postfix](https://wordpress.org/support/topic-tag/postfix/)
 * [rfq](https://wordpress.org/support/topic-tag/rfq/)

 * 9 replies
 * 2 participants
 * Last reply from: [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/button-missing-6/#post-15768912)
 * Status: not resolved