ikbenmartijn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot select parent categoryDisable the ‘Category Overload’-plugin and everything should work out just fine.
Forum: Themes and Templates
In reply to: Paragraphs just not working for my theme?Go to your CSS-file, around line 66:
Edit P >>line-height: 1.5em; /* the proper way… */
margin-bottom: 10px; /* adjust to add more-less space */Forum: Themes and Templates
In reply to: SidebarActually our DIV’s are not OK,
you need to set up a ‘content’ div and within two separate div’s like: entries and sidebar >><div id=”content”>
<div id=”entry”>
</div>
<div id=”sidebar”>
</div>
</div>and then with CSS >>>
#content {width:800px; clear:both;}
#entry {width:600px; float:left;}
#sidebar{width:200px; float:right;}Forum: Fixing WordPress
In reply to: How to restore my blogDo you have a backup of your database or do you just have the files on your webserver?
Go to your phpMyAdmin-interface.
In your wordpress db you should find the table wp_users. There you can find the usernames and passwords. However, the pw’s are MD5-coded… The best thing to do is probably to make a new record with the same properties as the admin users and delete the other (after you tried to login with the new name)Forum: Fixing WordPress
In reply to: lost my sitenavigationWhile updating from which version?
Forum: Installing WordPress
In reply to: Anyone with *no* upgrade problems?I had no problems either. I upgraded using ftp. Backed up everything first. After copying and overwriting the files I used the upgrade page. No problems, worked like a charm!
Forum: Fixing WordPress
In reply to: Can’t display WordPress blog after changing settingsGo to the phpmyadmin of your domain.
In the table ‘wp_options’ you’ll find the option #1 (siteurl). That should stay I guess (if you plan to use that for non-wp purposes).
Setting #39 is more important. Change that to blog.domain…
Save the settings and try to log in.Forum: Fixing WordPress
In reply to: editing the menuYou need to link the items to a category page.
First of all: create categories (Manage > Categories > New) for each title.
Second: Write a post and assign it to a category.
Third: Make sure you know the category base. You can find it under ‘Settings > Misc.’ Most likely it’s /categories/.If your category is called ‘Friends’ (the slug is most likely ‘friends’ then, unless you’ve changed it) you need to link the ‘Friends’ link on top of the page (in the header) to https://(your-domain)/categories/(category slug)/
That’s it!Forum: Fixing WordPress
In reply to: Favicon codeIf you want to integrate code do it in the theme’s header.php file. You can find it in ‘Design’ > ‘Theme Editor’. Elsewise, find the file in wp-content/themes/your-theme/ by using an ftp-client and change it like that using notepad or something
Forum: Fixing WordPress
In reply to: Multiple Facets of one blogPfffrrll, seems pretty difficult. How are you going to let domain2 connect to the domain1 mysql?
If they are on the same domain you could use ‘category blogs’. Like ==> Blog 1 has category blog1 and the children of this category are only shown in blog1 …Forum: Fixing WordPress
In reply to: full text in categories pagesTry changing ‘the_excerpt()’ to ‘the_content()’ in the category template. Or am I misunderstanding this?
Forum: Fixing WordPress
In reply to: Pages and Sub PagesTry <?php wp_list_pages(‘depth=1&exclude=14,15’); ?>