devotee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category heading to display only if there are posts in the categoryHmm does this really lead me in the right direction? I have no problem displaying the posts I want to and from the category I want to.
My page looks like this:
Single post
__________
Category X title
Thumbnails from category X
——
Category Y title
Thumbnails from category YI cant have the title on Category X & Y in the loop because then it gets repeated for every post doesnt it?
Forum: Your WordPress
In reply to: HELP ! Does My Website Look Professional ?As others have said there is to much information. Also I would:
Add more whitespace between sections and more padding for text and headlines
Make headlines smaller
Make the text in on the frontpage not justified but ragged right, justification makes the text unpleasent to the eye imo, to much space between words.Just my five cents
Forum: Themes and Templates
In reply to: Parse Error! Need Help.Did you forget some ” or ; somewhere?
Use an ftp program and a text/html-editor to gain access to custom_functions.php. Then use pastebin and show us the code in your custom_functions.php file.
Forum: Fixing WordPress
In reply to: Query posts using same taxonomy termTry this:
Anyone?
Forum: Fixing WordPress
In reply to: Displaying posts from the same category – cant set how manyThank you! That did the trick π
Forum: Fixing WordPress
In reply to: Pagination loads index.php for category-x.phpYes of course, sorry I forgot π
Forum: Fixing WordPress
In reply to: Pagination loads index.php for category-x.phpThank you so very much! It works just as I want it!
Forum: Fixing WordPress
In reply to: Pagination loads index.php for category-x.phpMaybe thats the error, my code doesnt look exactly like that anyway. This is what my code looks like :
http://pastebin.com/7DCRgLqTCould you be so kind and tell me how I should write it instead? IΒ΄m a beginner and not sure where I should fit in that piece of code you wrote.
Thanks!
—
I got this to almost work as I like! The pagination works now with this code:
<?php if (have_posts()) : ?>
<?php $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; query_posts(“cat=45&paged=$paged”); ?>
<?php while (have_posts()) : the_post(); ?>Thanks a lot for helping me with that. But one question; this code paginates my page according to the number of posts set in the backend. But If i want to specify my own number of posts in this query, where and what do I type?
Thanks!
Forum: Fixing WordPress
In reply to: How to add search filter by custom fields?Oh, in that case this might not be the plugin for you, since custom fields are not taxonomies really. Maybe this one? Havent tried it.
http://wordpress.org/extend/plugins/wp-custom-fields-search/
Forum: Plugins
In reply to: [Meteor Slides] Cant override default css, whats wrong?!Thanks! I was not aware of that, itΒ΄s working now!
Forum: Fixing WordPress
In reply to: How to add search filter by custom fields?Forum: Fixing WordPress
In reply to: Sort post alphabeticaly, how?Actually, I just understood how to do it. This post can be trashed.
Of course, thanks again.
Thank you! That worked well! I had to stop and start php tags on some places in the code to get my divs and markup in, you do need to do that right? Or can I mix html and php?
It looks like this now: http://pastebin.com/ytFZtexU
Im very grateful for your help, couldnt have done this by myself! π