fullworks
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Paypal Payments] Optional Handling ChargeSo is your donation form a variable amount anyway?
I have had a good look and think and can’t see any viable way except asking, or custom coding.
Forum: Plugins
In reply to: [Quick Paypal Payments] Optional Handling ChargeAn interesting question I haven’t had before.
I took this plugin over some 8 months ago from the original author, and it has so many features so I don’t know them all. So I will take a look.
Forum: Plugins
In reply to: [Quick Event Manager] Invalid email adreddI just tested on my phone and no issues (Android)
As I mentioned the red message ‘Email not valid’ comes from the server, so it makes no difference what device is used.
Do you have the screenshots? You can share them via my email support at fullworks.net and I’ll see if I can see any clues,
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] Recommend you add +ip6: to your SPF recordI assume you are on WordPress business plan?
Basically to SPF record in yourDNS does not have your server IP
You can updated your SPF record to be
v=spf1 include:spf.titan.email a ~all
Adding the a will allow your server IP address a permitted sender.
Forum: Plugins
In reply to: [Quick Event Manager] Invalid email adreddThe email validation is done server side using
filter_var( $values['youremail'], FILTER_VALIDATE_EMAIL )A it is server side, it can not be an issue with your client’s browser ( e.g. browser, browser extensions )
As you managed to input correctly then the conclusion has to be that it is an input error either by the client mistyping e.g. a , instead of . or a fault with their keyboard e.g. @ mapped to #
Forum: Reviews
In reply to: [Display Eventbrite Events] Exceptional customer service!Thank you, I’m glad it got sorted so quickly, hope the website goes well.
Alan
Forum: Plugins
In reply to: [Display Eventbrite Events] Read more link added to descriptionAdded that filter to the knowledgebase https://fullworks.net/docs/display-eventbrite-events-in-wordpress/developer/filters/
Forum: Plugins
In reply to: [Display Eventbrite Events] Read more link added to descriptionI’ll add some documentation on that filter to the knowledge base
Forum: Plugins
In reply to: [Display Eventbrite Events] Read more link added to descriptionIt looks like your theme is filtering the excerpt and adding the extra readmore.
This plugin is written using templates, so you can build your own and use whatever data you can find.
It also has some filters.
A relevant filter to you is eawp_excerpt, which calls get_the_excerpt
Which can be filtered( by get_the_excerpt filter ) so you can get the unfiltered except like this
add_filter( ‘eawp_excerpt’, function($content) {
global $post;
return $post->post_excerpt;
}, 10,1);Or if you don’t want an excerpt you could use the full content
e.g.
add_filter( ‘eawp_excerpt’, function($content) {
return the_content();
}, 10,1);Of course if this all a bit too techy, then the pro version has shortcodes that cover nearly every combination ( over 40 options )
Forum: Plugins
In reply to: [Display Eventbrite Events] Read more link added to descriptionProbably best to share with me via email to support (at) fullworks.net
Forum: Plugins
In reply to: [Display Eventbrite Events] Read more link added to descriptionCan you provide a link to your website page rather than the Eventbrite page so I can understand what you are saying please?
Forum: Plugins
In reply to: [Quick Event Manager] Site crashed after last updateI have just released 9.0.21 for a different reason and included what might solve your problem. As mentioned, I can’t replicate your exact error so it is impossible for me to say definitively if it is fixed.
Forum: Plugins
In reply to: [Quick Event Manager] Site crashed after last updateYou can just replace the whole plugin folder. You won’t loose data.
Forum: Plugins
In reply to: [Quick Event Manager] Site crashed after last updateWhilst I can’t actually recreate the error, I believe I have a fix for it, would you like to pre-test the potential fix?
Forum: Plugins
In reply to: [Quick Event Manager] Site crashed after last updateYes this plugin requires a minimum of 5.6 – but really you should be on 7.3.
Php 5.4 was retired in September 2015 i.e. 6 years ago!!!!