jbrewlet
Forum Replies Created
-
Forum: Plugins
In reply to: [Options Framework] My site seems to be brokenDevin,
Thanks for your help. The theme developer suggested to remove the support module and that fixed it.Forum: Plugins
In reply to: [Options Framework] My site seems to be brokenHey Devin,
Sorry I wasn’t very clear in my first post. None of my embedded hero images will load. I’m really not sure what’s causing it other than it started when I updated to 3.8.I have a feeling it’s the Options Framework because WordPress seems confused about it:
When I try to install it, it says it’s updated… Mysterious.
Forum: Plugins
In reply to: [Options Framework] Slider and slides are invisibleI am having the same problem since updating to WordPress 3.8.
Forum: Fixing WordPress
In reply to: Migrated Servers, Now Static Front Page getting 500 ErrorGood finds. I’m getting somewhere. Now no 500 Error just a blank white page.
Here’s where I’m at:
<?php /* Template Name: No Sidebar /* ?> <!-- item --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="what"> <?php the_content('\ \pard\pardeftab720\sl360\sa360\ql\qnatural \cf2 Read the rest of this page \'bb</p>'); ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> <?php endwhile; else: ?> </div> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </div>The entire intent of this page is to load up some simple HTML that serves as a splash. See a cached version.
Thus I don’t want the blog header or footer loaded in.Forum: Fixing WordPress
In reply to: Migrated Servers, Now Static Front Page getting 500 ErrorI have narrowed down my problems to residing within a server problem related to a Page Template. My static page works when I switch to my Default Template. My static home template I modified from the Default and for some reason with this new server it gives me a 500 Error. Below is the code of my Default Page Template for reference:
<?php get_header(); ?> <div id="bd" class="yui-navset"> <div id="yui-main"> <div class="yui-b" > <div class="yui-g"> <!-- item --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="item entry" id="post-<?php the_ID(); ?>"> <div class="itemhead"> <h3><?php the_title(); ?></h3> </div> <div class="storycontent"> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> </div> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> <!-- end item --> <?php endwhile; ?> <?php endif; ?> <!-- end content --> <!-- 2nd sidebar --> <!-- end 2nd sidebar --> </div> </div> </div> <div class="yui-b" id="secondary"> <?php get_sidebar(); ?> </div> </div> <?php get_footer(); ?>Here is my No-Sidebar or Static Home Template:
<head> <meta name="google-site-verification" content="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxxxxx-x']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <?php\ /*\ Template Name: No Sidebar /*\ ?> <center> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="what"> <?php the_content(); ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </center>I’m really not knowledgeable enough to know what is wrong here with the PHP code or relation to my server setup that’s causing it to not even throw a 404. Literally everything is else on my site is working perfectly and faster since the migration.
I would really appreciate any help.
Forum: Fixing WordPress
In reply to: Migrated Servers, Now Static Front Page getting 500 ErrorThanks for the suggestion. I had not reset permalinks. I tried to reset them but it proved no different results when loading the static page.
I also checked both URL for SiteURL and Home and they are correct.
Forum: Fixing WordPress
In reply to: Visual Editor Not WorkingIt was at first, I corrected it, which is here also:
http://i.imgur.com/oyze2.pngForum: Fixing WordPress
In reply to: Visual Editor Not WorkingLess, with some missing from the FAQ app that is malfunctioning.
Forum: Fixing WordPress
In reply to: Visual Editor Not WorkingKevin,
I had done that previously but I tried it again for hope of a miracle and nothing. Same problems.Maybe this weekend I’ll get some time to tear things down. Do you use that guide I posted previous?
Forum: Fixing WordPress
In reply to: Visual Editor Not WorkingKevin,
Thanks for the suggestions. I looked up how to manually reinstall wordpress and at this moment I don’t have time to fix a major mistake in reinstalling properly (do you use this guide?)which I feel is probable haha.I cleared cache however and yes it happens on every page. I am at a loss though, I feel like I need to reinstall wordpress but I’m afraid of doing that at this moment.
I seem to have lots of errors related to jQuery and a FAQ plugin (this was a recent addition and was having the other problems before).
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] [Plugin: FAQ Manager] FAQ's Not Collapsed by DefaultHate to be a dullard but what would I be looking for in the code? I can’t seem to find the actual word jQuery anywhere so I’m assuming it’s something else.
I have the same issue.
Thanks.
Forum: Fixing WordPress
In reply to: Help! Page navigation for wordpress stuck on the first pageI have found the problem. It was the plugin, Plimus creating a bunch of pages on it’s own and corrupting things. Thanks anyway.
Forum: Fixing WordPress
In reply to: Help! Page navigation for wordpress stuck on the first pageI also have this same problem. Our site has been working great and now it seems to stick on the landing page. The URL changes but won’t go anywhere. I can’t seem to apply the fix you provided for ratnalaurentina to my situation.
Here’s the code of the Page Template
http://pastebin.com/yUeDwJ8YThanks for any help.