Title: continuumcomplex's Replies | WordPress.org

---

# continuumcomplex

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Parent Theme JS Issue – 404 File Not Found](https://wordpress.org/support/topic/parent-theme-js-issue-404-file-not-found/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/parent-theme-js-issue-404-file-not-found/#post-7462629)
 * Thank you for your help. I tried making the recommended changes but apparently
   I’m doing something wrong, I’m still getting the same errors. The child theme
   name was mk-child, which I thought would be fine, but I removed the dash and 
   changed it to mkchild. I also changed the $theme_name references in the child
   theme functions.php to $lnt_version as I added the script enqueueing from the
   parent theme into the child theme functions.php and removed null.
 * Here is my current functions.php file.
 *     ```
       <?php
       add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
       function enqueue_child_theme_styles() {
           wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
           wp_enqueue_style( 'editor-style', get_template_directory_uri() . '/editor-style.css' );
           wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css' );
           wp_enqueue_style( 'jquery', get_template_directory_uri() . '/css/jquery.mCustomScrollbar.min.css' );
           wp_enqueue_style( 'mk', get_template_directory_uri() . '/css/mk.css' );
           wp_enqueue_style( 'mk-fontawesome', get_template_directory_uri() . '/fonts/font-awesome/css/font-awesome.css' );
           wp_enqueue_style( 'mk-zocial', get_template_directory_uri() . '/fonts/zocial/zocial.css' );
           wp_enqueue_style( 'mk-pixons', get_template_directory_uri() . '/fonts/pixons/pixons.css' );
           wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/css/custom-style.css' );
           wp_enqueue_style( 'content-sidebar', get_template_directory_uri() . '/layouts/content-sidebar.css' );
           wp_enqueue_style( 'mk', get_template_directory_uri() . '/layouts/sidebar-content.css' );
           wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style')  );
       if(is_home() || is_front_page()):
       wp_enqueue_script( 'mk-superslides', get_template_directory_uri() .'/js/jquery.superslides.js',array('jquery'), $lnt_version, true );
       wp_enqueue_script( 'mk-home-slider-init', get_template_directory_uri() . '/js/mk-home-slider-init.js', array( 'jquery' ), '1.0',true );
       wp_localize_script( 'mk-home-slider-init', 'homeSLIDER', array(
       'slideSPEED' => get_theme_mod('mk_slide_speed','5000')
       ) );
   
       endif;
           wp_enqueue_script( 'mk-metisMenu', get_template_directory_uri() .'/js/metisMenu.js',array('jquery'), $lnt_version, true );
           wp_enqueue_script( 'mk-bootstrap-js', get_template_directory_uri() .'/js/bootstrap.js',array('jquery'), $lnt_version, true );
           wp_enqueue_script( 'mk-cycle-js', get_template_directory_uri() .'/js/jquery.cycle2.js',array('jquery'), $lnt_version, true );
           wp_enqueue_script( 'mk-init', get_template_directory_uri() .'/js/mk-init.js', false,array('jquery'),$lnt_version, true );
           wp_enqueue_script( 'mk-navigation', get_template_directory_uri() . '/js/navigation.js', array(), $lnt_version, true );
           wp_enqueue_script( 'mk-custom-scrollbars', get_template_directory_uri() . '/js/jquery.mCustomScrollbar.concat.min.js', array(), $lnt_version, true );
           wp_enqueue_script( 'mk-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js',array('jquery'), $lnt_version, true );
           if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
       wp_enqueue_script( 'comment-reply' );
       }
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Parent Theme JS Issue – 404 File Not Found](https://wordpress.org/support/topic/parent-theme-js-issue-404-file-not-found/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/parent-theme-js-issue-404-file-not-found/#post-7462498)
 * Certainly, here it is from the parent theme’s functions.php
 * I went ahead and copied the whole file incase there was more in there that might
   be needed.
 * _[code moderated - follow the forum guidelines for posting code - [http://codex.wordpress.org/Forum\_Welcome#Posting\_Code](http://codex.wordpress.org/Forum_Welcome#Posting_Code)-
   and use the [http://pastebin.com/%5D](http://pastebin.com/%5D)_
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Enqueue scripts – again](https://wordpress.org/support/topic/enqueue-scripts-again/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/enqueue-scripts-again/#post-6608483)
 * Uuugh, it’s always something absurdly simple. lol. I was calling it from the 
   page and then removed that when I started setting up the enqueueing script. That
   makes sense. -.- Thanks, it’s working now!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Enqueue scripts – again](https://wordpress.org/support/topic/enqueue-scripts-again/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/enqueue-scripts-again/#post-6608478)
 * That’s weird, I could have sworn I linked it above but the link isn’t there. 
   This is the basic wordpress page that I’ve been experimenting with. [(WordPress Page).](http://dwils.dx.am/duck/wordpress)
 * When you scroll down, the header should change class and get smaller. Looking
   at it with inspect element, I can see the network pulling in my js file, the 
   right stylesheet, jquery, etc.
 * The jquery adds the .fixed class onto the #header div and adds the .navfixed 
   class onto the nav UL, removing the .nav class. It worked fine before I started
   trying to change things to fit better with recommended wordpress code. :/
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Enqueue scripts – again](https://wordpress.org/support/topic/enqueue-scripts-again/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/enqueue-scripts-again/#post-6608456)
 * Changed it to:
 * function duckstyles()
    { wp_enqueue_style( ‘style’, get_template_directory_uri().‘/
   style.css’ ); wp_register_script( ‘duckapp’, get_template_directory_uri() . ‘/
   duckapp.js’, array( ‘jquery’ ), 1.0, true); wp_enqueue_script( ‘duckapp’ ); }
   add_action( ‘wp_enqueue_scripts’, ‘duckstyles’ );
 * Thanks, it’s still not working. Does that look correct? If so, I’ll still digging
   into my jquery and see if I somehow messed up that when messing with everything
   else!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Enqueue scripts – again](https://wordpress.org/support/topic/enqueue-scripts-again/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/enqueue-scripts-again/#post-6608375)
 * Sure. This is just a free-host page that I have to experiment with building custom
   themes. Trying to learn more about wordpress and such. The only javascript on
   the page is on the scroll action, when you scroll down the header class changes.
   I’ve been playing with both the enqueue and the jquery to try and make sure which
   is the issue. I mainly want to know if the above enqueue script looks correct
   or not. If it is correct, then I’ll have to figure out what else is causing the
   problem. I have seen some browser errors with loading the jquery, first identifying
   $ which I then changed to just say jquery (as instructed on several jquery noconflict
   wrap pages, and now it just seems to have an issue identifying that. -.- Either
   way, it’s weird to be a jquery issue since it was working before I started messing
   with the enqueueing – though I won’t admit it’s entirely possible I messed up
   the jquery while trying to set up enqueueing and maybe got the enqueueing correct
   but now have messed up my jquery. ha. Again, that’s why I primarily want to know
   if my enqueue script above seems correct.
 * Thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Strange 404 on logging in](https://wordpress.org/support/topic/strange-404-on-logging-in/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/strange-404-on-logging-in/#post-4745518)
 * No, I haven’t change the url in probably a year or more. And this 404 error has
   been going on for a while now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Strange 404 on logging in](https://wordpress.org/support/topic/strange-404-on-logging-in/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/strange-404-on-logging-in/#post-4745509)
 * Yes, my site address is [http://newsbynight.net ](http://newsbynight.net)
 * However, my wordpress url is set to [http://newsbynight.net/vwpnews](http://newsbynight.net/vwpnews)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Strange 404 on logging in](https://wordpress.org/support/topic/strange-404-on-logging-in/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/strange-404-on-logging-in/#post-4745491)
 * I’m sorry, I’m afraid that I’m not sure what you are asking me to do. I’m not
   that experienced when it comes to WordPress. :/
 * My WordPress is installed in the folder vwpnews, if that’s what you mean.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Login works – routes to 404 error](https://wordpress.org/support/topic/login-works-routes-to-404-error/)
 *  Thread Starter [continuumcomplex](https://wordpress.org/support/users/continuumcomplex/)
 * (@continuumcomplex)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/login-works-routes-to-404-error/#post-4514919)
 * Thank you! I wasn’t sure how to change that, but it did give me an idea. So I
   went into Better WP Security, since it was originally set to hide my login URL.
   I reset the settings on that and it seems to be working now.

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