venzie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upload Media File Button Not WorkingSame problem. Using firefox. I’m on a mac and theres no way to check if it works in IE.
Forum: Fixing WordPress
In reply to: 2.7 Image Upload Not WorkingWhen I click any of the icons in the Add New Post panel, nothing happens. No pop up, no upload interface, nothing. Browser just kinda displays the timer for a second then and does nothing. How do I fix this? I don’t understand how this happened.
When in the Media upload tab, only Browser Upload works. But its such a hassle to upload via that tab then copy paste links to your post.
Forum: Fixing WordPress
In reply to: edit / change author attribution on many posts at once?Yes, 2.7 has mass edit options. But I cant seem to find how to change authors. There’s an option to change category, tags, status, but not authors. Or am I just missing something?
Forum: Fixing WordPress
In reply to: Problem Creating an Archive IndexThanks! I used the plugin and it worked ok. However, there seems to be difficulty in customizing the appearance of the plugin in order to look like how it looked like above.
For instance, the “Page 1 of 4” text in the example was at the end, instead of being at the beginning. There seems so be no option to customize it.
End result here: http://www.lfs.ph/articles/
Forum: Themes and Templates
In reply to: Creating an Archive IndexGot an answer here: http://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/
via here: http://wordpress.org/support/topic/169554?replies=5
So I now got to have the list plus the page navigation.
One last thing, I need the page numbers in between the previous and more links.
For instance: <<Previous 1 2 3 4 5 6 More>>
Forum: Themes and Templates
In reply to: Custom Select Posts and Pagination – ProblemThanks mhmtozek, the article worked for me. However, is there a way to show the pages in between the “<<previous” and “more>>” tags?
Much like what is done here: http://www.inquirer.net/specialfeatures/nbndeal/archive.php ?
Forum: Themes and Templates
In reply to: Creating an Archive IndexThanks for the reply Kozine.
My setting is set to display 10 posts. However it displays only one post (the current page im in). I think it is because the page is not the home page, (I am not using it as a static front page). So the loop will naturally display the current page.
What I did was use query posts to display the posts. It worked fine.
However, I still do not have “next” and “previous” buttons. Like what is displayed here: http://www.inquirer.net/specialfeatures/nbndeal/archive.php
Does anyone know how to put such within a query?
This is what I did:
<?php query_posts('showposts=15'); ?> <?php $posts = get_posts('numberposts=15'); foreach ($posts as $post) : start_wp(); ?> <li><?php the_time('m/j/y') ?> : <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?>This showed the past 15 posts.
Forum: Fixing WordPress
In reply to: Problem Creating an Archive IndexOk. So what I did was use query posts.
It worked well and displayed the post. But I still have to put a “next” and “previous” set buttons. Is there a way?