ghecko
Forum Replies Created
-
Forum: Plugins
In reply to: Poll Plugin for WordPressIt all installs fine and shows up but when you vote the results always stay at 0% no votes – any ideas.
Forum: Fixing WordPress
In reply to: To Adsense or not?No its not your allowed up to three
Forum: Your WordPress
In reply to: HelloIN A CAN
Forum: Plugins
In reply to: Configurable ratings pluginI installed this and even though it all seems to work OK no voting box appears anywhere even though I have the <?php votio_ballot_box(); ?> in my template.
Oh well lets wait for one that works to come along.
Forum: Fixing WordPress
In reply to: Breaks between posts on front pageAnyone have any idea please.
Forum: Fixing WordPress
In reply to: Breaks between posts on front pagemy code is this in index.php
<div class="feedback"><?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?><?php edit_post_link('Edit', ' — ', ''); ?></div><!--
<?php trackback_rdf(); ?>
--></div>
What would I place after this ?
Forum: Fixing WordPress
In reply to: Align Main Table LeftSorry currently using on local machine at the mo – but if you look at http://www.alexking.org/software/wordpress/theme_browser.php and choose forinstance the pool them – I want it left aligned rather than in the middle
I looked for rap in the css – no luck there though.
Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuI have it all working now apart from the CSS
I have the normal code and my code both showing – but as you can see the lines seperating the menu are missing from my code – thats my last issue now.
For your info here is the standard code with the lines showing correctly
<ul>
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
</ul>here is my code
<h2>Navigation</h2>
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_pages('title_li'); ?>Forum: Fixing WordPress
In reply to: Add Static links To Pages Menuhi guys
I’m a little lost now 🙂 so many potential fixes.
I gues the easiest way we be if there was a way to create a Link as a page that way it would just show up automatically within the pages menu. i cant see any way to do this though.
I am basically trying to create a simple navigation strucutre as a menu and all of the other links are fine because they are actual pages ‘About us’ – Contact us ‘ etc however I want purely a link (I call it static in the sense of it isn’t auto generated) to my homepage like you see on lots of other sites.
The code from the first post looks good but it places the ‘Home’ link above the ‘Pages’ section title – I need some way for it to create the Section Title – then insert the static link and then insert the rest of the auto generated menu.
I’m trying to do as one of the later replies suggested creating my own ‘pages’ title and then add the menu but the css is all over the place at the mo as I use the
<li>command and
<ul>in the formatting.Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuYeah I have the code to list the pages – my issue is I want a link back to the main homepage like http://www.mysite.com so i have to place this static link somewhere in the wp_list_pages but dont know how to.
If i place the static link above the wp_list_pages it comes out above the section heading and below it comes out at the bottom. I guess I need a way to edit the wp_list_pages and place the static link in there.
Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuI want everything as standard apart from to add a link to the homepage at the top of the dynamic pages menu that gets created.
My issue is as the menu is dynamically created where abouts can I place the code to make this work .
Forum: Fixing WordPress
In reply to: Add Static links To Pages Menuhere’s the code too
<ul>
<li><a href="<?php bloginfo('url'); ?>">Home</a></li><?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
<li>
<h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>Forum: Fixing WordPress
In reply to: Add Static links To Pages MenuHi thanks for the reply
But when I add it like that I get the menu like this
Home
Pages
About
Contact UsAs you can see the pages should be above the home as ‘Pages’ is the section title.