misterwendellcat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-content moved – referencing themes from old folderThanks… been up and down and through the documentation several times to no avail… yet. ?? Any other suggestions?
Forum: Fixing WordPress
In reply to: moved wp-content but still referencing original folder?And now, finally, figured out the permissions… all good on uploads.
Forum: Fixing WordPress
In reply to: moved wp-content but still referencing original folder?OK, I found the Uploads setting under Settings > Miscellaneous and changed the relative link. Now to figure out why the uploads are not allowed… I’ve changed the permissions of the Uploads folder to 777 but still nothing.
It appears that the Media(images) that were previously loaded are still referencing to the original blog folder.
Forum: Fixing WordPress
In reply to: How to call Page specific IE6 stylesheet?Thanks sojweb… Not sure if that’s exactly what I’m looking for. Surely there must be a PHP call something to this effect out there?
<?php } else if (is_IE6)(is_single()) { ?> …etc.?Forum: Fixing WordPress
In reply to: Full post not found / Post url shows double http:/Whoops… found it.
https://codex.www.ads-software.com/Using_Permalinks#Structure_TagsI would suggest to the developers that in future releases it would make sense to have an “actual” example next to the Custom structure.
For example: /%postname% will display like so…Forum: Fixing WordPress
In reply to: Full post not found / Post url shows double http:/I tried changing to the default permalink setting and that sorted it. What I noticed though, is that when I update the Custom structure as https://vicair.net/blog/sample-post/ it will automatically change it to /http:/vicair.net/blog/sample-post/ as soon as I hit save.
Strange… what’s causing it to move one of the forward slashes to the front of the code?
Forum: Themes and Templates
In reply to: How to create a page template that uses a different style.css?Great advice!
Can I have someone look at my call and see what I’m missing? I’m trying to have style.css called for the homepage and style2.css for everything else but I can’t seem to get it past the first stylesheet. Whichever stylesheet I call in the first “if” line will cover the whole site. (I have a front page and 4 “static” pages in the navigation and I’m using a page.php template).I must be missing something simple here? I’ve tried several different alterations of the code I’ve found in the forums to no effect.
[code]
<?php if (is_front_page) { ?>
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.css" type="text/css" media="screen" />
<?php } else { ?>
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style2.css" type="text/css" media="screen" />
<?php } ?>
[/code]Cheers!
Steve