Joshua Ray
Forum Replies Created
-
Forum: Themes and Templates
In reply to: theme With Non Reloading Frames Built InI’ve used this method before to load in content without a full refresh.. sounds like your trying to accomplish the same thing as the music site in the example..
http://css-tricks.com/video-screencasts/81-ajaxing-a-wordpress-theme/Forum: Plugins
In reply to: [Root Relative URLs] Error with wp_mail functionHad to make the above edit also to fix gravity forms submission issues.
Forum: Themes and Templates
In reply to: Theme Changes Won't Load Unless I'm Logged Inlooking at your source code it appears you are running a caching plugin.
<!-- Cached page generated by WP-Super-Cache on 2012-12-04 14:15:44 -->
Under the plugin settings you should be able to delete the plugins cache.
This usually fixes these types of issues in my experience.Forum: Themes and Templates
In reply to: right sidebar has moved to the bottom of the pageigorlaszio,
the issue is still with the width of #primary.. it was set to 100% before which is a relative measurement { 100% of the available space } now you have an explicit width 1200px. #primary is essentially a wrapper for your list of posts so you would have to make it smaller than the overall site wrapper if you want the sidebar to be to the right.#page { 1200px }
#primary { 885px }
#secondary { 300px }Try this out with firebug or chrome developer tools and you can see this fixes the issue.
Forum: Themes and Templates
In reply to: right sidebar has moved to the bottom of the pageIt looks like your container div #primary has a width of 1200px which is pushing down the sidebar.. If you remove the width on that div the sidebar aligns to the right again.
Forum: Themes and Templates
In reply to: trying to delete a comment boxFrom the posts page you can click quick edit on a specific post and then un-check the “allow comments” check box to disable comments on a specific post.
If you want to remove comments from all posts and pages you can edit your theme and remove :
<?php if ( comments_open() ) : ?>
<?php comments_template(); ?><?php endif; ?>
from single.php and page.php