fullworks
Forum Replies Created
-
Forum: Plugins
In reply to: [CiviCRM Member Sync] Does the 24 hourly sync created WP userOK any ideas for an easy background solution using your existing product that will add missed memberships?
If you recall – I’m grabbing the email from a relationship – so depending on sequence that email ( or relationship) may not exist when the membership is created and so no WP user created.
Of course, I could effectively replicate your ajax manual load code ( not sure I can use the function as is ) and then use a batch scheduler like action scheduler to background action the batches.
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] SPF records with redirectYes I haven’t taken into account SPF redirect. I’ll add it to the list.
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] Cannot identify a valid IP addressThanks for this. I have added this to consider for the next release.
Forum: Plugins
In reply to: [CiviCRM Member Sync] Does the 24 hourly sync created WP userActually having read the code in more detail, as ync_all_wp_user_memberships() drives off the wp users not civicrm members – I can’t see a way of doing this with simple filters / actions.
- This reply was modified 6 years, 1 month ago by fullworks.
Forum: Plugins
In reply to: [CiviCRM Member Sync] Does the 24 hourly sync created WP userJust reading the code and the scheduled sync calls sync_all_wp_user_memberships() which explicity skips if ( ! $user->exists() ) { continue; }
I’ll create a pull request in github to add a do action to that function.
- This reply was modified 6 years, 1 month ago by fullworks.
Forum: Plugins
In reply to: [Quick Paypal Payments] Warning: A non-numeric value encounteredThanks for reporting this.
I have looked into this.
This will because you have entered a non numeric value into the settings>styling>slider thickness maybe you input something like 12px .
Please go to the settings>styling and enter a number into the thickness.
I will improve validation in a later release to ensure users can not enter non numbers.
I see you have managed to work this out and get it operational on your site.
Forum: Plugins
In reply to: [Display Eventbrite Events] Events Disappear After Saving/RefreshingHave you had a chance to investigate further?
Forum: Plugins
In reply to: [Stop User Enumeration] Trailing Slash not redirectingI haven’t heard back from you. I hope my explanation covered it.
Forum: Plugins
In reply to: [Quick Event Manager] Display of categoriesDid this answer your query or are you looking for some thing else?
Forum: Plugins
In reply to: [Quick Event Manager] Deactivation & Freemius Opt-In Can’t Be DismissedHi I identified an issue in release 9.0.9 that has now been fixed.
Thanks you for letting me know.
Forum: Plugins
In reply to: [Display Eventbrite Events] Events Disappear After Saving/RefreshingIt is not something I have come across before.
Some guesses:
1. caching – are you running a caching plugin?
2. some theme or plugin conflictThe way I suggest you investigate is ( ideally on a test system – but if you can’t always backup live first )
1. turn on wordpress debugging ( see https://wordpress.org/support/article/debugging-in-wordpress/ ) and see if you are getting and errors logged
2. deactivate all plugins and set to a default theme like 2020 – see if the behaviour occurs, if not turn on plugins one by one ( process of elimination )Let me know if you find anything.
Forum: Plugins
In reply to: [Quick Event Manager] Error when duplicating eventHi as you haven’t come back and I can’t replicate this I will close this issue off.
Forum: Plugins
In reply to: [CiviCRM Member Sync] Using a Related Individual to create the userfyi I added one way sync of email changes from CiviCRM to WP to my custom code
https://github.com/alanef/civi-member-sync-custom/blob/master/civi-member-sync-custom.phpIt may be of use to other who know
Forum: Plugins
In reply to: [Quick Event Manager] Error when duplicating eventI have tested this extensively and cannot get the same issue as you.
I would suspect it is a theme or plugin conflict.
For this error to occur would mean that the global $post variable ( a WordPress internal ) has been not set or corrupted when used by the standard ‘the_content’ filter.
The code line has not changed between versions.
What version of PHP are you on btw?
Have you tried deactivating other plugins and going to the default theme ( in a test system )?