bustherh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts display in reverse order. Tried Everything to fix!Thanks so much for the quick reply.
I had tried this before and it did nothing at all, I was so confused because I was sure it either had to be a template or a plugin thing.
I decided to try it again and it turned out to be a plugin.
I am using a ratings plugin called “wp-review site”, when I deactivated it everything worked just fine, but it did not make sense since I am using this plugin on the site that displays the posts in the correct order.
So I kept deactivating and then activating it over and over again just out of pure frustration, then all of a sudden it worked. There seems to be no reasonable explanation for this at all. Why would it just all of a sudden start displaying the posts correctly just because I deactivated and then re-activated the plugin several times. Makes no sense at all.
But I guess the the important thing is that my site is now displaying the posts in the correct order.
Has anyone else ever experienced anything like this before with a plugin??Forum: Fixing WordPress
In reply to: Next/Previous Button – Problems@ luca75
Thanks so much for posting your solution I am using the Arthemia theme on one of my sites and I could not figure out why the pagination did not work.
A had given up and decided to use the default permalinks which made the pagination work but it is better for the search engines if you can use something like month and name style permalink structure.
This is such an easy solution, I don’t know why I did not see it before.Thanks again!
Forum: Plugins
In reply to: How to display all posts on one page?This will show all posts I just can’t figure out how to get the pagination to work. If you set the posts_per_page=10 parameter it will only show 10 posts and the next and previous links will display the same 10 posts.
<?php query_posts('posts_per_page=10'); ?> <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php endwhile; ?> <?php endif; ?>If anyone knows how to get the pagination to work with this I would really appreciate it!!
Forum: Themes and Templates
In reply to: Hiding image if custom field emptyNot sure if this will help but this is what I use on author.php to show custom fields. If the field is empty it won’t show anything.
<?php if (!$curauth->phone_number == '') { ?> Phone Number: <br /> <?php echo $curauth->phone_number; ?> <br /><br /> <?php } ?>Forum: Themes and Templates
In reply to: author.php will not displayI am so tired. I am a huge dumbass. It would help if the author.php file was in the right folder.
Forum: Themes and Templates
In reply to: different content for different pages?if(!is_paged())Forum: Fixing WordPress
In reply to: Show subcategories only for selected category<?php wp_list_categories('orderby=id&show_count=1 &use_desc_for_title=0&child_of='.$cat); ?>Forum: Plugins
In reply to: Looking for a sidebar scroll boxJust stumbled upon this:
http://www.uang.persusi.org/2008/12/18/moving-text-marquee-at-blog-tutorial/
I haven’t tried it yet but it looks like the perfect answer to me.
I guess it turns out that the text widget is good enough.Forum: Plugins
In reply to: Looking for a sidebar scroll boxI have been looking for this same thing, The text box widget isn’t quite good enough. I need to be able to grab specific posts and place them in the sidebar in a vertical scrolling box.
Forum: Fixing WordPress
In reply to: Can’t click edit post linksJust to clarify,
I am using wordpress mu. in the screenshot I am logged in as user “test2”. as you can see I cannot edit my own posts. I really need some help with this because right now it is the only thing preventing me from moving forward.
I tried re-installing wordpress but I get the same thing. I have used wordpress many times and I have never seen this issue before.
The only answer that I have gotten so far is: “you can’t edit other users posts” Obviously I am trying to edit my own posts.When I log in as admin everything is fine except when I try to edit any other users posts I get the same thing, I can only edit the last post.
Forum: Fixing WordPress
In reply to: Permalink not updating .htaccess “no input file specified’I had this problem when I added the line to my .htaccess:
AddHandler application/x-httpd-php5 .php
to get another program to work.When I removed the line the problem went away. Maybe it is something with PHP 5?
Forum: Requests and Feedback
In reply to: What do I need for my video blog?try this plugin :
You Tube pluginForum: Requests and Feedback
In reply to: Display posts on admin pageI knew someone would ask that.
Here is what I want to do.
I use wordpress as a CMS and when I build a site for someone I like to provide written documentation so the client can reference it when they update or make other changes with their site.
We normally provide printed documentation but I would like to tie the documentation into the wordpress admin instead.
The easy way to do it would be to create a page that displays the equivalent of the printed version in HTML.I thought it would be better if this documentation could be split into categories and posts so it could be part of wordpress and searchable.
So I need a page within the /wp-admin/ folder that displays the posts within and under the documentation category. none of these posts would display on the website anywhere, only in the wp-admin area.