Alex Cragg
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: the_ID outside of loopWow! It works perfectly, thanks so much, there is no way I would have ever come across that, as you probably guessed, my php knowledge isn’t great, I just try and follow examples from various places!
Thanks again!
Forum: Themes and Templates
In reply to: Link Color change for specific linksadd
.aizattos_related_posts_title a { color: #FF3333; }anywhere in the css file, for ease at the very very end, after the last }
Forum: Themes and Templates
In reply to: Link Color change for specific linksyou need to create an item for this class: aizattos_related_posts_title so in your css, add something like this
.aizattos_related_posts_title a {
color: #FF3333;
}At the moment, this link is just using the normal CSS for a ‘link’, so you need to style it differently.
you need to decide what colour to use, probably best to use one of the colours already on your site.
Forum: Developing with WordPress
In reply to: the_ID outside of loopTrue, I have already stored them there, but for some reason I thought that could only be used for not duplicating a post ID, didn’t realise it was just a standard variable.
I’ve changed the calls to use the array search, but I’m having trouble calling the post IDs back from $do_not_duplicate.
Ive tried the following:
'cf<?php the_ID() == $do_not_duplicate[n] ; ?>'
This returns the ID of the last item only, 3 in this case, whatever I put in as ‘n’.'cf<?php get_the_ID() == $do_not_duplicate[n] ; ?>'
This returns a blank space.'cf<?php $post->ID == $do_not_duplicate[n] ; ?>'
This also returns blank.Are there any further pointers you can give me, and thanks again for the help!
Forum: Your WordPress
In reply to: My recent WordPress launched sitesImpressive!
Forum: Installing WordPress
In reply to: div class in postwhere are you making these changes? Are you using the visual editor?
Forum: Fixing WordPress
In reply to: Can tags determine what page the post goes on?have a look at these links, its all perfectly possible
http://codex.wordpress.org/Conditional_Tags#A_Category_Page
http://codex.wordpress.org/Template_Tags/in_category#ExamplesForum: Plugins
In reply to: “dummy down” post page for author specific upload folders for each userIt is possible to disable the visual view, so i guess if you dig in the core files you’ll find how that is done, and then you could modify it to only sure the visual one instead.
Again, for the other options that your client doesnt want to see, just find the relevant admin file and comment out the code for the bits you dont need.
Don’t forget though, that an upgrade these files will be wiped…
No ideas for the upload question yet, will post again if i come up with something.
Forum: Plugins
In reply to: WP e-Commerce shipping problemThey have a forum over at http://www.instinct.co.nz/blogshop/support-forums/ – they have bug reports there too, I think this is a problem that other people have had too.
There have been a lot of new releases lately, try the latest version and see if that helps too.
Forum: Fixing WordPress
In reply to: Can’t see visual tabhave a look at users>your profile – is the box at the top unchecked? If you check it you will be able to see the visual editor again.
Forum: Fixing WordPress
In reply to: how to exclude featured category from previous posts?on the paged page your content is in a few subdivs, and in #content then a div then #content again, which has a left margin of 280px, which is pushing things over, cause it is doing it twice…if that makes sense!
So basically you need to look at your html structure if you are on a paged page.
Forum: Fixing WordPress
In reply to: set number of posts in the indexwhen you say index do you mean home page or where you recent posts are displayed? Go to Options>Reading then you can define it there.
Forum: Themes and Templates
In reply to: Firefox ProblemAs far as i can see the grey cap at the bottom is missing, but do you mean that the footer isnt aligned with the rest? to change that, find #footer in your css, and delete the 1px on the margin or padding, cant remember which it was on.
Forum: Plugins
In reply to: Replacing a function in pluggable.phpHey, yeah it’s all sorted, head to New User Email Setup for the download.
Forum: Themes and Templates
In reply to: Firefox Problemhey,
find your css doc, then find the #page tag, then where it says
marginchange it to say thismargin: 0px autothat will centre the page however wide the screen is, and also get rid of the gap at the bottom.