multiformeingegno
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove entry-utility stuff from the homeI forgot a I: scuolamediamazzini DOT lorenzoraffio DOT com
Forum: Themes and Templates
In reply to: Remove entry-utility stuff from the homeSorry! scuolamediamazzin DOT lorenzoraffio DOT com
Forum: Themes and Templates
In reply to: Exclude stuff from the print templategenius!
Forum: Themes and Templates
In reply to: Adding a class to specific items on a wp menuOps… you are right… ??
Forum: Themes and Templates
In reply to: Adding a class to specific items on a wp menuNo luck (the class for the item 15057 is still menu-item menu-item-type-post_type menu-item-object-page menu-item-15057)… ??
If you need the url, it’s https://bombacarta.danielamandolini.itWP latest version
Forum: Themes and Templates
In reply to: Adding a class to specific items on a wp menuOkay!
I have a old theme created back in 2008 and now I’m trying to “refresh” it adding all new WP features and hooks. For example the theme is not menu-compatible and I’m adding support for it. I managed to do this and all works properly. The only problem I have is that the old menu had some items with a specific class, for example:
<ul id="nav"> <li class="separator"><a href="">Title</a></li> <li class="separator"><a href="">Title</a></li> <li><a href="">Title</a></li> </ul>
Now the new menu is:
<ul class="menu" id="menu-default"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15052" id="menu-item-15052"><a href="">Title</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15056" id="menu-item-15056"><a href="">Title</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15057" id="menu-item-15057"><a href="">Title</a></li> </ul>
How can I have for example 2 of these items with a class I specify and the other with the “default” class?
I hope it’s more clear now!! Thanks in advance! ??
Forum: Themes and Templates
In reply to: Adding a class to specific items on a wp menuPlease.. nobody? ??
Doesn’t work for me too… ??
Forum: Themes and Templates
In reply to: Static page as frontpage with read moreThanks for the reference!
Anyway I can’t understand where I need to put <?php the_content(__(‘(more…)’));?> ?
If I put it after<?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?>
..does it work or I need to define the more function in functions.php ?
P.S.: What’s the difference with this tag: <?php the_content( $more_link_text , $strip_teaser, $more_file ); ?> ?
Forum: Fixing WordPress
In reply to: Load jQuery from CDN but not in admin panelBump
Forum: Fixing WordPress
In reply to: Load jQuery from CDN but not in admin panelNobody? Please a little help! ??
Forum: Fixing WordPress
In reply to: How to remove comment-reply.js completelyThanks for the prompt reply! ??
Forum: Plugins
In reply to: Jetpack Shortcode EmbedsI think I got the replies… there’s no align= parameter.. and the way to have the new embed code is to edit the file jetpack/modules/shortcodes/vimeo.php
Find the old code (<<<EOS) and replace it with:
return <<<EOS
<iframe src=”https://player.vimeo.com/video/$id?title=0&byline=0&portrait=0″ width=”$width” height=”$height”></iframe>
EOS;
}Hope this can help.
Forum: Themes and Templates
In reply to: Menu entries OVER content (TwentyEleven child theme)OK but.. I don’t know what to put in IE specific stylesheet to fix that issue.. ??
Forum: Themes and Templates
In reply to: Layout on low resolutionI added a overflow: hidden on #branding, and it solves the problem that the image gets out of the space on low res, but doesn’t fix the other problem (reducing all stuff mantaining proportions)..