Forum Replies Created

Viewing 8 replies - 16 through 23 (of 23 total)
  • Plugin Author mmattner

    (@mmattner)

    This is something I likely need to address in a new release, so that you can manage who can and cannot see the stats.

    If you’d like this capability now, you can edit the dashboard-stats.php file around line 385. It should read:

    if(current_user_can('manage_options')) {

    Change it to:

    if(current_user_can('edit_pages')) {

    and you should be set. If you have any trouble, let me know.

    Plugin Author mmattner

    (@mmattner)

    Rastarr, I’ll add it to my list of things to explore for future versions.

    I can see how it would be useful for SEO purposes, but their are more than a few programming hurdles that would need to be overcome to get this to function.

    tarundeology, this is an integrated part of the new admin toolbar: http://codex.wordpress.org/Version_3.3#Highlights. Unfortunately, you’ll need to deactivate any plugin that removes the toolbar as it is now an integral part of the administration interface.

    If you’ve turned off the plugin and want to work within the new css to accomplish something like the default fluency implementation, give this a try:

    //Add to functions.php or, ideally, include in a plugin.
    function like_fluency_css() {
        echo '<style>
    		    *,body {font-family: helvetica, sans-serif;}
                img#header-logo{display: none;}
    			#adminmenu div.wp-menu-image {float: left;width: 1px;height: 28px;}
    			#adminmenu .wp-menu-image a{display: none;}
    			#wp-admin-bar-wp-logo{display: none;}
    		    #adminmenuback, #adminmenuwrap {background-color: #222;border-color: #444;border-right-color: #ddd;}
    			#adminmenu li.wp-menu-separator {display: none;}
    			#adminmenu div.separator {border-color: #0e6ac8;}
    			#adminmenu a.menu-top, .folded #adminmenu li.menu-top, #adminmenu .wp-submenu .wp-submenu-head {border-top-color: #444;border-bottom-color: #000;}
    			#adminmenu a {color:#fff;}
    			#adminmenu .wp-submenu a {color:#777;}
    			#adminmenu a:hover, #adminmenu li.menu-top>a:focus, #adminmenu ul.wp-submenu a:hover {color: #fff;}
    			#adminmenu li.menu-top:hover>a, #adminmenu li.menu-top.focused>a, #adminmenu li.menu-top>a:focus {background-color: #000;text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);}
    			#adminmenu li.wp-not-current-submenu:hover>a {border-top-color: #000;border-bottom-color: #000;}
                #adminmenu li.wp-not-current-submenu .wp-menu-arrow {border-top-color: #000;border-bottom-color: #000;background: #000;}
                #adminmenu li.wp-not-current-submenu .wp-menu-arrow div {background: #000;border-color: #000;}
    			#collapse-menu {color: rgba(255,255,255,0.3);}
    			#collapse-menu:hover {color: rgba(255,255,255,1.0);}
    			#collapse-menu:hover #collapse-button {border-color: rgba(255,255,255,0.4);background-color: #333;background-image: -moz-linear-gradient(center bottom , #333, #444);}
    			#collapse-button {border-color: rgba(255,255,255,0.2);background-color: #000;background-image: -moz-linear-gradient(center bottom , #111, #000);}
    			#adminmenu .awaiting-mod, #adminmenu .update-plugins, #sidemenu a .update-plugins, #rightnow .reallynow {background-color: #464646;box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);color: #FFFFFF;}
    			.folded #adminmenu .wp-submenu-head {border-bottom-color: #ccc;border-top-color: #ccc;}
    			.folded #adminmenu li.wp-has-current-submenu, .folded #adminmenu li.current.menu-top {border-bottom-color: #6D6D6D;border-top-color: #808080;}
    		</style>';
    }
    add_action('admin_head', 'like_fluency_css');

    I have not tried nsantillo’s solution, but that may be more like what you’re after if you’re trying to continue to use fluency until it is updated.

    Plugin Author mmattner

    (@mmattner)

    At this time there isn’t a shortcode, though I could certainly build that in the next version.

    This plugin isn’t really designed to be used as anything other than a widget, so in order to display custom posts in a specific template I would suggest using the WP_Query class. Take a look at: http://codex.wordpress.org/Class_Reference/WP_Query.

    Plugin Author mmattner

    (@mmattner)

    This plugin is really designed to work like the recent posts widget, and uses the same exact output. You are welcome to modify the plugin for your purposes of course.

    What the plugin will output is determined by lines 62-68 in the recent-custom-posts.php file.

    Thread Starter mmattner

    (@mmattner)

    I changed my permalink structure to /%category%/%postname%/ and that fixed the issue.

    Thanks for pointing me in this direction, just wonder what it is about WordPress’s handling of permalinks that affects the custom menu in this way.

    Thread Starter mmattner

    (@mmattner)

    I can confirm that the menu shows up when adding four numbers to the end, as in your example “thedomain.com/7777” but not with anything less. I tried several other four number combinations and those seemed to have worked as well.

    I also tried a url that didn’t exist, “thedomain.com/2011/07/sample-post/” and the menu did not show up in that case either.

    Odd that it worked with four numbers at the end.

    I have permalinks set the same as yours.

Viewing 8 replies - 16 through 23 (of 23 total)