Equal
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: New Default WordPress Theme?It seems clear to me that many people base their own themes on the default theme, as the default is seen as the blueprint of themes. Therefore to me the default theme should simply show off all the features that WordPress can achieve (well as many as possible!).
The design should be simple, clean and fresh which allows easy customisation of the theme and also allows users to see exactly whats going on regarding code and how that code displays specific features.
I also think that the code in the theme is important. The code should be commented all the way so that new comers can quickly understand what particular pieces of code do in terms of functionality. It could provide an excellent learning platform for new WordPress users and therefore help educate people to contribute to the development of WordPress and join the community.
Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingIt is on the homepage that I am having the problems.
Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingI am still suffering this problem even after updating to the latest 1.1.3 of this theme. Anyone any ideas?
I have used the theme on two different domains. Works fine on one but not the other. Not sure what to check really.
Any help you be appreciated.
Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingI am a little confused at this error. If I show threaded comments and then comment (reply) to one of the posts on the homepage the ajax works and it updates ‘real time’. Anyone have a clue what could have changed?
Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingJust tried it in a few browsers and I am getting the same. Also noticed that when inputting the tags on the home page for writing a post, it is not giving tag suggestions as it used to either. Strange….
Anyone any ideas. Seems strange why it should have stopped working.
Forum: Fixing WordPress
In reply to: If is 3rd Level of CategoryAt the moment when I click on category 2008 / 2009 it show the immediate children (Group 1, Group 2) but also the grand children (Review 1, Review 2). It is OK when on the Group 1 or Group 2 cat pages. How do I stop it returning Grand Children?
Forum: Fixing WordPress
In reply to: If is 3rd Level of CategoryThanks for that MichaelH – works a treat.
Regarding my second question. The depth function doesn’t seem to work. It is not a parameter of the function according to this page?
http://codex.ww.wp.xz.cn/Function_Reference/get_categories
Anyone have any ideas?
Forum: Fixing WordPress
In reply to: If is 3rd Level of CategoryGetting round this another way I have managed to fix this however I am now using the code below in order to display the category names of child categories of the current category.
<?php $descendants = get_categories(array('child_of' => 6)); ?> <?php foreach ($descendants as $child) { ?> <li><?php echo $child->cat_name; ?></li> <?php } ?>My questions is, is how do I alter this so that it only brings back the immediate child categories of the current category, rather than child and grandchild categories?
Forum: Themes and Templates
In reply to: i need an order in the navigation barI don’t know the theme and therefore these are only suggestions.
In the header.php file for the theme, it is probably calling wp_list_categories. There are many parameters for this functions outlined here:
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_categories
Ordering the category list is one of them. In terms of moving it before your page list, then cut and paste the wp_list_categories before the wp_list_pages in the header.php
Like I said without knowing the theme these are suggestions only.
Forum: Themes and Templates
In reply to: My sidebar has moved since i posted a second post.You have lots of errors in your HTML as it won’t validate
I can see for example straight away that you have 2 id=”main” on the same page. Fix the errors first.
Forum: Fixing WordPress
In reply to: jQuery banner slideshowThere are lots of plugins that will create the effect that you are looking for. One such plugin that I have had experience with is the “Featured Content Gallery” plugin which works well.
I have also used the “Featured Content Glider” script with some success.
Forum: Plugins
In reply to: Media Upload Problems in P2Thanks for getting back to me.
I have upgraded and the problem still persists. Going to try and fresh install instead and then will report back.
Forum: Fixing WordPress
In reply to: Securing WordPressI think that the redirection to the profile may be something to do with the default role that they are being allocated.
In terms of protecting the entire site, why not just wrap all your pages with:
<?php if(is_user_logged_in) ) { ?> // show all page content here <?php } else { ?> // include loginform here <?php } ?>Hope this helps.
Forum: Themes and Templates
In reply to: swf will not work on wordpress templateTry replacing it with this:
<?php bloginfo('template_url'); ?>/flash/header.swfForum: Fixing WordPress
In reply to: Cannot login to DashboardIt will be on your server. If you installed your site by going to the wordpress install address e.g. yourdomain.com WordPress uses the sample file to create the real one and then places it on the server. Grad it from there using FTP.