fullworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Event Manager] Error when duplicating eventHi these are notices and warnings not errors, you can ( and should on live system ) turn them off they do not impact functionality.
See
https://fullworks.net/docs/plugins-general/troubleshooting-plugins-general/php-notices-and-warnings/They will be resolved in the future, but they are not errors.
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userOk a token coming your way – I know having been a plugin developer for 8+ years that donations are indeed a rare event ( and why now most of my plugins are freemium )
Forum: Plugins
In reply to: [Quick Event Manager] registration form not showingThank you for sharing the settings.
The plugin is working as designed.
You have ticked ‘Do not show registration form on old events’, and as this event started on 22nd March it is already started in the past – so therefore old and the setting stops the display of the form.
Thank you for using my plugin.
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userThanks and understood.
Does the donate button go to you directly?
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userThanks,
Strange that a relatively simple job always ends up being so much more 🙂
While I have your expertise on tap – the ultimate goal here is to have the hardcopy magazine available for paid up members.
So obviously members sync will allow me to have roles that can be used for protection rules.
In terms of protection ( i.e. only seeing the magazine & archive when logged ) I was planning to custom code, as it isn’t that complex – but that said there are many plugins that do similar – any that you would use?
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userThanks, it works for at least manual bulk creation.
Wasn’t 100% sure if you used display_name or sort_name in generating the user names, so I was lazy and did both rather than reading the code.
Also, not sure of what happens yet ( i.e. haven’t tested ) if I change the email on the related member in CiviCRM.
Forum: Plugins
In reply to: [Quick Event Manager] Deactivation & Freemius Opt-In Can’t Be DismissedI haven’t heard from you – did you resolve this?
Forum: Plugins
In reply to: [Quick Event Manager] registration form not showingI can’t replicate your issue on my test system. Can you provide a screen shot of your registration settings so I can try the same combination as you have?
You can email direct to support at fullworks dot net
Forum: Plugins
In reply to: [Quick Event Manager] registration form not showingStrange.
While I look deeper can you confirm.
Plugin Version:
WordPress Version:
PHP Version:And also can you advise do you have a test or development or staging site which is demonstrating the same behaviour?
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userForum: Plugins
In reply to: [Quick Event Manager] registration form not showingCan you go to your event and check that the setting ‘Add registration form to this event’ is ticked? Or in registration settings, you have ticked ‘show form on all events’?
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userThanks,
I was going to do a pull request with a filter in place once I worked out if the strategy works you saved me the task.
Alan
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userThis hook_civicrm_apiWrappers may be the right way, and whilst I have written CivCRM extension I’m a WordPress plugin developer and switching between the two concepts I find really hard 🙂
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userOK I have nearly a solution in public function civi_get_contact_by_contact_id
which returns the CiviCrm Contact data
I look up the relationship and switch the contact data
It nearly works perfectly except Roles – interestingly the ‘expired’ role is assigned correctly but the ‘current’ role ends up as none
public function civi_get_contact_by_contact_id( $contact_id ) { // Kick out if no CiviCRM. if ( ! civi_wp()->initialize() ) return false; // Bail if we don't get a valid contact ID. if ( empty( $contact_id ) OR ! is_numeric( $contact_id ) ) return false; // Get all contact data. $params = array( 'version' => 3, 'contact_id' => $contact_id, ); // Use API. $contact_data = civicrm_api( 'contact', 'get', $params ); // Find the Head of Household contact ID $relationship = civicrm_api3( 'Relationship', 'get', array( 'sequential' => 1, 'return' => ["contact_id_a"], 'contact_id_b' => $contact_id, 'relationship_type_id' => 7, 'is_active' => 1, )); // Now switch the contact data. $params = array( 'version' => 3, 'contact_id' => $relationship['values'][0]['contact_id_a'], ); // Use API. $contact_data = civicrm_api( 'contact', 'get', $params ); // Bail if we get any errors.Forum: Plugins
In reply to: [Quick Event Manager] Deactivation & Freemius Opt-In Can’t Be DismissedSharing those details would be great.
If you like email to support at Fullworks for net