MCGWD
Forum Replies Created
-
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.
Figured this out for anyone who may need this… you will need to edit radslide/setup.php
Changed ‘administrator’ to ‘moderate_comments’ in the following function (basically using a capability role used by both admins and editors).
// create menu function radslide_create_menu() { $menu_slug = 'radslide_slideshows'; add_menu_page('radSLIDE Slideshows', 'radSLIDE', 'moderate_comments', $menu_slug, 'radslide_page_slideshow'); add_submenu_page($menu_slug, 'radSLIDE Slideshows', 'Slideshows', 'moderate_comments', $menu_slug, 'radslide_page_slideshow'); add_submenu_page($menu_slug, 'radSLIDE Help', 'Help', 'moderate_comments', 'radslide_help', 'radslide_page_help'); add_submenu_page($menu_slug, 'radSLIDE Uninstall', 'Uninstall', 'administrator', 'radslide_uninstall', 'radslide_page_uninstall'); }
I too would like to know if this is possible.
Just sent a donation. Keep up the excellent work JLeuze. Can’t wait for version 1.3… if you still need beta testers let me know. Thanks!