everfound
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: User profile display in front endThanks! Is there a way to allow html in the Profile biography section?
I’ve tried a few plugins such as Rich Text Biography, but that does not affect the users profile page at the front end. I’m using a plugin called “Profiler” to show users profile in the front end.Thanks!
Forum: Fixing WordPress
In reply to: Custom profile fieldoh, I forgot to create the directory. Got it…
Can I put the field not on the bottom of the Edit>Profile page but under the “about yourself” tab?
Appreciate the help…
Forum: Fixing WordPress
In reply to: Custom profile fieldhmmm did just that, has not done a change tho… :S
Forum: Fixing WordPress
In reply to: Custom profile fieldWould I just make a new php file and put it into the plugins folder?
..Sorry I’m a php noob.Forum: Fixing WordPress
In reply to: Custom profile fieldThanks for the reply!
Where would I enter this code?
I tried entering it into the my themes Functions file but that did not make a change…Forum: Plugins
In reply to: Css of “Your Profile” editor in users admin sectionGot it! Thanks a lot for the guidance!
Forum: Fixing WordPress
In reply to: How to make only certain catagories appearI think ive figured this out… I used a Plug in called Opt-in Front Page.
Works really well and very simple.Forum: Fixing WordPress
In reply to: Would this require multiple blogs?Hey, thanks for the help! However its not working 🙁
all that shows up on the page is “Title, permalink, and content code here”Here is my code… I’m no coder so it might be an obvious mistake…
<?php /* Template Name: Blog_t */ ?> <?php get_header(); ?> <!-- content ................................. --> <div id="content"> <?php query_posts('category_name=blog&showposts=10'); ?><?php while (have_posts()) : the_post(); ?> Title, permalink, and content code here <?php endwhile; ?> <?php comments_template(); ?> </div> <!-- /content --> <?php get_sidebar();?> <?php get_footer(); ?>Thanks a lot!