rudolf45
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Incorporate WP functionality into existing websiteIf you want the best of both worlds: i.e. using WP as a “newsfeed” for your main site and having it as a blog, too (where visitors can comment etc.) then I am afraid your only choice is to make a theme that loks exactly like your existing site.
There is a lot of information in the Codex about theme building:
http://codex.wordpress.org/Theme_Development
http://codex.wordpress.org/Blog_Design_and_Layout
and ask here whenever you need more help.Forum: Fixing WordPress
In reply to: Page IDs are all the same, can someone help?What you posted is not a valid URL structure.
It should be either
example.com/why-us
or
example.com/page_id=14
but not both!Forum: Fixing WordPress
In reply to: Picture sizingWP is not an image editing tool, which means you should edit (resize) your images before uploading them.
The thumbnails are created automatically when you upload a picture using the inline uploader.
After the upload you should have an option to select what do you want to display: thumb or original size.Forum: Themes and Templates
In reply to: Navigation Menu itemsIf you have a WP install hosted on your server there is nothing to change: you will not have any navigation like in WP.com.
Forum: Installing WordPress
In reply to: wp-config.phpIf you have a bbpress related question, maybe the guys over there could help: http://bbpress.org/forums/
Forum: Fixing WordPress
In reply to: Edit a “Link to Page” page?Isn’t the attachment.php template file used for this (if it exists)?
See: http://codex.wordpress.org/Using_Image_and_File_AttachmentsForum: Fixing WordPress
In reply to: Uploading UTwarrior pproblemOnly the folder with the name I gave you above – it should be in (under) the “plugins” folder.
Forum: Fixing WordPress
In reply to: Require Commentors to Leave Website URLAnd what if I don’t have a website but I am an avid reader of your blog and would like to comment? Did you think about that?
Forum: Themes and Templates
In reply to: Dashes in Sidebar, Text not FormattingThose are abbreviations. (google for it)
If you want to change the look/behaviour – open your stylesheet (style,css) and look forabbr { something: here...; }Forum: Fixing WordPress
In reply to: Uploading UTwarrior pproblemMy guess is because it is not there 🙂
Check and make sure you uploaded the plugin ti the right place. I think it should have its own directory under /plugins/ like
/plugins/UltimateTagWarrior/and all the files inside this directory.Forum: Installing WordPress
In reply to: Display top stories on another siteIf I remember well this plugin has an option to show posts by authro:
http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/
I guess you could set to show 1 post by X author… and then once again from the Y author.
(Maybe it’s not the optimal solution – but you could give it a try until something better is found.)Forum: Fixing WordPress
In reply to: Uploading UTwarrior pproblemThere is no wp/plugins file!
All the plugins should be uploaded to wp-content/plugins/ directory.Forum: Fixing WordPress
In reply to: Reinstalling word press, and retaining my postsRe-installing always wipes out the old database = you’d lose your existing posts!
Check the index.php in your WP directory and replace it if necessary. Also, check the index.php of your theme.And, of course, the usual steps: tell your host; change all your passwords, check the file permissions and never leave any file writable (like when editing theme files online…)
Forum: Fixing WordPress
In reply to: Inserton of data failedthe data should be automatically inserted into the wp tables of both the database for both the blogs
As far as I know WP doesn’t work like that, unless you hacked some core files.
If WP is installed twice in different directories using different DB tables – the two installations do not share any tables in the database.Did you try reading about using Permalinks? And, additionally, to visit your own admin panel: Options > Permalinks?
I’d start with those.