apgold23
Forum Replies Created
-
Forum: Plugins
In reply to: [Accept Stripe Payments] High volume of ajax requestsThank you. Plugin updated. We’ll let you know what we hear back.
Forum: Plugins
In reply to: [Accept Stripe Payments] High volume of ajax requestsTy @alexanderfoxc! We’re working with WPEngine to get the details. They said they need to dig into the logs to identify any offending IP addresses or user agents that might be the cause.
Forum: Plugins
In reply to: [Accept Stripe Payments] High volume of ajax requestsThank you for the suggestion. Unfortunately enabling recaptcha didn’t help. Here is the latest from WPEngine (after 24 hours with recaptcha enabled):
AGENT (Lindsey C): Monitoring the ajax calls being made on the site, the action I see being rapidly repeated is asp_pp_req_token which looks to be referenced in the stripe-payments plugin. The exact lines of code would be:
wp-content/plugins/stripe-payments/includes/class-asp-pp-handler.php
31: add_action( 'wp_ajax_asp_pp_req_token', array( $this, 'handle_request_token' ) ); 32: add_action( 'wp_ajax_nopriv_asp_pp_req_token', array( $this, 'handle_request_token' ) );wp-content/plugins/stripe-payments/public/assets/js/pp-handler.js
843: var reqStr = 'action=asp_pp_req_token&amount=' + vars.data.amount + '&curr=' + vars.data.currency + '&product_id=' + vars.data.product_id;Forum: Plugins
In reply to: [Accept Stripe Payments] High volume of ajax requestsThank you @mbrsolution.
@mra13 – No, reCAPTCHA is not enabled.
Forum: Fixing WordPress
In reply to: Twenty Thirteen Footer QuestionMy guess is you don’t want your copyright to be hyperlinked. The WordPress one was linked since it took you to the main WP site. So, the following code (in your child theme’s footer.php file) should work just fine. It also gets rid of hard-coding your site’s name, as well keeps the copyright current to “today’s” year.
<?php do_action( 'twentythirteen_credits' ); ?> <?php echo 'Copyright © ' . date("Y") . ' ' . get_bloginfo('name'); ?>Forum: Themes and Templates
In reply to: Latest Post(s) with Morning After themeThat did it! Thank you so much @alchymyth – very much appreciated.