Title: Bryonmathf's Replies | WordPress.org

---

# Bryonmathf

  [  ](https://wordpress.org/support/users/bryonmathf/)

 *   [Profile](https://wordpress.org/support/users/bryonmathf/)
 *   [Topics Started](https://wordpress.org/support/users/bryonmathf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bryonmathf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bryonmathf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bryonmathf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bryonmathf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bryonmathf/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Plugin recaptcha seems to have conflict with Gantry 4 Framework](https://wordpress.org/support/topic/plugin-recaptcha-seems-to-have-conflict-with-gantry-4-framework/)
 *  Thread Starter [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/plugin-recaptcha-seems-to-have-conflict-with-gantry-4-framework/#post-12794290)
 * Thanks [@jessedw44](https://wordpress.org/support/users/jessedw44/) for this 
   information!
 * Yes, agreed.
 * I decided to use HoneyPot for Contact Form 7 to add protection against Bots. 
   This seems to be working well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] Apply to only certain menus?](https://wordpress.org/support/topic/apply-to-only-certain-menus/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/apply-to-only-certain-menus/#post-3983440)
 * Not sure,
 * but if the menus you don’t want to have ajax loading link to pages separate from
   the menu you do want ajax loading – you could put the prior into a subfolder 
   and have an exception in the href ignore list for that subfolder.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] Disable loading image/part](https://wordpress.org/support/topic/disable-loading-imagepart/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890040)
 * I solved this,
 * Here is a demo – [http://schillings.huntingtonwebdesign.com/](http://schillings.huntingtonwebdesign.com/)
 * 3 easy steps in the file advanced-ajax-page-loader/ajax-page-loader.js
 * 1) is set fadeout from “slow” to 0
    2) is set fadein from “slow” to 0 3) is comment
   out the line document.getElementById(AAPL_content).innerHTML = AAPL_loading_code;
 * Original Code looks like,
 * ————————————————-
    //start changing the page content. jQuery(‘#’ + AAPL_content).
   fadeOut(“slow”, function() { //See the below – NEVER TRUST jQuery to sort ALL
   your problems – this breaks Ie7 + 8 😮 //jQuery(‘#’ + AAPL_content).html(AAPL_loading_code);
 *  //Nothing like good old pure JavaScript…
    document.getElementById(AAPL_content).
   innerHTML = AAPL_loading_code;
 *  jQuery(‘#’ + AAPL_content).fadeIn(“slow”, function() {
    ————————————————-
 * New code looks like this,
 * ————————————————-
    //start changing the page content. jQuery(‘#’ + AAPL_content).
   fadeOut(0, function() { //See the below – NEVER TRUST jQuery to sort ALL your
   problems – this breaks Ie7 + 8 😮 //jQuery(‘#’ + AAPL_content).html(AAPL_loading_code);
 *  //Nothing like good old pure JavaScript…
    //document.getElementById(AAPL_content).
   innerHTML = AAPL_loading_code;
 *  jQuery(‘#’ + AAPL_content).fadeIn(0, function() {
    ————————————————-
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] Reload Jquery Fade](https://wordpress.org/support/topic/reload-jquery-fade/)
 *  Thread Starter [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/reload-jquery-fade/#post-3977370)
 * It was very simple, needed to ‘reinclude’ jquery js file
 * jQuery( “#puff” ).show( “fade”, {percent:100}, 6000 );
    jQuery.ajax({ url: ‘../
   wp-content/themes/twentytwelve/js/jquery-1.9.1.js’, dataType: ‘script’, cache:
   true});
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] Fade to White between pages – NO!](https://wordpress.org/support/topic/fade-to-white-between-pages-no/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/fade-to-white-between-pages-no/#post-3894086)
 * Strange,
 * Mine avoids that problem simply through having the div surrounding the Content
   Element Id with the background color I wanted.
 * My Content Element Id is primary, and the background color behind it never changes
   to white but stays rgb(204, 207, 212)..
 * Css
 * .content-wrapper {
    position: absolute; top: 0; left: 18%; height: 100%; width:
   82%; background: rgb(204, 207, 212); }
 * .site-content {
    margin: 2% 10% 0 10%; height: 90%; }
 * Html
 * <div class=”content-wrapper”>
    <div id=”primary” class=”site-content” style=”
   display: block;”> More content here </div> </div>
 * If you do have all backgrounds of all divs as black, the only thing I could think
   is that your Content Element Id is the top-most div? Then while the content is
   being fetched there is no div behind that one to have a fall back color. To fix
   that, simply make another div around your Content Element Id that just has background:#
   000;
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] How to put HOMEPAGE-only to Href Ignore List????](https://wordpress.org/support/topic/how-to-put-homepage-only-to-href-ignore-list/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/how-to-put-homepage-only-to-href-ignore-list/#post-3941918)
 * You could put onclick=”location.href=’mysite.com’; into each href aiming to your
   homepage.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Page Loader] Disable loading image/part](https://wordpress.org/support/topic/disable-loading-imagepart/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890038)
 * Hi,
 * Did you ever figure this out? I am just about to start working on the exact same
   project.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sidebar images broken ONLY on blog post page?](https://wordpress.org/support/topic/sidebar-images-broken-only-on-blog-post-page/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/sidebar-images-broken-only-on-blog-post-page/#post-3538861)
 * Yo I got this working for me…
 * I guess there is a bug in WordPress,
 * The page I set as the post page would only use the first sidebar I created (no
   matter what sidebar I set for it). Of course I had created 5 or 6 to play around,
   and decided to put the 6th one on all of my pages.
 * So to get around this I had to make the first sidebar I created look like the
   6th, then set each page to use the first sidebar.
 * Hope that helps,
 * Bryon
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sidebar images broken ONLY on blog post page?](https://wordpress.org/support/topic/sidebar-images-broken-only-on-blog-post-page/)
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/sidebar-images-broken-only-on-blog-post-page/#post-3538859)
 * I tried opening your site to take a look, but couldn’t get there.
 * I’m having a similar problem where my sidebar widgets work fine on all pages,
   except the blog page – on this page my email subscribe form doesn’t appear.
 * [http://www.glenncartermusic.com](http://www.glenncartermusic.com)

Viewing 9 replies - 1 through 9 (of 9 total)