nathanegraham
Forum Replies Created
-
Forum: Plugins
In reply to: [Rapid Twitter Widget] Widget stopped workingmulti-site support would be wonderful. Thanks for your work on this.
Forum: Plugins
In reply to: [Custom Dashboard Widget] [Plugin: Custom Dashboard Widget] PHP Support+1 on PHP
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Missing Group Extras admin for extend your groupsDone :).
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Missing Group Extras admin for extend your groupsJust tried the update. Well done. Thanks!
NG
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Missing Group Extras admin for extend your groupsWonderful! Thanks. I’m looking forward to the Pro release. When is that happening?
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Missing Group Extras admin for extend your groupsI’ve looked through every setting possible. I’m using multisite. Here’s what buddypress settings look like my network admin:
I’d like to have the options available here:
https://www.ads-software.com/plugins/buddypress-groups-extras/screenshot-1.png?r=723284
Can’t find them though. Maybe I should update to 1.7.2 or 3.5.1 instead of 1.7.1 and 3.5?
Thanks
Forum: Plugins
In reply to: [WPMU Ldap Authentication] New accounts missing trailing slashOne way to solve this would be to add ‘$base = ‘/’;’ to your wp-config file like this
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
$base = ‘/’;Great work on these additions, Fee.
Forum: Plugins
In reply to: [Multisite Plugin Manager] 2 notices on 3.5Thanks, Christian. I also went in and fixed these two myself. Great plugin. I guess he’s waiting for more substantial changes before updating the plugin.
NG
Forum: Plugins
In reply to: [Bowe Codes] Receiving Undefined index notice on line 63?I figured it out. Here’s what you have in /bowes-codes.php on line 63:
if($_GET[‘page’]==”bcodes-admin”) wp_enqueue_style(‘bowe-codes-css’, BOWE_CODES_PLUGIN_URL.’/css/admin.css’);
To get rid of the Notice: Undefined index error, change line 63 to this:
if( isset($_GET[‘page’]) && $_GET[‘page’]==”bcodes-admin”) wp_enqueue_style(‘bowe-codes-css’, BOWE_CODES_PLUGIN_URL.’/css/admin.css’);
Let me know if I’ve made any errors here but I think this could be added to the next plugin update.
Thanks,
NGForum: Plugins
In reply to: [WPMU Ldap Authentication] User Cannot Login After Account CreationIs this true for all users? And are you using BuddyPress?
Forum: Plugins
In reply to: [WPMU Ldap Authentication] Minor fixesI would love to see the changes you’re making. Can you post a link to them?
Forum: Plugins
In reply to: [WPMU Ldap Authentication] Can't Seem to Get WPMU Ldap WorkingI’m not sure if you’ve solved this but you should see LDAP Options in Settings in your Network Admin dashboard. I’m on 3.4.2 and it’s working fine for me. Remember that for most large organizations and universities, you do have to enter the Search User DN and Search User Password credentials for authentication. It does take quite a bit of trail and error though.
Forum: Plugins
In reply to: [OptionTree] Adding slides as defaultThanks for your help! This almost worked. It definitely gives me default sliders in theme options, which looks like this
but the sliders don’t actually display correctly on the front page of the theme. Perhaps this just isn’t possible.
Here’s what results when I add the code you’ve linked:
Here’s what it should look like:
Thanks again for looking into this. Ideally when the theme is activated a slider image will appear in the theme by default. Since I’ve changed background images, added static images, text, etc., to appear as default through theme-options.php, it seems like I should be able to add the list-item slider for the front page by default. This would give users a default example of what to enter while also keeping a consistent look to the front page from semester to semester.
Thanks!
NG