oste15
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Does the_content() adds extra <p> & <br> to HTML comments?I have the same problem.
When adding <span></span>
It outputs
<p>
<span></span>
</p>Forum: Plugins
In reply to: Allow contributor to upload mediaI tried this little tutorial and it did NOT work.
Thanks for the effort, I couldent find anything on this either.
I am just trying to get it so authors can upload images and other media. I am surprised this hasent been covered yet.
Forum: Fixing WordPress
In reply to: Hide Page Template for anyone other than adminWell the search continued and I found this wonderful post https://www.cogniview.com/convert-pdf-to-excel/post/customize-your-wordpress-admin-interface/
Which mentions two plugins that I am currently investigating “cloak” and “flutter”. It looks like one of these should do the trick.
Forum: Fixing WordPress
In reply to: Create authors page with gravatar using the loopHey, thanks that did the trick.
This is the tutorial from Justin Tadlock that I used to create the browse by authors page.
https://justintadlock.com/archives/2008/06/09/doing-more-with-gravatars-authors-template-page
Forum: Fixing WordPress
In reply to: Add a member counterAlright disregard my last post. After a little research on concatenation it is clear we need to do this
<?php $user_count = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->users;”);?>
<p><?php echo “There are currently ” . $user_count . ” members”; ?></p>A few more self teachings like that and I might be able to talk more like the second poster on this thread, and less like the poster one up.
Forum: Fixing WordPress
In reply to: Add a member counteractually I used this code:
<?php
$user_count = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->users;”);?>
<p><?php echo ‘user count is ‘ . $user_count; ?></p>which works fine, however when you try to concatenate the word members on the end it gives an error for an undefined .
I wonder if it is possible to add a word to the end.
Forum: Fixing WordPress
In reply to: Add a member counterThat does the trick. I must not have searched hard enough.
Thanks.
Forum: Fixing WordPress
In reply to: Add a member counterUnfortunately that really doesnt help me as I am not a programmer. Maybe you can break that down into lamens terms for me.
Thanks, I appreciate the help.
Forum: Themes and Templates
In reply to: Author Profile Page Needs Some Sort of Width AdjustmentWhat do you mean by, the html cannot be validated?
Sorry I am rather new to this.Forum: Themes and Templates
In reply to: Author Template- posts do not link correctlyok I got that to work, Thanks for the help.
One other small issue. CAn you show me how to fix the profile text so that it doesnt get so close to the sidebar.
I am guessing I need to make that a div but I am not sure how to do that.
Again I am new to this, so any help is greatly appreciated.