gen1ux
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Header/info problemshey josh, you need to add a class in your css for ‘page_item active’
e.g.
.page_item active {color:white;background:black}
Forum: Fixing WordPress
In reply to: White page no source code just blankhey hartech, im pretty sure its due to faulty code in one of your template files (index.php, home.php, footer.php etc.)
as i mentioned before, i had the same problem, and i solved it by cleaning up the css and php files related to that theme.
The white screen doesnt mean wordpress didnt load any css or anything, WP probaly did load something, but it got stuck by a faulty script, stylesheet or html code, so thats why its not giving any browser output.
so again, check up your templates php, css and include files.
Forum: Fixing WordPress
In reply to: Adding Dynamic Content To A Static Homepagethat’s a really powerful plugin, i’ve used that in other projects to display posts in a page
Forum: Themes and Templates
In reply to: Change name of div in code?hey Karen, You can actually edit the html, just go to the editor in the “appareances” section. You have to chmod the template files though, else it wont save
Forum: Fixing WordPress
In reply to: Featured news moreWhat do u mean with double posts?
If u mean the 3 ‘highlighted’ posts show up in the posts list, then u can simply use the query function for the list.
e.g.
display a list of posts, exluding the three first posts (the highlighted ones):
query_posts(array("post__not_in" =>get_option("sticky_posts")));
so if u make your first 3 posts sticky, they wont show up in the list
edit: u can also apply this filter to specific categories, check out the codex
Forum: Themes and Templates
In reply to: Facebook Share Button to the middle of the pagejust add a class for those links, e.g.:
.fb_button {margin-left:100px}
and then add it in your html div, link or image
Forum: Fixing WordPress
In reply to: Featured news morehey joost,
you have a couple of possibilities, but the easiest way i can come up with is setting your posts per page to 3 (maybe with the [more] tag) and then list the rest of the posts in a different div
but there might be plugins around who already offer this functionality
Forum: Fixing WordPress
In reply to: Adding Dynamic Content To A Static Homepagethere are some plugins which enable you to insert posts and lists into pages.
have a look in the plugin codex
Forum: Fixing WordPress
In reply to: Blank screen while adding mediai cant look it up right now, but from the top of my head i believe they start with something like “media-module-.php”. U could also try n upload the whole wp-content folder, tho im not sure if there are any related theme files in there.
just make sure u make a backup of your current online files and fiddle around a bit ??
just try it with one blog first
Forum: Fixing WordPress
In reply to: Theme not working when took Onlinealright, good stuff ??
Forum: Fixing WordPress
In reply to: Blank screen while adding mediau could try and upload the relevant php files from the wp-admin folder from a clean, default (fresh) install to your server
(dont forget to back up ;))
Forum: Fixing WordPress
In reply to: Theme not working when took Onlinewhich files show up in your themes/your-theme/ folder?
would be easier for us to find the problem if we have more insights of your source code
Forum: Fixing WordPress
In reply to: Theme not working when took Onlineclear all your categories and pages, and add them in the desired order again, then fill the posts. Also don’t forget to install and setup all widgets/plugins
your offline database isnt the same as your online database (in most cases)
Forum: Fixing WordPress
In reply to: Blank screen while adding mediasounds like you moved a shared file related to the media library.
did u change themes or do an update?
Forum: Fixing WordPress
In reply to: Basic Category Listing in Standard Pagehey gavin, so if i understand correctly your trying to display a list of posts on a page?
I’d suggest a plugin which enables that feature in your WP Post Dashboard. That way you don’t have to ‘hardcode’ the list into your page, but you can add it through your user panel.
The method u described above does work tho if u setup your php files and css correctly, but im guessing you’re not a developper, so the plugin route might be the easiest/best for you!