ethilien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: theme permission errorYour theme folder doesn’t have the correct permissions to allow wp to list its contents, which it needs to do to find themes.
You need to add execute permissions to your themes folder and each of its subfolders for everyone.
Forum: Everything else WordPress
In reply to: Exclude pages from Sidebar listTry taking a look at this article in the codex: http://codex.wordpress.org/Template_Tags/wp_list_pages
It has a part on excluding pages.
Forum: Plugins
In reply to: Rich Text editor gone…. tried it all(?) to resolve…In FF, load the write page and then under ‘Tools’ open ‘Javascript Console’, and see if you can find any errors relating to javascript (you’ll see a lot of css parse errors, just ignore those). Post any you find, and we’ll try and figure out what’s wrong from those.
Forum: Fixing WordPress
In reply to: Can’t Change order of the list of links!!!Your theme needs to be changed in order to sort the pages by the menu_order. In sidebar.php (depending on your theme, this could change), find
wp_list_pages('and either change sort_column=something to sort_column=menu_order, or if sort_column isn’t specified, add&sort_column=menu_orderonto the end of the string.If this doesn’t work, post what is already being passed to wp_list_pages() and we can fix it for you.
Forum: Fixing WordPress
In reply to: password protected entries not working rightYou could try making the posts private so that they are not visible unless you are logged in.
Deleting the plugin will fix it, although you might want to check to make sure your install isn’t corrupted, as that error should normally not occur.
Forum: Fixing WordPress
In reply to: Make having numeric date in permalink optionalJust change your permalink format to “/archives/%postname%/” and the date won’t be necessary any more. Your posts will then be at example.com/archives/post-title/. Just be sure you never make two posts with the same name.
Forum: Requests and Feedback
In reply to: Theme design done, anyone want to code?I really doubt you’ll get any takers unless you at least post a thumbnail of what the theme is supposed to look like.
Forum: Fixing WordPress
In reply to: make theme editor grab themes off siteI’m afraid this isn’t possible as to use a theme, you need its php source. When a php file is downloaded, it is run by the server leaving only the output HTML.
You could try asking the site in question if they would give you their template though.
Forum: Themes and Templates
In reply to: Image HeaderI can see your header image just fine…
Forum: Requests and Feedback
In reply to: How do I…WordPress is only the underlying software that powers the site you looked at. It has no affiliation with that site at all. I would suggest you contact the owner of the site for any assistance they may offer.
Sorry we can’t help you more.
Forum: Plugins
In reply to: Add button to WYSIWYG editor- Got to wp-includes/js/tinymce/tiny_mce_gzip.php
- Go to line number 127, or perform a search for
$mce_buttons = apply_filters(‘mce_buttons’ - Edit the end of this line and change ‘wphelp’)); to ‘wphelp’, ‘forecolor’));
Just upload the file again and you should have a color select box.
Forum: Fixing WordPress
In reply to: No Feeds – Am I A Complete Dunce?Your feed URL is http://www.tiffanylampworld.com/blog/?feed=rss2
That is the link at the bottom of the page, but it cannot be displayed because the feed: prefix isn’t supported by Internet Explorer.
BTW: footer.php is in wp-content/themes/default/footer.php
Forum: Fixing WordPress
In reply to: mod_rewrite not being loaded in Apache under WindowsTry editing the .htaccess file and putting something in that will definitely cause an error, and see if apache throws one. If it doesn’t, then you need to edit your apache.conf, because apache is probably using a different name for the .htaccess file.
Change this line to:
AccessFileName .htaccessForum: Fixing WordPress
In reply to: Mass Delete Blog EntriesMaybe try this plugin?
http://justinsomnia.org/2006/04/wordpress-suicide/