Plugin Directory

Changeset 390019


Ignore:
Timestamp:
05/27/2011 09:48:53 PM (15 years ago)
Author:
oltdev
Message:

fixes to the filename issue. Thanks for reporting it.

Location:
subpage-navigation/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • subpage-navigation/trunk/readme.txt

    r373013 r390019  
    2626
    2727 [1]: http://wordpress.org/extend/plugins/subpage-listing/
    28  [2]: http://wordpress.org/extend/plugins/subpages-navigation/installation/
     28 [2]: http://wordpress.org/extend/plugins/subpage-navigation/installation/
    2929
    3030== Installation ==
     
    35354. Enjoy!
    3636
    37 Please note that you will likely have to tweak the CSS to make it work with your theme. You can do this by editing the subpages-navigation.css in your template directory and/or replacing image that shipped with the plugin. See the [styling guide][1] for details. We know that this is not optimal, but please understand that it is very difficult to come up with a default stylesheet that works semmelessly across all themes. If you need help, please go to the WordPress forum.
     37Please note that you will likely have to tweak the CSS to make it work with your theme. You can do this by editing the subpages-navigation.css in your template directory and/or replacing image that shipped with the plugin. See the [styling guide][1] for details. We know that this is not optimal, but please understand that it is very difficult to come up with a default stylesheet that works seamlessly across all themes. If you need help, please go to the WordPress forum.
    3838
    3939if you add
     
    5757
    5858== Change log ==
    59    
     59
     60= 1.1.1=
     61* bugfix: some of the js and css files were not loaded properly.
     62
    6063= 1.1 =
    6164* If everything works for you you don't need to update.
  • subpage-navigation/trunk/subpages-navigation.php

    r370799 r390019  
    44 * Plugin URI: http://olt.ubc.ca
    55 * Description: Create subpages navigation menu with sidebar widgets and shortcodes.
    6  * Version: 1.1
     6 * Version: 1.1.1
    77 * Author: Enej Bajgoric / Godfrey Chan / Michael Ha / OLT
    8  * Author URI: http://olt.ubc.ca
     8 * Author URI: http://blogs.ubc.ca/
    99 *
    1010 * This program is distributed in the hope that it will be useful,
     
    334334     if (!is_admin()) {
    335335        if(SUBPAGE_NAVIGATION_SCRIPT)
    336             wp_enqueue_script('subpages-navigation', plugins_url('/subpages-navigation/subpages-navigation.js'), array('jquery'));
     336            wp_enqueue_script('subpages-navigation', plugins_url('/subpage-navigation/subpages-navigation.js'), array('jquery'));
    337337       
    338338        if(SUBPAGE_NAVIGATION_STYLE){
     
    342342       
    343343            }else{
    344                 wp_enqueue_style('subpages-navigation', plugins_url('/subpages-navigation/subpages-navigation.css'));
     344                wp_enqueue_style('subpages-navigation', plugins_url('/subpage-navigation/subpage-navigation.css'));
    345345            }
    346346        }
     
    353353add_action("admin_print_scripts-widgets.php","subpages_navigation_plugin_admin");
    354354function subpages_navigation_plugin_admin(){
    355     wp_enqueue_script('subpages-navigation-admin', plugins_url('/subpages-navigation/subpages-navigation-admin.js'),array('jquery'));
     355    wp_enqueue_script('subpages-navigation-admin', plugins_url('/subpage-navigation/subpages-navigation-admin.js'),array('jquery'));
    356356
    357357}
Note: See TracChangeset for help on using the changeset viewer.