manakuke
Forum Replies Created
-
Forum: Plugins
In reply to: [Authorizer] Access List Tab too slowSounds good. We re also running an old version of PHP that should be upgraded when we update our hosting. Thanks again for a great plugin!
Forum: Plugins
In reply to: [Authorizer] Access List Tab too slowGlad to see progress on this. Crash my sites with the update. We are running an older version of WordPress and plan to update this semester. Had a few legacy sites that prevented us from updating until recently. Would a conflict with an older version of WordPress be the cause?
We’re running Authorizer version 2.6.7 and WordPress 4.5.3
I believe we had been running a more recent version of Authorizer before the update, but 2.6.7 was what I had saved as a backup.
I sinced downloaded and re-installed Authorizer version 2.6.23 and it is working for me.
Forum: Plugins
In reply to: [Authorizer] Redirect After successful AuthenticationWe’ve also used this:
https://www.mysite.com/wp-login.php?redirect_to=%20https://www.mysite.com/somepage/
- This reply was modified 7 years, 4 months ago by manakuke.
Forum: Plugins
In reply to: [Redirection] Files and redirectionI am having a similar issues. The old PDF file:
https://www.lasalle.edu/wp-content/themes/financialaid/pdfs/christianbrothers/CBS_app.pdfis supposed to re-direct to:
https://www.lasalle.edu/financialaid/scholarships/christian-brothers-scholarship/christian-brothers-scholarship-application/I am running a multisite and the origianl PDF file was included in the theme, which I’ve since deleted from the server. Redirection is running on the root, not the sub-site.
Thoughts?
Forum: Plugins
In reply to: [The Events Calendar] Export Calendar Limited to 30Is there a way, besides just setting a really high number, to set the argument to pull all the posts?
For other people’s reference, I added this to the theme’s functions.php file (in this example, it changed the default 30 to 250 entries):
add_filter( 'tribe_ical_feed_posts_per_page', 'my_added_feed_posts_per_page' ); function my_added_feed_posts_per_page() { return 250; }
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Multiple Category Avatars/ImagesOk, thanks for your response. I am hoping to show all three, like the three colored dots that appear. Wanted to use symbols (circle, square, and triangle) so that people with color blindness could distinguish the different categories for those events that fall into more than one. I will submit as another idea.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Multiple Category Avatars/ImagesMainly, I’m trying to do this to make our site more ADA and accessible to views with different eye color disorders. Would like to use symbols for each category so that those with color blindness can distinguish. This is an ethical and legal issue for us. We’re trying to find creative ways to make sure we’ve exhausted all possible solutions.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Multiple Category Avatars/ImagesYes, but I have more than one category. We’re a university, so we have categories for our academic calendar. Day, Evening, and Graduate. We use the calendar to display class start dates, class registration dates, etc. For example, Thanksgiving holiday break applies to all (Day, Evening, and Graduate), whereas our MBA Online Course Registration only applies to Graduate. So, for Thanksgiving, I would want all three category images to show up, but it’s only showing one. I hope that clarifies.
I forgot to include the site: https://www.lasalle.edu/academic-calendar-staging/?ai1ec=action~month
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Agenda Month to Month ViewStrange, the calendar example I posted uses classes with “ai1ec” tags all over it. It was also mentioned in this forum post from a couple of years ago: https://time.ly/forums/topic/show-date-year-for-each-new-month-in-agenda-view/.
I’ve tried creating a new agenda template, but I can’t figure out how to pull out month, then list all the dates for the month. I tried pulling in some code from the month template, but that didn’t work.
Forum: Plugins
In reply to: [Redirection] Redirection of .pdf links not workingI’m having the same problem, but deleting the old PDF didn’t work. We’re running multisite with it network activated.
Forum: Plugins
In reply to: [WPSiteSync for Content] Only Allow Administrators to Push to LiveI found a work around, but it is theme dependent via the functionsp.php file.
//Remove Snyc Button Meta Box widget on Admin for non-admins function remove_plugin_metaboxes(){ // Only run if the user is an Author or lower. if ( ! current_user_can( 'manage_options' ) ) { remove_meta_box( 'spectrom_sync', 'post', 'side' ); remove_meta_box( 'spectrom_sync', 'page', 'side' ); } } add_action( 'do_meta_boxes', 'remove_plugin_metaboxes' );
Would prefer a way to control via the plugin settings or via managing roles, not the theme.
Forum: Plugins
In reply to: [Authorizer] Importing Users Into Access ListsI use this plugin:
https://www.ads-software.com/plugins/import-users-from-csv-with-meta/ to import users, but I don’t have a way to allow the imported folks to be considered approved by Authorizer before they try logging in (and get an error message before approving them). Any progress on being able to bulk approve/import to approve?Forum: Plugins
In reply to: [Frontend Checklist] Custom Role AccessIs there a reasonable way to update the plugin to avoid a conflict with this WordPress function? There are use case scenarios where it would be helpful to be able to use without conflict with the plugin.
Forum: Plugins
In reply to: [Frontend Checklist] Custom Role AccessOk so I figured out that my default subscriber role and any custom roles were not working. I had a script in the functions.php file that was designed to block access to the dashboard for non-admins as well as remove the admin bar. Seems like the
wp_redirect(home_url());
function prevents the checklist ajax code from working. Blocks both the saving and retrieval of checklist status.- This reply was modified 8 years, 2 months ago by manakuke.
Forum: Plugins
In reply to: [Cleverness To-Do List] Duplicate Lists to All UsersIt feels like it is acting like the Group List option. I have the List View set to Master List, I have the User Permissions View To-Do List & Complete To-do Item Capability set to Read (all the rest are Manage Options). The two users are of differing types, would that cause a conflict? One is an admin, the other a subscriber. The admin user can check off items, and they update. The subscriber checks them off, but it doesn’t record.