davemac
Forum Replies Created
-
Forum: Plugins
In reply to: [Growmap Anti Spambot Plugin] Errors in debug log?Yes, the error is still there.
The fix is pretty simple, something like adding:
$gasp_check = "";
before
$gasp_check == false;
would be great if this could be fixed in the next version
Forum: Plugins
In reply to: [List Custom Taxonomy Widget] Display as dropdown optionThanks, much appreciated.
Same since the 3.01 upgrade the variations are no longer displaying on the product page. I have tried changing the product attributes size slug to ‘2_litre’ and adding the variations again but still nothing.
Still seeing these notices with this plugin with debug on.
Forum: Plugins
In reply to: [WooCommerce Variation Details on Page Product] PHP NoticeThank you for the quick response, much appreciated.
Also, with debug on I am also getting notices when I go plugin settings page in WooCommerce:
Notice: Undefined property: MP_WC_Variation_Details_On_Page_Product_Settings::$id in /wp-content/plugins/woocommerce/classes/class-wc-settings-api.php on line 108
Notice: Undefined property: MP_WC_Variation_Details_On_Page_Product_Settings::$id in /wp-content/plugins/woocommerce/classes/class-wc-settings-api.php on line 361
Notice: Undefined property: MP_WC_Variation_Details_On_Page_Product_Settings::$id in /wp-content/plugins/woocommerce/classes/class-wc-settings-api.php on line 365
Notice: Undefined property: MP_WC_Variation_Details_On_Page_Product_Settings::$id in /wp-content/plugins/woocommerce/classes/class-wc-settings-api.php on line 365
Just made a PayPal donation as well, thanks for the great work.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Update to 4.3 will no longer let me save the settingsHaha, you’re right. My fault as I should have read the documentation. I’m ashamed as I am a developer and should have known better ??
Always expect users to do the unexpected!
Forum: Plugins
In reply to: [Breadcrumb NavXT] Update to 4.3 will no longer let me save the settingsAhh OK. It wasn’t obvious that I should do that at all. Also, the latest update broke breadcrumbs layout without any warning that I needed the new function.
(suppose I should have read the docco)
Forum: Plugins
In reply to: [Breadcrumb NavXT] Update to 4.3 will no longer let me save the settingsSame issue here cannot save any settings.
For example, I am trying to change Page Template on the Post Types Tab from:
<a title="Go to %title%." href="%link%">%htitle%</a>
to :
<li><a title="Go to %title%." href="%link%">%htitle%</a></li>
as I want to use list items, but it won’t save.Great fix, yes I would love to see this in the next upgrade as well.
Forum: Plugins
In reply to: [Membership Plugin - Restrict Content] PHP Notices and WarningsNo problem, when I get some time I will do some testing on it and post back here.
Forum: Plugins
In reply to: [Membership Plugin - Restrict Content] PHP Notices and WarningsSorry not sure as I didn’t use the plugin after that.
Forum: Plugins
In reply to: [Developer] [Plugin: Developer] activation problemSame issue on 3.4.2 localhost, modal window won’t go away, even with the github fix as above.
If you uncheck ‘Add OpenGraph meta data’ in the Social options of the plugin, this will stop the notice.
This worked for me:
function hipo_add_extras(){ $editor = get_role( 'editor' ); $editor->add_cap( 'list_users' ); $editor->add_cap( 'edit_users' ); $editor->add_cap( 'new_user_approve_minimum_cap' ); } add_action('admin_init','hipo_add_extras');
The above doesnt seem to work? Shouldn’t it be return ‘edit_users’; ?