negapo
Forum Replies Created
-
I’m sorry, i barked at the wrong tree.
It’s obviously from that other dreadful plug-in from Facebook, so bad that you cannot call it competition.I saw the progress your plug-in made in terms of database cleanup of meta fields, yuor only using one meta key in the free version and that amazing (_woosea_exclude_product). I just have one small problem, why autoload in WP Options the following values:
woosea_allow_update
woosea_count_activation
woosea_extra_attributes
woosea_facebook_pixel_id
woosea_first_activation
woosea_review_interactionI know its not a lot of stuff, but every plug-in developer thinks the same way and we get our databases filled with this type of problems. Do you really need to autoload this data? Thanks
Hi @ihereira
Thanks for the reply.
I think i didn’t explain myself fully, we want to only accept cards that have 3D Authentication. The reason is this:“Payments that have been successfully authenticated using 3D Secure are covered by a liability shift. Should a 3D Secure payment be disputed as fraudulent by the cardholder, the liability shifts from you to the card issuer.”
We want to reject payments made by cards without 3D Secure.
There is a card_not_enrolled in the payment_method_details.card.three_d_secure.result_reason in the charge object, dont know if this is the right way but surely there must be a way to reject non 3D Secure cards.
Thanks for any help.
Thanks, will open a ticket on git.
Forum: Plugins
In reply to: [Security Optimizer - The All-In-One Protection Plugin] 2FA – Add User RoleGreat, thanks @stoyangeorgiev.
Im having the same problem:
What’s the default message in WooCommerce for this use case? It seems that there is no message coming from Woo on the form validation and thats why the browser kicks in.
I tried to override it with oninvalid=”Error message” but it didnt work, any help?
Thanks
Forum: Plugins
In reply to: [Security Optimizer - The All-In-One Protection Plugin] 2FA – Add User RoleLine 27 at sg-security/core/Sg_2fa/Sg_2fa.php defines the user roles, you can add a user role in there and then toggle off and on the 2FA options at the plug-in options.
It’s not advisable to change core plug-in files, it would be great to create a filter so we can change it (add and remove).
Forum: Plugins
In reply to: [Moloni] Icon na listagem das encomendas no WoocommerceEste código adiciona a coluna:
add_filter('manage_edit-shop_order_columns', 'add_order_custom_column_header', 20); function add_order_custom_column_header($columns) { $new_columns = array(); foreach ( $columns as $column_name => $column_info ) { $new_columns[ $column_name ] = $column_info; if ( 'order_status' === $column_name ) { $new_columns['MoloniInvoice'] = __( 'Fatura', 'my-textdomain' ); } } return $new_columns; }
Este preenche com o link nas encomendas que est?o concluidas:
add_action( 'manage_shop_order_posts_custom_column', 'add_order_costum_column_content' ); function add_order_costum_column_content( $column ) { global $post; $order = wc_get_order($post->ID); $order_status = $order->get_status(); // Status in array if ( in_array( $order_status, array( 'completed', 'outro_estado' ) ) ) { if ($column === 'MoloniInvoice') { $value = get_post_meta( $order->id, 'LinkMoloni', true ); echo '<a href="' . $value . '" target="_blank">Fatura</a>'; } } }
Só há um problema, estou a assumir que o plug-in da moloni inseria o link nos meta tags da encomenda com o nome “LinkMoloni”. O plug-in da moloni infelizmente n?o insere muita informa??o nos meta tags o que dificulta muito fazer este tipo de melhorias ou mesmo auditar a emiss?o de faturas.
Just tried to test disabling our cache plug-in (SG Optimizer) and bypassing cache at CloudFlare and then manually refreshing the product feed but it still doesn’t show new products. Could it be anything else? Thanks
Sorry, didn’t saw your reply before i posted, i knew the caching would come up, we have excluded from the cache the feed folder but i also cleared all caches just to see if the new products would be on the feed but they were not.
The “Private” to “Public” was just my guess but it may be something else.
If we duplicate the feed the new products always come up.Just a side note, we have excluded the links folder from the cache (plug-in and CloudFlare): /wp-content/uploads/woo-product-feed-pro/xml/*
Forum: Plugins
In reply to: [WooCommerce] Huge Action Scheduler tablesSame for me, anyone knows what this cron job does? We dont even have any downloadable product.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Memory limit reached after last updateI have abandoned this plug-in a while ago because its simply not good (to be kind) but i felt the urge to reply. I had 4gb on my server and the plug-in maxed out the memory, what kind of server do we need to run this?
Other plug-ins just split the process and run several cron jobs, simple as that.
Its seems that the developers are in denial on this plug-in, maybe its time to wake up and face the issues.- This reply was modified 3 years, 8 months ago by negapo.
Forum: Plugins
In reply to: [WooCommerce] How To Ensure That WooCommerce Messages Are DKIM-Signed?Ah, sorry, misunderstood the issue. You can use a plug-in like “Post SMTP” and all of your WP/Woo emails will bypass the wp_mail() and be sent thru your server of choice like Google Workspace. You can even fallback to your server in a fail safe strategy.
Forum: Plugins
In reply to: [WooCommerce] How To Ensure That WooCommerce Messages Are DKIM-Signed?Im not an expert but i think you can only DKIM sign on a domain that you have access to DNS records, so gmail is out of reach. Why are you not using your server to send emails, are the IP`s banned ou do they have a bad reputation?
We had a lot of issues with our emails but we ended up using our server to send emails via WooCommerce with a DKIM signature.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Clean Uninstall of Plug-InHi, thanks for the reply.
I did follow the guide but was still left with more then 15.000 rows on table ‘postmeta’ that start with ‘_wc_facebook’. I have also took a look at the plug-in files and couldn’t find any obvious routine of cleaning this meta data, there are a lot of files and maybe i missed it.
Please help me, and others, clean this and other data left by the plug-in, you can point me for the code on the plug-in ou just list the tables/meta data.
Thanks.