RaiderKat
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slider 2] Zooming out to see full slider when creating slidesSo excited! Going to check it out right now!! Thanks so much!
Forum: Plugins
In reply to: [Smart Slider 2] Zooming out to see full slider when creating slidesThanks so much for getting back to me. Although I have a pretty decent size monitor, when doing a slider in wordpress the menus(wordpress and smart slider) take up so much real estate on the window that it seems there is very little space for the canvas. Even when doing a slider that is say 800 wide, I am forced to keep scrolling right and left to see the slider or the menus. Just a bit of a hassle. Having an option to make the canvas fit the page I think would be great!
Another suggestions I have (since you’re asking for suggestions:) is to be able to give layers classes. It would be nice on smaller screens to be able to “rearrange” the layers so they fit better instead of the slider getting so small.
I’m not sure if that would work with animations but its a thought. I know some things give you the option of a special CSS class. It would be great if layers could have the same option:)
Other than that…Great slider! Absolutely love it and will use it A LOT for my clients.
Thanks so much again! Looking forward to the update!
Forum: Fixing WordPress
In reply to: Help with Combining categories -refine searchThanks for replying! The question then is how would i have them do a search using the actual menu button as opposed to a search and also allowing them to add new cities or categories easily?
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsErik it should work for anyone. Only issue i’m having is for some reason its putting an extra
<li>[Moderator note: In future please wrap all code in backticks]
at the beginning..i’m not sure why. Trying to figure it out now.
Only thing you need to do is specify the theme location and it should work for you.
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsI actually changed it to show up as FAV because i couldnt get it to not show up
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsIt is
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsshould be $items .=
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsit is almost exactly the code you had except you were missing the = after $items .
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsIt is not on the site. I actually was just testing it on my personal site. I needed the code for a client and couldnt get it to work. They actually only have one menu so it probably would have been fine but i didnt want it to break if they added another menu down the line. I really appreciate all of your help!
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsya no i tried not putting it, i tried setting it to 1, i tried setting it to 0, nothing worked..the admin is still showing up..really strange
Just happens i posted the one where i set to 0 lolForum: Fixing WordPress
In reply to: Help with wp_list_authorsFor anyone who is looking, I figured I would post the solution! Here is the code that works! Happy Coding!
add_filter( 'wp_nav_menu_items', 'wps_nav_authors', 10, 2 ); function wps_nav_authors ( $items, $args ) { if ( $args->theme_location == 'primary') { $items .= '<li><a href="#">Authors</a><ul class="sub-menu"><li>' . wp_list_authors('show_fullname=1&optioncount=0&exclude_admin=0&orderby=post_count&order=DESC&number=8&echo=0') . '</li></ul></li>'; } return $items; }Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsGOT IT! YAY! Thanks so much for your help! I really appreciate it! Here is the code I used. Only thing I cannot get to work is excluding the admin, but that isnt a huge deal. Thanks so much!!
add_filter( 'wp_nav_menu_items', 'wps_nav_authors', 10, 2 ); function wps_nav_authors ( $items, $args ) { if ( $args->theme_location == 'primary') { $items .= '<li><a href="#">Authors</a><ul class="sub-menu"><li>' . wp_list_authors('show_fullname=1&optioncount=0&exclude_admin=0&orderby=post_count&order=DESC&number=8&echo=0') . '</li></ul></li>'; } return $items; }Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsThanks for trying! I appreciate it!!
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsmaybe it needs to be in an if statement? if theme_location == ‘primary’ else if ‘secondary?
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsya thats the one i have on there now..still no top nav or authors