Jesin A
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailgun Email Validator] Active development?Hi Bjorn,
You can fork this plugin, modify it and submit it here as a new plugin.Forum: Plugins
In reply to: [Custom Error Pages] Would love for this to be updatedUpdated.
Forum: Plugins
In reply to: [Custom Error Pages] Possible problem with WordPress 6.0.1Hey guys I’m sorry I hadn’t had the time to maintain this plugin. I’ll try fixing it in a week.
Forum: Plugins
In reply to: [WooCommerce] Analytics historical import stuck at 0Thank you very much for the detailed response. I’ve identified the conflict. It was the WP-Crontrol plugin. Once I disabled this plugin it imported everything without issues.
Forum: Plugins
In reply to: [WooCommerce] Analytics historical import stuck at 0Hi RK,
I have
DISABLE_WP_CRON
set to true in wp-config.php. I runcurl https://wheelsasap.com/wp-cron.php?doing_wp_cron
on Linux crontab every 2 minutes.Forum: Plugins
In reply to: [Site Reviews] Adding custom review fieldsHi, I was wondering if it was possible to create connected select fields. Like displaying states in a dropdown and displaying cities based on the selected state.
Forum: Plugins
In reply to: [WooCommerce] woocommerce_rest_cannot_view error when using the REST APIHey Rynaldos,
I could never get this to work, as I said the
get_current_user_id()
function insideget_items_permissions_check()
was returning 0.I’m using a different plugin which doesn’t need the Woocommerce REST API.
Forum: Plugins
In reply to: [Site Reviews] Retrieving reviews via REST APIThanks for the quick response. Any ETA on when it’ll be available?
Forum: Networking WordPress
In reply to: 307 Temporary Redirect issue ?This answers comes first when Googling “wordpress 307 redirect” and I had the same issue.
The ?v query string is added by Woocommerce to geolocate a customer when caching plugins are enabled. More info here https://www.wpbeginner.com/wp-tutorials/how-to-remove-vxxxx-string-from-wordpress-urls/
- This reply was modified 5 years ago by Jesin A.
Thank you I wanted to use it on the single product pages only ??
Forum: Plugins
In reply to: [Mailgun Email Validator] tons of validationsSorry for the delayed response. You can use the following code to exclude this plugin from pages that don’t have a contact form.
if ( ! is_admin() ) { add_filter( 'option_active_plugins', function( $plugins ) { if ( ! isset( $_SERVER['HTTP_REFERER'] ) ) { $_SERVER['HTTP_REFERER'] = null; } $request_uri = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_PATH ); $referer_uri = parse_url( $_SERVER['HTTP_REFERER'], PHP_URL_PATH ); if ( ! strpos( $request_uri, '/contact-us/' ) && ! strpos( $referer_uri, '/contact-us/' ) ) { $key = array_search( 'mailgun-email-validator/plugin.php', $plugins ); if ( false !== $key ) { unset( $plugins[ $key ] ); } } return $plugins; }); }
If you have multiple pages add them all to the
if
condition:if ( ! strpos( $request_uri, '/contact-us/' ) && ! strpos( $referer_uri, '/contact-us/' ) && ! strpos( $request_uri, '/page-2/' ) && ! strpos( $referer_uri, '/page-2/' ) ) {
Create a directory named mu-plugins inside wp-content and paste the code in a new file e.g. mailgun-exclude.php
Forum: Plugins
In reply to: [Mailgun Email Validator] tons of validationsHi Dave,
Thanks for using the plugin. Does the form in question appear only on a single page? Is it a comment form or a contact/registration form?
Forum: Plugins
In reply to: [Mailgun Email Validator] how this is validated email addressHello,
Mailgun checks if the domain has valid DNS records, since hitmail.com does have valid DNS it says the email address is valid.
Forum: Plugins
In reply to: [Mailgun Email Validator] 420 Error when verifying api keyHi Pavel,
Are you sure you’re using the public key that starts with
pubkey-
?Open this URL in your browser –
https://api.mailgun.net/v3/address/[email protected]
Enter “api” as the username and your public API key as the password. You should see JSON output on the screen. If you get a blank screen contact Mailgun.