groomedmonkey
Forum Replies Created
-
Did this ever happen as I don’t see the button to disable on a post in Gutenberg (WP 5.0.3) and WP Featherlight 1.3.0.
Forum: Plugins
In reply to: [Per Post Editors] Great plugin but…Ah damn that doesn’t work when on a specific page that you are overriding with this plugin. The +New menu has the Page item in it.
The Capability Manager Enhanced plugin does work and will do what you want. I am setting it up for a school’s website so that school admins can only edit specific pages that are assigned to them via authorship. I believe this is also what you want.
Create a new role and allow Pages:Edit and Pages:Edit publish only. The Edit others capability is what allows a user to edit pages that they aren’t the author of.
Good luck! Hopefully Justin Tadlock will come across this and provide some insight into why the Members plugin doesn’t work for this.
Yeah I am struggling with this too. I created a new role and assigned it all permissions yet I can’t assign a user with that role to be an author of a page! Perhaps this is a bug?
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Additional emails not being sentAre there any specific server requirements I could be missing?
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Additional emails not being sentSigh, yeah I hate the “only me” bugs. I’ll send you an email for a quote.
Thanks for your help on this so far. If it wasn’t something so strange I believe we would of fixed it here.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Additional emails not being sentJust disabled all plugins but this one (Version 2.2.5) and activated twentyfourteen. Added this to the bottom of the functions.php:
/** * Add emails to Salesforce WP plugin - could be made redundant in future plugin update * https://www.ads-software.com/support/topic/plugin-wordpress-to-lead-for-salesforce-crm-send-multiple-email-notifications */ add_filter('salesforce_w2l_cc_admin_email_list','salesforce_add_emails'); function salesforce_add_emails( $emails ){ die('here'); // $emails[]='email_redacted'; $emails[]='email_redacted'; $emails[]='[email protected]'; $emails[]='[email protected]'; return $emails; }
The
die('here');
didn’t produce the described behaviour so I assume that the code isn’t running for some reason.Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Additional emails not being sentHey, sorry for delayed response. Problem still exists.
Code went into functions.php.
I tested with Contact Form 7 to see if mail is being sent by WP and it works to the my address added in the above code – waiting to hear back from client to see if they receive the test to their account. It’s currently 2 gmails and a .org domain mail.
Is there anything else I can do to debug this? I am not using any other email plugins.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Pre-checked checkboxHey Nick, thanks for following up so awesomely!
What is very strange then is I am seeing my checkbox checked by default if I don’t specify a value in the plugin – so it seems to be reading the settings partially from Salesforce. As soon as I add a value (so data is actually sent!) the checkbox is unchecked by default.
Adding a Value in WordPress-to-lead solves this issue but triggers the related issue I had of the checkbox not being prechecked as it is defined in Salesforce (in screenshot linked above).
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Pre-checked checkboxOk, that solves my other issue of the checkbox not sending data but if I add a value to it in WordPress-to-Lead it ignores the pre-checked condition set in Salesforce for that field.
It is a “I would like to receive correspondence” checkbox and should be checked by default.
p.s. sorry for two support posts, initially I thought they were two separate issues.
I don’t follow… the screenshot shows the set up in Salesforce for that field “Data type Checkbox” and underneath is the field set up in WordPress-to-Lead, which is set as “checkbox”.
The only radio button in the screenshot is the General Options for whether the Checkbox is pre-checked or not (this is in the Custom Field Definition editor in Salesforce).
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Pre-checked checkboxOk, I believe this logic is handled by Salesforce (Setup > Customize > Leads > Fields > Edit the field that is a checkbox > Default value) so I am marking this as resolved.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Pre-checked checkboxHmm ok, so if you don’t enter anything in the “Value” field then it is checked by default… I guess my question should be amended to “how do you control whether a checkbox is checked or not” as it seems a bit trial-and-error.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] svg icons not showing in ChromeMaybe expand this to webkit browsers as I have the issue in Safari as well.
EDIT
Lightbox setting > Force PNG icons > Enable
Fixes this issue.