Title: thesublimeobject's Replies | WordPress.org

---

# thesublimeobject

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New User Approve] Admin doesn't receive any email when user is registered from the Front-End](https://wordpress.org/support/topic/admin-doesnt-receive-any-email-when-user-is-registered-from-the-front-end/)
 *  [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/admin-doesnt-receive-any-email-when-user-is-registered-from-the-front-end/#post-5260682)
 * Josh,
 * I just wanted to let you know I was having this same issue (emails not getting
   sent to admin as a notification) so I just updated to the 1.7beta release and
   it works now. I am using an SMTP plugin for sending mail. I’m sure the reason
   why it wasn’t working has something to do with that, but your update alleviated
   the issue so that I didn’t have to debug for hours.
 * Thanks. Just thought you’d want to know.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font encodings?](https://wordpress.org/support/topic/font-encodings/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/font-encodings/#post-3545726)
 * I figured this out. It ends up I had activated a second set of fonts overtop 
   of the normal set, which apparently freaked out the computer.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Font encodings?](https://wordpress.org/support/topic/font-encodings/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/font-encodings/#post-3545724)
 * I did update my font libraries on FontExplorer earlier today, but I checked the
   fonts that aren’t showing up and it appears that they are still installed. It
   shouldn’t have affected previously installed fonts?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Javascripts not initiating correctly](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/#post-3477314)
 * [@t-p](https://wordpress.org/support/users/t-p/), I built the theme myself..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Javascripts not initiating correctly](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/#post-3477306)
 * Sorry, I should have included the code. Silly me. I can do a Fiddle, but since
   it won’t really work very well due to the animation. What is supposed to happen
   is a secondary header is supposed to pop down when the scroll hits > 542. That
   IS happening. Exactly how I want it to. The problem is on the window load, the
   bar itself is showing up until the user scrolls, then it disappears, and works
   correctly. If you scroll back up, it works well, still. Only on the initial load
   is the drop-down bar appearing incorrectly (it shouldn’t appear at all.
 * Here is the code:
 *     ```
       <div id="follownav">
       	<div class="follownavwrap">
       		<nav>
       			<div id="nav-logo-2"><a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo( 'stylesheet_directory' ); ?>/images/footer_logo.png" width="225" id="navv-logo"></a></div>
       			<ul class="jsnav">
           			<li><a href="/companies">Companies</a></li>
           			<li><a href="/team">Team</a></li>
       			    <li><a href="/global">Global</a></li>
       			    <li><a href="/about">About</a></li>
       			    <li><a href="/contact">Contact</a></li>
       			</ul>
       		</nav>
       	</div>
       </div>
   
       #follownav {
       	height: 70px;
       	width: 100%;
       	background: #000;
       	position: fixed;
       	top:0;
       	z-index: 9999999;
       	padding: 0;
       	margin: 0;
       }
   
       .hide {
       	display: none;
       }
   
       .show {
       	display: block;
       }
   
       #follownav ul {
       	list-style: none;
       }
   
       #follownav ul li {
       	display: inline-block;
       }
   
       #follownav ul li a {
       	display: inline-block;
       	text-decoration: none;
       	color: #fff;
       	font-family: 'proxima-nova', sans-serif;
       	text-transform: uppercase;
       }
   
       #nav-logo-2 {
       	width: 200px;
       	margin: 0;
       	padding: 0;
       	float: left;
   
       }
   
       .jsnav {
       	width: 600px;
       	margin: 0;
       	padding: 0;
       }
   
       $(window).scroll(function(){
             if($(window).scrollTop() > 542){
                 $("#follownav").slideDown("fast");
                 $('#follownav').removeClass('hide').addClass('show');
   
             }
           });
           $(window).scroll(function(){
             if($(window).scrollTop() < 542){
                 $("#follownav").slideUp("fast");
             }
           });
       ```
   
 * Link to site:[nextworld.kbddev.com](http://nextworld.kbddev.com)
 * I should mention this is a custom theme, so I can’t switch themes.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Javascripts not initiating correctly](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/#post-3477287)
 * Hey guys, seriously thanks for trying to help, but does anyone have maybe a particular
   possible solution to my problem? I’m not trying to be sarcastic, but I have tried
   some of these things and I am aware that the codex exists. I’ve done a lot of
   searching.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Javascripts not initiating correctly](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/)
 *  Thread Starter [thesublimeobject](https://wordpress.org/support/users/thesublimeobject/)
 * (@thesublimeobject)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/javascripts-not-initiating-correctly-1/#post-3477269)
 * Thank you, I didn’t know about the script debug. Unfortunately, that didn’t help,
   and I know there aren’t any errors in the script already. The scripts themselves
   work, they just aren’t initiating correctly. Any other suggestions?

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