betagoo
Forum Replies Created
-
Confirm incompatible.
Please help.Fatal error: Uncaught Error: Class 'paypal_express' not found in /wpdemo7/wp-content/plugins/woocommerce-pay-for-payment/admin/class-pay4pay-admin.php:209 Stack trace: #0 /wpdemo7/wp-includes/plugin.php(525): Pay4Pay_Admin->update_payment_options('') #1 /wpdemo7/wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php(370): do_action('woocommerce_upd...') #2 /wpdemo7/wp-includes/plugin.php(525): WC_Settings_Payment_Gateways->save('') #3 /wpdemo7/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php(79): do_action('woocommerce_set...') #4 /wpdemo7/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php(154): WC_Admin_Settings::save() #5 /wpdemo7/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php(206): WC_Admin_Settings::output() #6 /wpdemo7/wp-includes/plugin.php(525): WC_Admin_Menus->settings_page('') #7 /wpdemo7/wp-admin/admin.php(236): do_action('woocommerce_pag...') #8 {main} thrown in /wpdemo7/wp-content/plugins/woocommerce-pay-for-payment/admin/class-pay4pay-admin.php on line 209
Thanks for help. Topic resolved.
Maybe: Flat rate (combine / sum with other rules). This option need more explanation, perharps examples into FAQ.
Now I understand, the “none” option is the sum.
However, at first I couldn’t understand why the cost value is bigger than I expect. I thought that is the bug.First field into row should be required (not empty, not “none”), then calculation will be fine.
Forum: Plugins
In reply to: [Advanced Shipping Validation for WooCommerce] Not workMy fault, there was bug in another part of theme code. Plugin Work fine. Topic can be closed. Sorry.
Forum: Plugins
In reply to: [Niko Taxonomy Filters] Display proper custom post type onlyIt was my fault. Problem was $query->set( ‘post_type’ …… added into another part of code.
Thanks for help.
Yes. Something like this. Is this made by modify cart-shipping.php file?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] reCaptcha2 not workPerhaps You change verify recaptcha key method to curl into wp-members script on the occasion another update?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] reCaptcha2 not workSome servers not support file_get_contents function (security reasons).
Solution to resolve this problem below.Edit file register.php
Comment line 211
Above line 211 paste this code:function captcha_curl_load( $url ) { curl_setopt($ch=curl_init(), CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); return $response; } $url = "https://www.google.com/recaptcha/api/siteverify?secret=" . $privatekey . "&response=" . $captcha . "&remoteip=" . $_SERVER['REMOTE_ADDR']; $response = captcha_curl_load( $url );
Forum: Plugins
In reply to: [Yoast SEO] Invisible SEO settings when edit mediaWhen edit media, javascript return error from file yoast-seo-307.min.js
TypeError: document.getElementById(...) is null
Forum: Plugins
In reply to: [Category Posts in Custom Menu] Performance problem – many database queriesI did not modify the plugin.
In first occurrence of menu I use transients.$header_menu_query = get_transient( 'header_menu_query_'); if( $header_menu_query === false ) { $header_menu_query = wp_nav_menu( array( 'menu' => $menu_id, 'container' => '', 'items_wrap' => '%3$s', 'echo' => 0 ) ); set_transient( 'header_menu_query_', $header_menu_query, YEAR_IN_SECONDS ); } echo $header_menu_query;
Forum: Plugins
In reply to: [Category Posts in Custom Menu] Performance problem – many database queriesI can not diagnoze cause of the problem.
But, problem now is solved.
I use Transients to cache menu.Forum: Plugins
In reply to: [Dashboard Notepad] Configure Link not available with WP 4.4.Confirm. Me too.
Me too.