Hernan Villanueva
Forum Replies Created
-
Hi there!
Sorry for my late reply. I didn’t receive a notification from WordPress about your question.
I would suggest using a tool like MailTester to see why your emails end up in spam folders. I don’t think it’s an issue related to the service provider or the servers. It could also be that your domain URL has been flagged as spammy already.
And this issue as well:
https://wordpress.org/support/topic/plugin-preventing-saving-product/page/2/Hi @rodeista!
I’m very sorry for my late reply! I didn’t receive a notification from WordPress about your request for support.
Unfortunately, the plugin will not work with a generic Sendy installation. We have extended Sendy’s API to be able to add and delete lists, autoresponders, autoresponder emails, etc. As the plugin changes, we may make changes to the API. This is why we would need your installation to run on our servers — to be able to keep the API secure and updated.
If you have any other questions, please feel free to email me at hernan@boldermail.com.
Thank you for your interest!
Hernan
Forum: Plugins
In reply to: [Genesis eNews Extended] Implement in AMP modeI have the same issue. I haven’t found a solution yet.
Forum: Plugins
In reply to: [Restrict Media Library Access] Author ViewThis plugin uses a single function:
add_filter( 'ajax_query_attachments_args', 'mrfx_show_current_user_attachments' ); function mrfx_show_current_user_attachments( $query ) { $user_id = get_current_user_id(); if ( $user_id && !current_user_can('administrator') && !current_user_can('editor') ) { $query['author'] = $user_id; } return $query; }
This filter works great for the grid mode, but not for the list mode. You will need the following for the list mode:
add_filter( 'request', 'mrfx_show_current_user_attachments_list' ); function mrfx_show_current_user_attachments_list( $query ) { $screen = get_current_screen(); if ( in_array( $screen->id, array( 'upload' ) ) ) { $user_id = get_current_user_id(); if ( $user_id && !current_user_can('administrator') && !current_user_can('editor') ) { $query['author'] = $user_id; } } return $query; }
I got the idea from Woothemes Sensei. They have the same functionality, but for their own Teacher role.
Forum: Plugins
In reply to: [Post Types Order] Conflict with ‘order_by’ => ‘post__in’ query variableThanks for your reply!
I’m aware of your query argument. However, I believe that does not address my question. I did not open this topic for support; I did it to report a potential bug.
Was the “Full Sync” button moved? I do not see it in my WordPress.com dashboard.
Forum: Plugins
In reply to: [WooCommerce] Missing DependenciesThe issue was resolved for the YITH WooCommerce Featured Video plugin in version 1.1.8 (see here). Just FYI!
Forum: Plugins
In reply to: [YITH WooCommerce Featured Video] Breaks WooCommerce JS dependenciesIssue was resolved in version 1.1.8.
Thanks!
Forum: Plugins
In reply to: [WooCommerce Email Validation] Match two email address in real timeSomething like this:
jQuery( function( $ ) { // wc_checkout_params is required to continue, ensure the object exists if ( typeof wc_checkout_params === 'undefined' ) { return false; } // Inline validation $( 'form.checkout' ).on( 'blur change', '.input-text, select, input:checkbox', function() { var $this = $( this ), $parent = $this.closest( '.form-row' ), validated = true; if ( $parent.is( '.validate-email-confirmation' ) ) { // Original email field. if ( $( '.validate-email input' ).val() ) { if ( $( '.validate-email input' ).val() != $this.val() ) { $parent.removeClass( 'woocommerce-validated' ).addClass( 'woocommerce-invalid woocommerce-invalid-email' ); validated = false; } } } if ( validated ) { $parent.removeClass( 'woocommerce-invalid woocommerce-invalid-required-field' ).addClass( 'woocommerce-validated' ); } } ); } );
This assumes that the “Confirm Email” field has the class
validate-email-confirmation
in it.I still need to make sure that the script plays along well with the original email field for different cases. Again, I would like to know if this is something you would be willing to consider in your plugin, or if I should just implement my own solution.
Thanks for your time!
- This reply was modified 4 years, 3 months ago by Hernan Villanueva.
Forum: Plugins
In reply to: [WooCommerce Email Validation] Match two email address in real timeSorry to bother you with more questions, but this is something that I’m willing to implement myself. Before I do that though, I would like to understand the downsides.
What do you mean with the form would seem imbalanced? The “Confirm Email” field does not need to display an alert (as I initially suggested); it can simply turn red with the
.woocommerce-invalid
class. It would use a function similar in concept to thevalidate_field
one inwoocommerce/assets/js/frontend/checkout.js
. Furthermore, this check will only take place in the frontend. I would still like for your plugin to perform a backend check (using PHP) for reassurance.Forum: Plugins
In reply to: [WooCommerce] Missing DependenciesAre you using the YITH WooCommerce Featured Video plugin? I noticed the issue occurs when this plugin is activated.
I have not figured out the issue yet though.
Forum: Plugins
In reply to: [a3 Lazy Load] Compatibility with Infinite ScrollingOk, I will look into the plugin repo. Thanks!
Forum: Plugins
In reply to: [WP Admin No Show] Version 1.5.0 breaks WooCommerce checkoutThanks!
I forgot to mention that in the WP Admin No Show options, you need to block the users with the role of Customer. Then, as a Customer, proceed to the checkout page to see the error.
Forum: Plugins
In reply to: [WP Admin No Show] Flash of wp-admin screen – Might not hook in soon enoughUsing
admin_init
breaks the checkout process in WooCommerce. See https://wordpress.org/support/topic/version-150-breaks-woocommerce-checkout