general_salt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sticky Posts just for adminThat is to hide Stickies in loop right? I should have explained myself better. I was wondering if it was possible to remove the sticky option in the admin section.
Forum: Plugins
In reply to: [Plugin: Taxonomy Images BETA] Images not showing on wp-adminHow do you use this with Custom Taxonomies in the template (using get_terms()) ???
Forum: Fixing WordPress
In reply to: CSS files only pulling with a www.I took WP out from httpdocs->myblog->all WP files here to httpdocs->all WP files and it works. Weird. Dont get it, but at least it works.
Forum: Fixing WordPress
In reply to: CSS files only pulling with a www.I guess I should tell you what are in my two .htaccess files!
sitting my .httpdocs folder is my blog folder with my WP install, and this .htaccess: (I’m changing my site URL changed to ‘mysite’)
RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.com RewriteCond %{REQUEST_URI} !mysite/ RewriteRule ^(.*)$ mysite/$1 [L]I am not good at this htaccess stuff, I admit it. This is suppose take users to the folder with my blog in called mysite. Should my blog be in its own folder in the in httpdocs folder? Or should WP not be in it’s own folder, and just sitting inside httpdocs?
…and in the mysite folder I have the .htaccess:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>HELP!!
Forum: Fixing WordPress
In reply to: Categories in admin missingI deactivated, and deleted them.
I edited the config file to point to another database to see if that would fix it. I did. So something in the database was causing that. I have no idea why that could even occur.
Forum: Fixing WordPress
In reply to: Categories in admin missingI do have Javascript enabled.
I’ve been through a bunch of plugins developing this site, I just deleted all of them. Is there any chance that a plugin sis something to mess things up?
Forum: Fixing WordPress
In reply to: Audio Player Plugin (1pixelout ) not supported for pages?NM, was using get_the_content() and it was stripping my tags. Changes to the_content() and works fine now.
Forum: Fixing WordPress
In reply to: Way to add a class/id to text in a postMaybe there is way to check the MIME type or something in a conditional statement..