joshuahlj
Forum Replies Created
-
Forum: Plugins
In reply to: Installed Role Manager, changed roles, now users cannot see published pagesGreat! any luck so far? =/
Forum: Plugins
In reply to: Installed Role Manager, changed roles, now users cannot see published pagesHelp anyone?
Forum: Plugins
In reply to: Installed Role Manager, changed roles, now users cannot see published pagesI tried, deleting the whole wordpress and reinstalling it without plugins. Still no luck =(
Forum: Plugins
In reply to: Role Manager giving problemsDesperate need for help! I just realised that only admins can see the pages. Not registered users as I originally assumed.
Forum: Plugins
In reply to: Role Manager giving problemsYes, sorry. It’s version is 2.2.3. Okay, thanks for your help. If you know of anybody that may be able to help, please direct him/her to this page. The author of the plugin is inactive. Thanks
Forum: Plugins
In reply to: Role Manager giving problemsNo, =( apparently according to the role manager site, role manager actually modifies the database. So it doesn’t go away. I’m so not installing plugins without reading more comments. But the site ratings was high and there was like 2000 comments.
If you need any information (codes etc) from my site. please let me know
Forum: Plugins
In reply to: Role Manager giving problemsSorry, I checked and even though it looks like it, there is no spacing there. So somebody please help me!!!
Forum: Plugins
In reply to: Role Manager giving problemsnow that i posted the code, i see the spaces around 689, but they aren’t showing in notepad
Forum: Plugins
In reply to: Role Manager giving problems(edited, there are no spaces around line 689)
function wp_widget_pages( $args ) {
extract( $args );
$options = get_option( ‘widget_pages’ );$title = empty( $options[‘title’] ) ? __( ‘Pages’ ) : apply_filters(‘widget_title’, $options[‘title’]);
$sortby = empty( $options[‘sortby’] ) ? ‘menu_order’ : $options[‘sortby’];
$exclude = empty( $options[‘exclude’] ) ? ” : $options[‘exclude’];if ( $sortby == ‘menu_order’ ) {
$sortby = ‘menu_order, post_title’;
}$out = wp_list_pages( array(‘title_li’ => ”, ‘echo’ => 0, ‘sort_column’ => $sortby, ‘exclude’ => $exclude) );
if ( !empty( $out ) ) {
?>
<?php echo $before_widget; ?>
<?php echo $before_title . $title . $after_title; ?>-
<?php echo $out; ?>
<?php echo $after_widget; ?>
<?php
}
}/**
* Display and process pages widget options form.
*
* @since 2.2.0
*/
function wp_widget_pages_control() {