jasonashaw
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Patch thickbox 404 errors in p2 themeSolved this problem with a simple general setting change.
change the site URL.
blog URL https://www.sitename.com/p2/
site URL https://www.sitename.com/that’s it!
Best,
JasonForum: Themes and Templates
In reply to: P2 1.2.3 – clicking add media opens up error pageI found an even simpler fix to this issue.
Under General Settings, you’ll see two fields. One for the wordpress address and one for the site address.
I had the same URL for both:
WordPress address (URL): https://www.sitename.com/p2
Site address (URL): https://www.sitename.com/p2I was having the same problem with the …/p2/p2/…
Simply changing the Site address (URL) to https://www.sitename.com/
solved the problem ??
Best,
JasonForum: Fixing WordPress
In reply to: linking header image to homepage urlRick,
Thanks so much. I really appreciate listing the solution in your post. Adding the code to the div line was simplea nd worked perfectly!
Thanks,
JasonForum: Fixing WordPress
In reply to: Link header to home… help!!This doesn’t seem to work. All it did was display the URL over my header background image. It was clickable, but didn’t look so good.
Started with:
<div id=”header”>
<div id=”headerimg”>
<h1>/”><?php bloginfo(‘name’); ?></h1><div class=”description”><?php bloginfo(‘description’); ?></div>
</div>
</div>Tried:
<div id=”header”>
<div id=”headerimg”>
<h1>/”><?php bloginfo(‘url’); ?></h1><div class=”description”><?php bloginfo(‘description’); ?></div>
</div>
</div>Didn’t work. Tried every variation I could possibly think of… nothing.
Think it could have to do with this code?
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg-<?php bloginfo(‘text_direction’); ?>.jpg”) repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; }
<?php } ?>tried changing bloginfo(‘stylesheet_directory’); ?> to bloginfo(‘url’); ?>. Didn’t create link and messed up the style.
Hmmm…… Guess I need to brush up on my PHP… back to the drawing board.