Lorelle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom PageFor creating links to all kinds of pages, just put the link into your sidebar like you would any other link. See this for more information:
http://codex.wordpress.org/Linking_Posts_Pages_and_CategoriesTo call a page within a page, you can use the PHP “include” or an iframe, or…. well, there are lots of options depending upon what is “in” the html page.
Forum: Themes and Templates
In reply to: Change hardcoded English translations to Greek in Blix themeUnfortunately, not all theme designers take language issues into consideration. See:
Forum: Themes and Templates
In reply to: A number of short WordPress Newbie questionsAnd also check out the WordPress Codex for a lot of help and answers: http://codex.wordpress.org
There is also a section with information for beginners
Forum: Fixing WordPress
In reply to: Word Press on main pageSearch this forum for “integrating” and you may find a bunch of the answers you need.
Also, what are you using now for your entire site? You can add WordPress to your site, import your static files into WordPress and use it to manage your entire site (with a blog), and many different combinations.
Forum: Installing WordPress
In reply to: Flex theme and how comments are displayedI had to hunt to find what you are talking about: http://www.josalmon.co.uk/2005/07/unite-against-terror/
So what is happening is that there is no “space” between the paragraphs in the comments.
Let’s start with the fact that I tried three times to validate your page and couldn’t. FIX THAT.
Once that is fixed, go into your
style.cssfile for your Theme and add something like this:.commenttext p {margin:5px 0px; }Or use padding or whatever to add space to the top and bottom of the paragraph. Change the number to your specifications. The first number sets the top AND bottom and the second the LEFT and RIGHT.
Later: It looks like the problem may be 1) your Theme header is bad or has errors, or 2) your host is denying access in some way. Get this error fixed. It could lead to bigger problems down the way.
Forum: Fixing WordPress
In reply to: Trackbacks?If you sent a trackback from a post on your site to a post on your site, I think that ability was turned off in the lastest upgrade. If you sent a trackback from another site to your site:
1. Are you using any comment spam plugins? Check those.
2. Are you sure the link was “right”?
3. Are you using permalinks?
4. Are you using the latest upgrade to WordPress?Forum: Everything else WordPress
In reply to: Add Search results page to my layout?The search results are generated following the Template Hierarchy found at http://codex.wordpress.org/Template_Hierarchy
If it can’t find the
search.php, it will use theindex.phporsingle.php, depending upon where you begin the search from.Check all of those templates for style references under the “if not found” part of the WordPress Loop. And if you are using custom category templates, consider looking there, too.
Forum: Fixing WordPress
In reply to: Integrating lazy gallery link into dynamic highlighting menu problemForum: Fixing WordPress
In reply to: Subquotes and the q elementHave you tried it with
<blockquote>to see if it has the same effect?Forum: Fixing WordPress
In reply to: Trackbacks?Okay, if you could be more specific with what exactly you are having troubles with on your trackbacks, then we can get more specific with providing you with the help you need.
Do they not show up? Do they show up “wrong”? Are they in the wrong place? Are they working but don’t show up? Are they working on some posts but not on others? Is it the sending of or receiving?
Forum: Fixing WordPress
In reply to: Made a Page…Now Where is It?Help is on one of the many other posts you’ve left in the forum. And here is more help to guide you along the path.
Forum: Installing WordPress
In reply to: PagesYou do not need a page.php file. Pages use “templates” and page.php is one of the optional templates. If you do not have a page.php, then the page will automatically generate using the index.php
To display links to your Pages, use the
wp_list_pages()template tag in your header, sidebar or even footer or all of them to display links to Pages.http://codex.wordpress.org/Pages
http://codex.wordpress.org/Template_Tags/wp_list_pagesOr you can manually create links to Pages:
http://codex.wordpress.org/Linking_Posts_Pages_and_Categories
Forum: Fixing WordPress
In reply to: Changing title of ‘New Page’ option in 1.5You posted this a while ago and the answer was given then.
You need to call a new header file for that particular books.php file that has the title as you wrote it in place of the one usually there by WordPress using the
bloginfo()template tag.And honestly, for the most part, other than the occassional search engine, not that many people really “look” at the title of your site on the browser. They are more interested in the link.
Forum: Requests and Feedback
In reply to: livejournal password?And double, excuse me, TRIPLE posting is also worth the wrath of a few of the occult gods.
Forum: Fixing WordPress
In reply to: Transfer/Export posts from ONE USER on a blog to my new blogSee http://codex.wordpress.org/Importing_Content for all the specifics.
You can get them into your current database, and as long as the data is different, it will just add them.