MCGWD
Forum Replies Created
-
Thanks for checking. I didn’t see an issue with the site being unavailable. I think I have this issue resolved now. Thanks for the support quick and response anyways!
- This reply was modified 3 hours, 2 minutes ago by MCGWD.
Thanks for the quick reply ! I’m not using any JavaScript optimization nor am I minifying the html. You can take a look at the page at: https://www.drivingright.org/graduated-driver-licensing/segment-1-mason-high-school/registration/
Note I just use 4111111111111111 for the credit card number, and wait for error message. But it never arrives as the form just hangs.Also the correct directories are:
/wp-content/plugins/gravityforms/js/(.*)
/wp-content/plugins/gravityforms-authorize-net-gateway/js/(.*)- This reply was modified 1 day, 3 hours ago by MCGWD.
Nice, much appreciated. I’ll try it out!
Forum: Plugins
In reply to: [Solid Mail – SMTP email and logging made by SolidWP] Disable Reply-toI too would like to see this feature added.
Unfortunately that did not work either.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] “there was an error while fetching events!”Thanks, it turns out it was a problem with the following code in my child theme’s functions.php:
# block user enumeration using author ID if (!is_admin()) { if (preg_match('/author=([0-9]*)/i', $_SERVER['QUERY_STRING'])) die(); add_filter('redirect_canonical', 'mcgwd_block_user_enumeration', 10, 2); } function mcgwd_block_user_enumeration($redirect, $request) { if (preg_match('/\?author=([0-9]*)(\/*)/i', $request)) die(); else return $redirect; }Forum: Plugins
In reply to: [Shipping Live Rates for FedEx for WooCommerce] Filter Shipping MethodsPerfect, thanks!
Forum: Plugins
In reply to: [WP Job Manager] Company logoAdding
add_theme_support('post-thumbnails',array('job_listing'));worked for me.
Forum: Plugins
In reply to: [User Role Editor] Sorry, you are not allowed to attach files to this post.Fixed. Had to not only enable edit_others_pages/posts, but edit_published_pages/posts as well.
Forum: Plugins
In reply to: [User Role Editor] Sorry, you are not allowed to attach files to this post.bhakti123, I have the same issue. Did you happen to find a fix?
Forum: Plugins
In reply to: Membership Renewal via Gravity FormsHere is what I’ve setup… Once a member’s subscription is cancelled the PayPal add-on updates the user’s role to a custom role called “inactive”. When they login with that role the are redirected to a renewal form that has the User Registration add-on change their role back to one of the membership roles.
Still not way to notify them prior to the membership expiring however.
Forum: Plugins
In reply to: Membership Renewal via Gravity FormsI too would like some thoughts on this. Were you @smithcreate able to figure out a solution?
Forum: Plugins
In reply to: [WP eCommerce] Unable to edit 'Your Account' page textNice fix @toastdesign. Thanks!
Forum: Plugins
In reply to: [WP eCommerce] robotsmeta: index,follow showing up on product pageTry removing or commenting out the following code from wpsc-single_product.php in your themes folder.
<?php
/**
* Custom meta HTML and loop
*/
?>
<?php if (wpsc_have_custom_meta()) : ?>
<div class="custom_meta">
<?php while ( wpsc_have_custom_meta() ) : wpsc_the_custom_meta(); ?>
<?php if (stripos(wpsc_custom_meta_name(),'g:') !== FALSE) continue; ?>
<?php echo wpsc_custom_meta_name(); ?>: <?php echo wpsc_custom_meta_value(); ?>
<?php endwhile; ?>
</div><!--close custom_meta-->
<?php endif; ?>
I had this problem too. Turns out it was an .htaccess issue. I was using the 5G BLACKLIST/FIREWALL by PerishablePress.com for security. Anyways I removed that code from my .htaccess file and the blank screen issue was resolved.
Apparently some of the RewriteCond (eg [ ]) are now needed in WP 3.5.