eugenefvdm
Forum Replies Created
-
Now another 24 hours later and only 4 left, and the original link I pasted is fixed. I guess the problem is resolving itself.
Wow okay mysteriously 12 hours later it’s gone from 23 errors to 12. Ah you have to love the joys of GSC.
Forum: Fixing WordPress
In reply to: Lost access to ww.wp.xz.cn EmailHi there @jraborar ,
Thank you so much for your reply.
The user I am referring to is for https://ww.wp.xz.cn, this website.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Importing the wpress file stuck at 0%Looks like this is the problem with All-In-One-WP Migration. It gets stuck. Giving up.
Apologies to post this here, but please see screenshot:
https://prnt.sc/n4ezalWe have that beautifully designed page and we have the WP Last Modified Info plugin installed. For a single post, we can now sort by last updated which is wonderful. However for this view, not sure what to call it, we cannot. The only option presented is Date and DESC and ASC. I’m after using Last Modified. Is there a possible workaround?
I had a similar question because in my case it sent two SMSses connected to a BulkSMS gateway.
I found this link:
https://github.com/mattwithoos/WP-VFBP-2-SF/blob/master/wpvfbp2sf.phpEssentially install some session code setting and checking before sending.
if(!isset($_SESSION[‘RUNS’])) { // Prevents ‘issue’ caused by WP Visual Form Builder Pro where it runs script twice
$_SESSION[‘RUNS’] = 1;
}if($_SESSION[‘RUNS’] == 1) {
// Do something// your stuff here
// At the end
$_SESSION[‘RUNS’]++;
} else {
unset($_SESSION[‘RUNS’]);
}Forum: Plugins
In reply to: [Q and A Focus Plus FAQ] Comments Aren't WorkingI have the same problem using the Enfold template. To test it I installed a fresh WordPress site, Q & A focus plus, this works. The moment I apply Enfold I cannot leave comments.
Luckily Enfold has a forum and there I found this:
http://www.kriesi.at/support/search/enable+comment/In a nutshell add this:
> //wordpress function that loads the comments template “comments.php”
comments_template( ‘/includes/comments.php’);To page.php.
Lol interesting as I have the exact opposite experience as you. I think you are upset with the company as opposed to how the module works. In my opinion (just judging the module) it is a truly amazing module that works exactly as advertised. It would be interesting to hear your opinion about the new module after 5 months of use. Please keep us posted.
Forum: Plugins
In reply to: [WooCommerce] API payment gateway issue on callbackI have exactly the same error. I’m glad I came here to find out “1” means cannot be found.
My class is
class WC_Gateway_PayNow extends WC_Payment_Gateway {}add_action does this
add_action( 'woocommerce_api_wc_gateway_paynow', array( $this, 'check_ipn_response' ) );This function exists:
function check_ipn_response() {}What might I be doing wrong?