Wammy
Forum Replies Created
-
Forum: Plugins
In reply to: [Google App Engine for WordPress] Activation is not possibleThis plugin is for use inside an ‘App Engine’ instance, Compute Engine is different.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Can't uncheck Use App Engine Email Service.I had this same issue, it seems the setting is being ignored somewhere and/or forced ON.
I was able to work around this by renaming mail.php to mail.php.disabled in the modules/ directory.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Upload fails with HTTP errorJust want to confirm that the fix provided by aucor resolved the issue for me as well.
Forum: Plugins
In reply to: [WP eCommerce] Unable to edit 'Your Account' page textActually, that first if section for purchase_history can be removed unless you are doing fancy things like I am.
Forum: Plugins
In reply to: [WP eCommerce] Unable to edit 'Your Account' page textA good way to fix this without breaking any future functionality is to replace:
do_action( 'wpsc_user_profile_section_' . $current_tab );In wpsc-user-log.php to:
if ($current_tab == 'purchase_history') { include('wpsc-account-purchase-history.php'); } elseif ($current_tab == 'edit_profile') { include('wpsc-account-edit-profile.php'); }else { do_action( 'wpsc_user_profile_section_' . $current_tab ); }now it is all working properly*
Well, nevermind. I guess disabling/enabling the plugin must have refreshed something because not it is all working properly.
Forum: Plugins
In reply to: [User Access Manager] Bug on UserAccessManager->showPlGroupSelectionFormAlso, do you have a written plugin API? I’d like better reference than trying to figure out how you did this for the NexGen gallery.