Ben Huson
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Geo] WP GEO breaks WP 3.9 image editingPlease try downloading the latest development here and let me know if this fixes your issue – it appears to fix it for me.
ThanksThis should be fixed in version 0.8
Please post a new issue if you still experience this problem.
Forum: Plugins
In reply to: [Expire Users] Post Expiration Date on Front EndIn version 0.8 this functionality is built-in as the shortcode [expire_users_current_user_expire_date /]
Forum: Plugins
In reply to: [Expire Users] Can't get it to workThe actually expiry actions are run on an hourly cron job so a user will only expire at some point in the hour after the set expiry time.
I’m looking to provide a way to adjust this in future versions of the plugin.
Forum: Plugins
In reply to: [List Pages Shortcode] How to make excerpts italicizedThe original question has been resolved.
@chester diocese
Please post as a new issue if your separate issue is still not working.Forum: Plugins
In reply to: [WP Subtitle] Check if the_subtitle is emptySomething along these lines:
<?php $subtitle = the_subtitle( '', '', false ); if ( ! empty( $subtitle ) ) { echo $subtitle; } else { the_title(); } ?>Forum: Plugins
In reply to: [WP Subtitle] Displays front-end but not back-endAre you still experiencing this issue?
Forum: Plugins
In reply to: [WP Geo] Map keeps centering in England ?Did the using the most recent version fix the issue?
Forum: Plugins
In reply to: [WP Geo] Compatibility of shortcode mashup with The Events Calendar plugin ?I think the events are stored as a custom post type so you would need to add this to the shortcode:
[wpgeo_mashup post_type="tribe_events" /]Forum: Plugins
In reply to: [WP Geo] Compatibility of shortcode mashup with The Events Calendar plugin ?I think the events are stored as a custom post type so you would need to add this to the shortcode:
[wpgeo_mashup post_type="tribe_events" /]The current filters in place only allow you to set the expiry time based on your web site’s server time + a specific amount of time, but this doesn’t take into account the user’s timezone.
This means that if set to any duration less than 12 hours and the user is -12 hours behind your server time, they will be logged out immediately.
I’m currently looking into refactoring the plugin to prevent this.
It is not currently possible to do without writing some PHP code to do it – although it is on my list of possible future enhancements.
If you a familiar with writing code for WordPress you could filter the option ‘password_protected_status’ and return a value of false on the specific pages you want to be accessible.
I would suggest perhaps removing the Password Protected plugin via FTP and ensure your site is working and no files are corrupted and your database is OK.
Then reinstall the Password Protected plugin and see if you still have the issue.
Are you using any caching plugins?
What are you seeing, just a white page?
If you have completed 100% of the translation then I’ll ensure it’s added to the next upgrade of the plugin.
Many thanks
Ben