randyttp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stop WP from opening links in new windowesmi… what do you recommend doing instead?
Forum: Fixing WordPress
In reply to: Stop WP from opening links in new windowohh durrr…
I see the problem. I need to set it to
<base target="_self" />lol sorry guys. and thanks for the help to weeding down the issue.
Forum: Fixing WordPress
In reply to: Stop WP from opening links in new windowYeah when I switched to the twenty eleven theme the problem was fixed, so its definitely theme specific.
And like I stated in my custom theme I did include
<?php $root = realpath($_SERVER["DOCUMENT_ROOT"]); ?>
So this way I can pull inc files from the root directoryand I’m using this
<base href="http://localhost/wordpress/" /> <base target="_blank" />to read my images files etc cause I have WP installed in the directory of localhost/wordpress/blog
hmm I just had a thought, I will try stripping each one of those elements out and seeing whats causing it.
Forum: Plugins
In reply to: any good image rotators compatible with 3.2.1?bump
Forum: Fixing WordPress
In reply to: Stop WP from opening links in new windowIt opens all links in a new page. Even clicking on a post title for example, will open the post in a new window.
[No bumping, please.]
Forum: Fixing WordPress
In reply to: Stop WP from opening links in new windowBump
Forum: Fixing WordPress
In reply to: Questions about WP for sites with a lot of pages (not posts)Sometimes WP just isn’t the right tool.
Maybe a different CMS would serve you better.
Forum: Themes and Templates
In reply to: custom page – How to display the content?Ok I finally tried using the loop to display the content and it worked.
<?php if (have_posts()) : while (have_posts()) : the_post();?> <?php the_content(); ?> <?php endwhile; endif; ?>But is that the only way to do it? Using the loop? Ohwell whatever it works.
NOW, I’ve ran into something even more stumping. On my page template everything that is loaded dynamically like get_header() get_sidebar() works fine and is using the CSS I have properly.
Anything else though that I post on that template either via static or via the content wysiwyg editor, doesnt read the CSS file. Its like its being over ruled by something… Any help on this?