arnie2
Forum Replies Created
-
thanks – im angry with me for overlooking this setting
saved us a lot of time 🙂Thank you, recent update (3.0.9) fixed the issue 🙂
Forum: Fixing WordPress
In reply to: Older Entries link loads the same page content… should i add a query statement somewhere or ?
Forum: Fixing WordPress
In reply to: Older Entries link loads the same page contenthi guys, .. is there anybody who could help a little with this issue ?
Forum: Fixing WordPress
In reply to: Older Entries link loads the same page contenta lot of people solved this issue with this code ..
<?php if (have_posts()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$paged"); } ?>after i`ve inserted the code before
<?php while ( have_posts() ) : the_post() ?>nothing changed, the issue remains ..
Forum: Everything else WordPress
In reply to: Is it possible to sell a WordPress site ?oh, thanks a lot. And it will not mind if i make changes in the wordpress basic files ? Or the system should not be modified ?
Forum: Plugins
In reply to: Plugin or codei mean for example:
there is a plugin Visual Styles .. but the same things you can do modifying the stylesheet. So the question was if to use the plugin or do the changes manually. Because of (my first post).
I havent experienced WP for a long time yet .. so im asking if the plugins are reliable and compatible with upcoming WP versions most of the time ?
Forum: Themes and Templates
In reply to: Different style on homepage and on subpages.. that is what I was looking for, thank you very much 😉
Forum: Themes and Templates
In reply to: Different style on homepage and on subpagesthanks, but i would like to solve this issue with some php script because of performance (fast page loading) ..
i think its faster to analyse the “if then” statement like to load a completely different page.
Do you have an idea how to write that php script which will work with wp 2.8.4 ?
Forum: Themes and Templates
In reply to: Different style on homepage and on subpagesow, i understand what the theme is about. I have already created my own, the issue is that i need to display a different background pattern on the homepage and on the subpages.
And for this purpose are the conditional tags like is_home, is_front_page to check if i am on the homepage right now or not.
.. and these tags are not working for me :/ so i am asking if there is another way to find if i am viewing the homepage or the subpage .. or i dont know .. i need an advice how to solve it .. thanks