Samantha Miller
Forum Replies Created
-
Forum: Reviews
In reply to: [Redirection] 2.3.6 broken in WP 3.3See the Developers tab for a list of old versions:
https://www.ads-software.com/plugins/redirection/developers/
Forum: Plugins
In reply to: [Redirection] Import Not working with CSV fileWhen you get a blank page, are you still getting the WordPress screen but with no content in the middle? Or are you getting a plain white screen with nothing on?
If the answer is the first one, try the solution here, it worked for me:
https://www.ads-software.com/support/topic/import-function-is-broken-in-redirectionZainB, to find out how the CSV should be formatted, add a couple of redirects manually then export them to CSV. Use this as a template for your upload.
Forum: Plugins
In reply to: [Redirection] Import function is broken in RedirectionThank you very much for this pembo13, we were having the same issue and this fixed it.
For other people who might find this thread, the
file_io.php
file is in/models/
andredirection.php
is in the root.I wonder why the plugin has suddenly stopped working? I have been using it for years and never had any issues.
Forum: Plugins
In reply to: [Live Drafts] how to add custom post types to this pluginThanks Megabulk2, came here looking for a custom post types solution.
Any chance of getting this built into core?
Forum: Plugins
In reply to: [Gecka Submenu] WarningThank you very much Marco, this solves it for me.
Forum: Plugins
In reply to: [More Privacy Options] Custom login/register pages?Thanks for your reply David. I will test over the weekend and get back to you.
Samantha
Forum: Plugins
In reply to: [More Privacy Options] Custom login/register pages?I ended up reverting back to using Private BuddyPress instead of this plugin, then doing a check to see if the current user is a member of the current site and logging them out if they’re not.
function log_out_non_currentsite_users() { global $current_user; get_currentuserinfo(); if (is_user_logged_in() && !is_user_member_of_blog($current_user->ID)) { wp_logout(); } } add_action('init', 'log_out_non_currentsite_users');
This works for my situation as the user on the main site is a generic user that many people will access, while the private area has a different user for each person.
This doesn’t seem like as much of a solid solution, but the does the trick. Any comments welcome.
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Duplicate Fields LimitYou could try limiting the output in you PHP?
// Output five items $i = 1 foreach ($duplicateField as $field) { if ($i <= 5) { // output } $i++; }
Not tested but should work
Forum: Plugins
In reply to: [WP-Activity] [Plugin: WP-Activity] Roles and CapabilitiesAlso looking for the same as carlosbronze, tried Role Scoper and Members.
Forum: Plugins
In reply to: WP-Activity – Display the plugin to non-admin user groupAlso looking for this, thanks.
Forum: Plugins
In reply to: [Search Unleashed] Plugin Activation FailsThe download is broken. You can get the plugin from here and install manually:
https://www.ads-software.com/extend/plugins/search-unleashed/developers/
Forum: Plugins
In reply to: [Search Unleashed] [Plugin: Search Unleashed] download is broken / emptyThanks nKM94
Forum: Plugins
In reply to: [Twitter for Wordpress] No public Twitter messagesBrilliant, worked perfectly, thank you.
This is why we need an abandoned plugin adoption program!
Forum: Plugins
In reply to: [Plugin: Magic Fields] HTML / Visual Editor not working. At all.It appears the visual editor will only appear for the custom fields if the main content editor is also on the visual tab. Try selecting the visual tab then refreshing the page and the tabs should be working as intended.
Forum: Plugins
In reply to: [Plugin: Magic Fields] HTML / Visual Editor not working. At all.Also having this issue. Will post back if I find a solution.