actheuniv
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site URL changed, admin panel is inaccessible (blog is working)Problem solved: I simply used the backup files of root directory and files in the theme directory. Siteurl and homeurl are changed as I wanted and I can log in to the admin panel. I doubt that the change of URL and the add of favicon caused somehow the problem. Now I don’t have a favicon but it doesn’t matter.
Thousands of thanks to Josh for your patience advices!
Forum: Fixing WordPress
In reply to: Site URL changed, admin panel is inaccessible (blog is working)I installed wp In the root directory.
Before I changed, siteurl and homeurl were both http://myrootdirectory.com (without www), and via functions.php I changed the both of them into http://www.mynewdomain.com, because I wanted to change the url of pages, too. Thank you Josh that you’re helping me.Forum: Fixing WordPress
In reply to: Site URL changed, admin panel is inaccessible (blog is working)Oh, I meant PHPMyAdmin by telling MySQL. Sorry for my confusion.
Actually I already changed the siteurl and homeurl of wp-options table. (The values are now the URL that I chose to use.) I read the Codex again, but still I don’t see what I possibly did wrong.Forum: Fixing WordPress
In reply to: Site URL changed, admin panel is inaccessible (blog is working)Thanks Josh for your advice. I edited the text.
You mean that I had to change something via MySQL?Forum: Fixing WordPress
In reply to: How to change the font size of template? (blog-in-blog)I solved the problem. If someone also tried to include “the second posts page in a static website condition” like I did, I recommand you to read about Category and Custom menu, instead of using the plugin.
Here’re some links that I found helpful:http://codex.wordpress.org/WordPress_Menu_User_Guide#Adding_Items_to_a_Menu
http://en.support.wordpress.com/menus/
http://en.forums.wordpress.com/topic/twenty-eleven-theme-and-custom-menu-not-workingForum: Fixing WordPress
In reply to: Where is the code located to remove the date link?Hi, I tried to solve the same problem and your solution worked perfectly, Jan! Thank you so much. For the newbees just like me: When you create functions.php for your child theme, you DON’T need to copy-paste all the codes from functions.php of the parents theme. Just open a text editor, write
<?php ?>then you’ve already opened & closed a php file. Then just copy-paste what Jan wrote from
function twentyeleven_posted_on() {
to
}
between<?phpand?>.
The other thread about functions.php helped me a lot understanding functions.php, too.Forum: Fixing WordPress
In reply to: How to change the font size of template? (blog-in-blog)@pixelrow : As I changed
<h1>%post_title%</h1>
into
<h1 class="entry-title">%post_title%</h1>
, the title just disappeared. Meanwhile, I read that one shouldn’t skip from h1 to h4, but when I write h2 for entry date instead of h4, it looks just exactly the same as h1. Any idea?