Kate
Forum Replies Created
-
Hey Lee,
Thanks so much for the reply. I understand it’s not “out of the box”… so I’m trying to figure out the best way to do it 🙂 There’s a couple reasons we were staying away from a plugin, the first of which is the products aren’t actually being sold. But, I may end up going that route.Thanks!
KateForum: Plugins
In reply to: [Plugin: BuddyPress Album ] Upload File Size Error@mercime: Thanks for the reply. I know about the PHP method, but forgot to check the limit in the dashboard. Doh! 😉 I was focused more on the plugin settings, didn’t even think about that.
But, I’m still not sure about the error message. It’s returning an empty string as I mentioned. I appreciate the error message for the user, but would like to let them know what the max size is.
Thanks!
Forum: Plugins
In reply to: URGENT: Wishlist Member PluginHey – Thanks for the feedback. I actually heard back from the developers of the plugin after all. I guess they had changed their API, and they were nice enough to send me a code snippet that helped.
Forum: Fixing WordPress
In reply to: Thumbnails Only Rendering in FirefoxBump… Anyone? Thanks!
Forum: Themes and Templates
In reply to: Removing the “No Comments and date info” from pagesNo problem. Glad it worked! 🙂
Forum: Themes and Templates
In reply to: Removing Author@freeriders Thanks for catching the typo 😉
@tracyfh Sorry for the delayed response. Doesn’t look like you were able to get it figured out yet. A couple of things: First, single.php would only effect a single post. It wouldn’t change the listings on the news and blog pages. About those: It’s also possible there’s a template file or another file over-riding what you’re declaring (also in single.php). By default index.php is the sort of “catch all” file. Check out this post on Template Hierarchy:
http://codex.wordpress.org/Template_HierarchyHope that makes sense. I’m in a bit of a rush right now, but I’ll check back to see if you’ve gotten it yet.
Forum: Themes and Templates
In reply to: Customize P2 theme to display teasers on homepageGlad you got it working! 🙂
Awesome! Glad it worked for you.
Forum: Themes and Templates
In reply to: Removing the “No Comments and date info” from pagesYou’d have to open your page.php file and remove the PHP code inside of the div with the classes of “links” and “right”. The code looks like this:
<?php if($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php the_date() ?> | <?php the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); ?> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'constructor'), __('1 Comment »', 'constructor'), __('% Comments »', 'constructor'), '', __('Comments Closed', 'constructor') ); ?>Hope that helps.
A link to the site itself would probably be helpful. But, without taking a look at the CSS, I’d say you’d be looking for a “display:block;” set on the anchor tags. That’s assuming there’s no other markup wrapped around the anchor tags which could obviously also force it to a new line.
Forum: Themes and Templates
In reply to: Customize P2 theme to display teasers on homepageAs you may know, the standard for displaying only an excerpt in WordPress is:
<?php the_excerpt(); ?>That’s used in place of:
<?php the_content(); ?>However, that’s a somewhat limited route. Personally, when I need to do more with the excerpt, I like to use the Advanced Excerpt plugin:
http://wordpress.org/extend/plugins/advanced-excerpt/I’ve always had good results with it.
Forum: Themes and Templates
In reply to: Removing AuthorHey tracyfh!
If I understand you correctly, you want the author of the post to only display in the blog section, not in the news section. Correct? If so, then: Is your news page using a different file/template than the blog page? If it is, then simply removing:
by <?php the_author() ?>
will work. But, if it’s using the same template, then you would just need a simple if statement to the effect of:<php if(is_category('news') || in_category('wellco-news')){ /*Do nothing*/ }else{ echo " by" . the_author(); } ?>Make sense?
Forum: Fixing WordPress
In reply to: Display All Custom Fields for a Specific CategoryHey Michael,
Thanks for the reply. I ended up going a different route. I’m using TDO Mini Forms and ended up dynamically setting the tag for the submitted post based on the value of the custom field. Then I’m just using the category and tags for sorting.Thanks again!
KateForum: Fixing WordPress
In reply to: Post Thumbnails – Ability to Choose More than One Thumbnail?Hey esmi,
Thanks for the reply. Sorry I’m just seeing it now. I actually found out it doesn’t support it once I dug in and started working with it. 🙂 But, I think it would definitely be a nice feature to have for future releases.Thanks again!
KateForum: Fixing WordPress
In reply to: How to display normal text alongside Post TitleA padding-left of 2px on .excerpttitle will do the trick:
padding-left:2px;Keep in mind that inline elements can’t be styled exactly the same as block elements. Your other alternative is to have .latestpost and .excerpttitle floated, with appropriate widths set. For example:
.excerpttitle{float:left;width:200px;padding-left:2px;} .latestpost{float:left;width:200px;}/*Or widths could be a percentage...*/But, depending on what the rest of your CSS looks like, and where else you use floats, floats can be kind of tricky. So, the padding-left should be a safe bet. Hope that helps.