Ericka125
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3.6 Upgrade – No Menu ToggleWell, I didn’t change any of the files, just installed the new WordPress version 3.6. Would it have updated those files for any reason? It’s confusing because on the https://witravelbestbets.com site it was working just fine before the upgrade. There is no reason it shouldn’t be working and the only thing I’ve done recently is upgrade to 3.6.
I went through my child theme and the menus are all called dynamically based on the Twenty Twelve child theme.
If it helps, here is my code:
<nav id="site-navigation" class="main-navigation" role="navigation"> <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3> <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> </nav><!-- #site-navigation -->
Maybe I’m not calling something semantically correct?
Thanks for your help!
Forum: Plugins
In reply to: [Responsive Slider] Problems in Webkit BrowsersIt appears to have been a clearfix issue that we figured out.
After much research, I’ve found that the above code won’t work for me on this plugin because the calendar is embedded through an iframe and there isn’t a way to edit the iframe code to include the proper standards mode. So despite having it in my header, nothing happens on the calendar.
Is there a workaround without editing files in the plugin?
Nevermind, I found it. Oy, brain freeze!
I am also curious if this is a possibility or if we can expect to see it in future versions.
I’m looking for a solution to this too. And I need to limit it because I work for an ad agency that manages different client accounts (for Facebook and WordPress). In WordPress we want to limit the clients from going in and posting to other Facebook accounts that my account has access to.
Forum: Fixing WordPress
In reply to: Orderby Query Not WorkingFound the solution! It could’ve been a plugin, but I preceded the above code with
remove_all_filters('posts_orderby')
and everything worked.
More information located at https://stackoverflow.com/questions/10918814/wordpress-query-posts-orderby-rand-not-working-in-category-archive-template.
Forum: Plugins
In reply to: [Responsive Slider] [Plugin: Responsive Slider] Adding functionality?I would love to have this functionality!
Still needing help with this. Anyone have any thoughts on how to fix this?
Forum: Themes and Templates
In reply to: Adding Tag/Category Name as CSS Class in QuerySuperb! Thank you so much!
Forum: Themes and Templates
In reply to: Adding Tag/Category Name as CSS Class in QueryWhat I would like to do is the following:
<span class="school">School</span>
Where “school” is the tag slug and “School” is the name.
I would like to to do this for each individual tag within each individual query post.
If that’s still unclear I can think of another way to word it.
Forum: Themes and Templates
In reply to: Adding Tag/Category Name as CSS Class in QueryGreat! That definitely fixed my category problem, but I’m still have trouble with the tag classes appearing the way I want them to.