des79
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] WooCommerce orders, FIFU image not showedHi @marceljm thank you for your reply….
sorry my mistake…
I got confused with another plugin that has the same name (Featured Image by URL)…but I see that yours is updated more frequently.
I think to change and go to yours plugin: is there an import procedure of the images used with the other plugin?
Thank you
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] Rank Math supportHi Matthias, great to know…..
I hope soon…
Have a great day
Hi Simon, it’s a pleasure.
This is a quickly workaround. In /vendor/braintree/braintree_php/lib/Braintree/Customer.php #367 there is a method paymentMethods that return $his->paymentMethods attribute
public function paymentMethods() { return $this->paymentMethods; }I don’t know why this isn’t accessible. I think for response object, I have not had the opportunity to analyze it
to remove error I temporary change
foreach ( $this->response->paymentMethods() as $method ) {
with
foreach ( $this->response->paymentMethods as $method ) {
paymentMethods() is not defined in response
Errata corrige.
I get this error if I login to myaccount and access to subscriptions menu
Fatal error: Uncaught Error: Call to undefined method Braintree\Customer::paymentMethods()
in /public_html/assets/plugins/woocommerce-gateway-paypal-powered-by-braintree/includes/api/responses/class-wc-braintree-api-customer-response.php on line 107Stack di chiamate: WC_Braintree_API_Customer_Response::get_payment_tokens() assets/plugins/woocommerce-gateway-paypal-powered-by-braintree/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/payment-tokens/class-sv-wc-payment-gateway-payment-tokens-handler.php:677 SkyVerge\W\P\v\SV_WC_Payment_Gateway_Payment_Tokens_Handler::get_tokens() assets/plugins/woocommerce-gateway-paypal-powered-by-braintree/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/payment-tokens/class-sv-wc-payment-gateway-payment-tokens-handler.php:273 SkyVerge\W\P\v\SV_WC_Payment_Gateway_Payment_Tokens_Handler::get_token() assets/plugins/woocommerce-gateway-paypal-powered-by-braintree/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/integrations/class-sv-wc-payment-gateway-integration-subscriptions.php:647 SkyVerge\W\P\v\SV_WC_Payment_Gateway_Integration_Subscriptions::maybe_render_payment_method() wp-includes/class-wp-hook.php:292 WP_Hook::apply_filters() wp-includes/plugin.php:212 apply_filters() assets/plugins/woocommerce-subscriptions/includes/class-wc-subscription.php:2029 WC_Subscription::get_payment_method_to_display() assets/plugins/woocommerce-subscriptions/templates/myaccount/my-subscriptions.php:43 include() assets/plugins/woocommerce/includes/wc-core-functions.php:345problem due to opcache
Hi yukikatayama, thank you for your reply.
Yes it’s happen with third party jquery plugin and my custom script. This happens because when customer pay with PayPal (after login and paid on popup form), popup window try to send checkout form but jquery validation break this because form is not valid for unchecked box and the form remains locked with loading (blockUI).
I modified my script to unblock payment box.
Thanks
- This reply was modified 7 years, 7 months ago by des79.
Forum: Plugins
In reply to: [bbPress Toolkit] Disable Tag checkHi Pascal, great.
If I can suggest another adds, you can put another check to disable user link without write code (for user)
You can use this:
add_filter( ‘bbp_get_reply_author_link’, ‘remove_author_links’, 10, 2);
add_filter( ‘bbp_get_topic_author_link’, ‘remove_author_links’, 10, 2);
function remove_author_links($author_link, $args) {
$author_link = preg_replace(array(‘{<a[^>]*>}’,'{}’), array(” “), $author_link);
return $author_link;
}
Thanks and great jobs.
DavidHi Dexterity, crobbinsdg,
Thank for your reply, I think it isn’t the best solutions. You use a plugin to remove transient that is the same task that WPSEO does.
WPSEO create multi transient on db (categories, posts etc.) and on expire delete it and this redundant action on every page load bring site to multiple query on Db until crash (CPU overloading until 100% for deadlock).
IMO it’s a temporary solution.