here
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WYSIWYG editor losing HTML on 2.1Attempt at persistent resource on related issues at:
http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
Forum: Fixing WordPress
In reply to: WYSIWYG is stripping html from postsAttempting to collect info on this at:
http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
In my case, I am happy to turn off the visual editor, but require non-savvy users to later touch those pages and posts. I can get a working version on the site, but any future edit by another user using the fancy editor destroys the page/post.
The code view editor shouldn’t process or change a thing — or this should at least be available for those who desire / require such functionality.
Forum: Fixing WordPress
In reply to: WP 2.1 – Posting ProblemAttempt at collecting this info on codex at:
http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
Forum: Fixing WordPress
In reply to: <p></p> and <br /> in posts not working?I also continue to have similar problems, and have begun to collect information on related issues in the codex at:
http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
Even using the plugins listed, wordpress continues to process and remove elements from posts. This is most definitely /not/ a browser issue, but one of how wordpress saves and processes text from the editor.
Any help appreciated!
Forum: Plugins
In reply to: Disabling wpautop on a per post basisSee and help with http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
Forum: Plugins
In reply to: Text ControlThis has been fixed by 2.0b3, see http://codex.wordpress.org/How_Wordpress_Processes_Entry_Text
and read more at
http://wordpress.org/support/topic/125640
and
http://ckon.wordpress.com/2006/08/14/updated-version-of-text-control-that-works-with-wp-21/
Forum: Fixing WordPress
In reply to: Static front posts page matching permalinks = 404?Resolved:
The conflict was with the category and tag bases also set at Options -> Permalink. This produces 404:
custom perm:
/news/%year%/%monthnum%/%postname%/cat base:
/news/
tag base:
/news/—
Change cat and tag bases to fix:
/news/cat/
/news/tag/Forum: Plugins
In reply to: Seek: Image uploads with comments — plugins, etc?Along the same lines, existing functionality for a user file upload form / page? This wouldn’t be too difficult to code, but would also be a partial solution for users seeking this functionality. An embedded upload page would save sending the users to their email client to send in files.
Forum: Fixing WordPress
In reply to: How do I get pages in order AND exclude some?Well, it should solve both. I’m using two arguments for the wp_list_pages() funtion.
sort_column=menu_order
exclude=17,18,25This should sort the pages by the ‘page order’ setting found when editting any page. This should also exclude #17, #18, and #25.
Again altogether:
<?php wp_list_pages('sort_column=menu_order&exclude=17,18,25'); ?>Forum: Fixing WordPress
In reply to: How do I get pages in order AND exclude some?see http://codex.wordpress.org/Template_Tags/wp_list_pages
try
<?php wp_list_pages('sort_column=menu_order&exclude=17,18,25'); ?>where you want to exlude pages with IDs 17,18, and 25.
Forum: Fixing WordPress
In reply to: Function to get WP version
$wp_version is the variable.
assigned in wp/wp-includes/version.php
bloginfo(); may also work (seen in other post)
<?php bloginfo('version'); ?>
Forum: Fixing WordPress
In reply to: WP converts characters – how to turn off?This (apparently?) remains an open issue causing trouble for all sorts of reasons, most recently an attempt to post code to my blog. (A wordpress hack no less!) I have been unable to find any reliable documentation / explanation of how to work around the usually handy, occasionally infuriating aspect of wordpress. A simple checkbox, ‘use texturize for this post’ would likely do it in the case of code, without which posting code is impossible as far as I can tell. The wordpress docs wiki has not even a page for texturize. Hopefully I can put some time into helping to remedy this situation, but in the meantime — links?
Forum: Fixing WordPress
In reply to: .htaccessI got this to work without moving the install. The key is to have the .htaccess file in the same directory as the index.php file, regardless of where wp is installed.
host: dreamhost
site: http://herebox.org
my .htaccess file, chmod’d to 666:
RewriteEngine On
RewriteBase /
RewriteRule ^blog/topic/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^blog/topic/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^blog/archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^blog/archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^blog/archives/?([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^blog/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^blog/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp/wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp/wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp/wp-feed.php?feed=$1&withcomments=1 [QSA]