upgraded moonrise to 1.1.3 from 1.1.1

Support Area Forums Moonrise upgraded moonrise to 1.1.3 from 1.1.1

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question:
  • Author
    Posts
  • #12326
    sunny morgan
    Participant

    Just upgraded moonrise to 1.1.3 from 1.1.1. I am using a child theme but had to make some modifications to the moonrise dir. I am thinking about going back to 1.1.1. Is there a reason that I should stick to 1.1.3? DO you have a list of changes in the new version?

    Thanks

    #12330
    Bill Robbins
    Moderator

    Sunny,

    You can find a list of what’s changed at: http://www.organizedthemes.com/demo/wp-content/themes/moonrise/changelog.txt

    There will also be another small update released, most likely on Saturday morning to fix a few bugs and add some options related to having the header fixed.

    If you need any help, let me know,
    Bil

    #12338
    sunny morgan
    Participant

    Thanks Bill!

    #12343
    Bill Robbins
    Moderator

    Anytime Sunny. Enjoy your weekend!

    #12349
    sunny morgan
    Participant

    I updated to the custom-js.php Smooth Scrolling function to allow for urls with hash tags. This allows you to have links like http://site.com/#four. Basically the function check to see if you are on the current url; if so then just smoothly scroll to hash; if not then goto the url is always.

    // Smooth Scrolling
    jQuery(document).ready(function(){

    jQuery(‘a’).on(‘click’,function (e) {

    if (this.hash) {

    clicked_url_no_hash = this.href.split(‘/#’)[0].replace(/\/+$/, “”);
    current_url_no_hash = window.location.href.split(‘/#’)[0].replace(/\/+$/, “”);

    if (current_url_no_hash == clicked_url_no_hash) {
    e.preventDefault();

    var target = this.hash;
    var $target = jQuery(target);

    jQuery(‘html, body’).stop().animate({
    ‘scrollTop’: $target.offset().top
    }, 900, ‘swing’, function () {
    window.location.hash = target;
    });
    }
    }
    })
    });

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘upgraded moonrise to 1.1.3 from 1.1.1’ is closed to new replies.