juanzo007
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Help with “has tags”, if/else codingthis code works for me when dropped into the single.php file (courtesy of Experts Exchange):
if ( !has_tag() ) { echo 'enter whatever text u want' ; }- This reply was modified 9 years ago by juanzo007.
Forum: Developing with WordPress
In reply to: Help with “has tags”, if/else codingdeleted…
- This reply was modified 9 years ago by juanzo007.
Forum: Themes and Templates
In reply to: [Responsive] big Responsive Theme update available (link broken)I updated the Responsive theme and it broke my child theme, thankfully i had a backup and reloaded it.
Unless there is a security reason to update it, I’m staying put with what i’ve got since I’ve put so much work into it to make it SEO and load silly-fast.
Forum: Fixing WordPress
In reply to: Adding extra widgets to sidebar? Noob question…I figured it out.
I added template tag code to sidebar.php:
<span class="gat_widget"> <?php _e('Important Resources'); ?></span> <ul> <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'secondary' ) ); ?> </ul>Man, I just dig WordPress. And I am so-not a php coder!!
Thanks for the response!
Forum: Fixing WordPress
In reply to: Getting the_excerpt working on the home pageYeah, contacting the theme developer seems the logical choice, thanks for the reply!!
Forum: Themes and Templates
In reply to: Can't find menu font color in css sheets?Thank you so much. I have to chalk this one up to experience – i thought I had a “style-talian.css” sheet open from the server, but apparently not the same one. Low and behold, there it is!!
Thanks so much for the quick reply, I can continue obsessing!