davereed
Forum Replies Created
-
Thanks Sybre, this is helping.
It works correctly for the title tag. However, when you’re on the author archive page, it’s replacing the names of other authors on the posts with the guest author name. The links to the other authors are correct, but their name is displaying incorrectly.
Example: It should be outputting this where Author 3 is the guest author registered through the Co-Author’s Plus plugin:
By Author 1, Author 2 and Author 3
Instead it’s outputting this:
By Author 3, Author 3 and Author 3
The links to the different authors are correct, but their name is displayed incorrectly.
Thanks!
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Paginate commentsHi Alessandro, yes, please share that snippet. Do you have a timeline for when that might be added?
Thanks again!
That seemed to work. Thanks again for the great plugin!
Yeah, that’s what I tried. I played around with it some and can’t get it to work.
The theme I’m working with has this custom callback:
function lenscap_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class( 'clearfix' ); ?> id="li-comment-<?php comment_ID() ?>"> <div class="comment-block" id="comment-<?php comment_ID(); ?>"> <div class="comment-wrap"> <?php echo get_avatar( $comment->comment_author_email, 75 ); ?> <div class="comment-info"> <cite class="comment-cite"> <?php comment_author_link() ?> </cite> <a class="comment-time" href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf( esc_html__( '%1$s at %2$s', 'lenscap' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( esc_html__( '(Edit)', 'lenscap' ), ' ', '' ); ?> </div> <div class="comment-content"> <?php comment_text() ?> <p class="reply"> <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ) ?> </p> </div> <?php if ( $comment->comment_approved == '0' ) : ?> <em class="comment-awaiting-moderation"><?php esc_html_e( 'Your comment is awaiting moderation.', 'lenscap' ) ?></em> <?php endif; ?> </div> </div> <?php }
Thank you @jcdesign! I’ve been looking for a fix for hours. I hope the plugin authors get this corrected soon.
Forum: Themes and Templates
In reply to: [Goran] Goran Headers, Featured Images & NavigationHey Kathryn,
I’m missing the drop down arrows and sub men items as well here:
When I’m logged in to the site they appear. I’m baffled. Tried everything. I should note this is running on a WP network enabled installation.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Can I map a subdomain?Ron, can you describe the DNS setup for this? This is exactly what I am trying to do right now too.
I created an A Name record for “test.domain2.org” and then added that in the domain mapping field for “blog2.domain1.org”. I am seeing the default web page my webhost (Site5) displays when stuff isn’t configured correctly.
The support staff says they are not clear on what the issue is. It should be working. Any ideas?
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] SMTP with Amazon SESGot it fixed. Make sure you ask your host to open access to those ports. This works great and is now super cheap. Perfect for nonprofits.
Forum: Plugins
In reply to: Upcoming.org plugin problemI haven’t found the plugin, but I am using the text widget to insert the upcoming.org badge code and it works just fine. Alternatively you can use the RSS widget to pull from your upcoming.org account feed.
Forum: Fixing WordPress
In reply to: Widgetizing Theme: Multiple sidebars?I’m having a similar problem and I’m stuck on the solution. I was working on widgetizing a theme using a separate sidebar file while the original un-widgetized sidebar was still active. I had the thing set up exactly as I wanted when I realized theat I might want to try setting up different widgetized sidebars for the category and the pages, so I used the code from Automattic for setting up multiple widgetized sidebars:
use register_sidebars(n) where n is the number of sidebars. Then place the appropriate number in the dynamic_sidebar() function, starting with 1.
As soon as I uploaded the changed functions.php file, I got this error in the admin area and on the public side:
Parse error: parse error, unexpected T_STRING in /home/icahd2/public_html/wp-content/themes/audyasha/functions.php on line 1
So I removed the changed code and uploaded the (reverted to original) files and I still get the same error even on pages where the widgetized sidebar isn’t called. So I tried some of the suggestions here in this thread and it’s a no-go.
What in god’s name did I do? I had it setup just fine and then I had to go and experiment with it some more.
Any help is greatly appreciated.
dave
Forum: Your WordPress
In reply to: PopSacrifice.comOutstanding work!
Forum: Themes and Templates
In reply to: Need help with a conditional tag and categoriesCool. Thanks!
Forum: Themes and Templates
In reply to: Need help with a conditional tag and categoriesKafkaesqui: I could use that as a plugin!
Forum: Fixing WordPress
In reply to: posts_nav_link with permalink structure failsI have a similar problem. The post_nav_link works fine on the category and archive pages. My problem is on the main page. When you click on the “Previous entries” link it goes to /page/2/ but loads the same entries as page 1. This continues on if you keep clicking the “previous entries” link.
I’m running 1.5.2 with the Kubrick theme. I’ve played with the CSS, but the Kubrick files are basically untouched. Anyone had this happen?