JT
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Staff List] Display issuesHmm.
Well thanks for catching that. So, my work around accounts for that. I should see about fixing that elsewhere.
Thanks for your help!
Forum: Plugins
In reply to: [Simple Staff List] Display issuesThis is the template setup.
[staff_loop]
<img class=”staff-member-photo” src=”[staff-photo-url]” alt=”[staff-name] : [staff-position]”>
<div class=”staff-member-info-wrap”>
[staff-name-formatted]
[staff-position-formatted]
[staff-email-link]
[staff-bio-formatted]
</div>
[/staff_loop]Forum: Plugins
In reply to: [Simple Staff List] Display issuesKind of. The only way I could get it to work was to add this to the CSS.
h3.staff-member-name {
color: #1D1D1D;
font-size: 1.2em;
line-height: 1.0;
margin-top: 1.5em;
margin-bottom: 0em;
}h4.staff-member-position {
font-size: 1.1em;
line-height: 1.0;
margin-top: .5em;
margin-bottom: .5em;
color: #1D1D1D;
}Forum: Networking WordPress
In reply to: Why would WP automatically comment out page content?Yeah. WP was automatically commenting it out. It seems to be working now though which is really odd.
Forum: Networking WordPress
In reply to: Why would WP automatically comment out page content?Also I have tried the normal deactivate and switching to original theme, but still no luck.
Forum: Fixing WordPress
In reply to: Why would WP automatically comment out page content?Wouldn’t that also affect other pages? Also, I am using a multisite set up.
Forum: Plugins
In reply to: [Co-Authors Plus] CommasShoot! Thank you for catching that!
Forum: Plugins
In reply to: [Co-Authors Plus] CommasPerfect! Thanks again! There was an extra “,” still showing so I went in and removed the comma from the code below and it worked. Is that best way to do it?
name, name, , and name
$default_between_last = ( defined( ‘COAUTHORS_DEFAULT_BETWEEN_LAST’ ) ) ? COAUTHORS_DEFAULT_BETWEEN_LAST : __(‘ and ‘, ‘co-authors-plus’ );
After removing that comma it worked perfectly.
Forum: Plugins
In reply to: [Co-Authors Plus] CommasThanks for doing all that for me! I ended up getting odd results with the new code.
Using the vanilla code gives me the follwing:
<?php coauthors_posts_links(); ?>name, and name | November 12th, 2014 | 08:41 pm
name, name, and, , and name | November 7th, 2014 | 09:48 pmUsing the code with the comma removed gives me the following:
<?php coauthors_posts_links(‘, ‘,’and ‘); ?>name and name
name, nameand, and nameAs for the Yahoo Pipes I’ll open a new thread.
Forum: Plugins
In reply to: [Byline] How to display an "and" between the last or only two Byline termsThanks that works now!
Is there a way to populate byline field as you type as there are lot of authors on the blog I maintain. And how would I format the output?
Forum: Plugins
In reply to: [Byline] How to display an "and" between the last or only two Byline termsSorry, I meant to say “One thing I can’t get to work with this plugin” referring to the co-author plus.
I am now trying to figure out how to get the byline entries to link co authors archive post.
I saw this from an earlier post:
Flushing rewrite rules does the trick. I will add that to the next update to the plugin. You can force a rewrite-flush by visiting the Settings/Permalink page in your WP admin.
I am not sure how to do it. Any help would be greatly appreciated!
Forum: Plugins
In reply to: [Co-Authors Plus] CommasI’ve tried every which way to remove that darn comma with two authors, but no luck what so ever.
Current code in single.php
by <?php if ( function_exists( ‘coauthors_posts_links’ ) ) {
coauthors_posts_links(‘, ‘,’, and ‘);
} else {
the_author_posts_link();
} ?>I also tried changing this code, but no luck either.
$default_between_last = ( defined( ‘COAUTHORS_DEFAULT_BETWEEN_LAST’ ) ) ? COAUTHORS_DEFAULT_BETWEEN_LAST : __(‘, and ‘, ‘co-authors-plus’ );
Interestingly enough found this in the changelog. It seems there was a fix for this back in 2011.
2.5.3 (Aug. 14, 2011)
Bug fix: Removed extra comma when only two authors were listed. If you used the COAUTHORS_DEFAULT_BETWEEN_LAST constant, double-check what you haveForum: Plugins
In reply to: [Co-Authors Plus] Space between last two authorsI believe this is something related to one of my post on here.
Try putting this in the single.php file. It’ll require some tweaking, but it should get you started.
by <?php if ( function_exists( ‘coauthors_posts_links’ ) ) {
coauthors_posts_links(‘, ‘,’, and ‘);
} else {
the_author_posts_link();
} ?>Forum: Plugins
In reply to: [Co-Authors Plus] CommasAlso, is there a way to not have the comma populate if it’s just two authors, but still show properly if it’s three or more authors?
Keep current three authors comma: joe, mike, and sam
Current two authors: joe, and mike
Desired two authors: joe and mike
Thanks!
Forum: Plugins
In reply to: [Byline] How to display an "and" between the last or only two Byline termsWhat are the chances of making this so the additional authors that you add link to their archived post? Similar to the plugin below. One thing I can’t to work with that plugin is a proper use of commas.