milo 3oneseven
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Trojan in theme "Speed"?Forum: Themes and Templates
In reply to: Trojan in theme "Speed"?Ahh, I see, it’s a dead old theme, speed updated meanwhile 4 times,
be sure to get latest clean version from my site ;PForum: Themes and Templates
In reply to: Trojan in theme "Speed"?Strange, the Speed theme is NOT in the wp theme repository, so how can you install it via the WP theme installer?
You do mean the appearance>>themes>>install themes within your wp install?
Forum: Themes and Templates
In reply to: Trojan in theme "Speed"?thank you for the alert, speed is updated to version 3.17.20,
file jquery-ui-personalized-1.5.2.packed.js was never in use,
however it is my fault & shouldn’t happen, sorry for that.
just delete the file as it’s unused in the theme.question is:
how this unused file went into the theme, where the theme is hosted at dropbox.how did you install directly from wp theme installer?
theme is only avail via dropbox, not via wp themes.best
miloWell, the Nature theme works on wordpress org and at my theme browser….
Forum: Fixing WordPress
In reply to: Hover mouse over link colorsThere is an easier way to do so: open header php and find this lines and erase it:
<script src="<?php bloginfo(‘template_directory’); ?>/js/addEvent.js" type="text/javascript"></script>
<script src="<?php bloginfo(‘template_directory’); ?>/js/sweetTitles.js" type="text/javascript"></script>
Forum: Themes and Templates
In reply to: How to Have a Separate style.css for each Page TemplateGeneric WordPress Body Tag
<body id=”<?php echo the_slug(); ?>”<?php global $post; if (is_front_page()) {echo “>”;} else {?> class=”sub”>
Generic WordPress Body Tag
<body id=”<?php echo the_slug(); ?>”<?php global $post; if (is_front_page()) {echo “>”;} else {?> class=”sub”>
Forum: Themes and Templates
In reply to: How to limit number of menu items shownOr via the theme functions file like so:
function theme_nav_menu() {
if (get_option(‘show_on_front’) == ‘page’)
$static_page_id = get_option(‘page_on_front’);if ($static_page_id && is_page($static_page_id))
$home_class = ‘ class="current_page_item"’;
else {
if ($static_page_id && !is_page($static_page_id))
$home_class = ”;
elseif (is_home())
$home_class = ‘ class="current_page_item"’;
}$home_text = theme_home_link_text();
echo ‘<ul id="tabs">’ . "\n";
echo ‘<li’ . $home_class . ‘>< a rel=”"nofollow"”>’ . $home . ” . "\n";if (theme_get_option(‘nav_menu_pages’)) {
$pages = &get_pages(‘sort_column=post_parent,menu_order’);
$nav_menu_pages = explode(‘,’, theme_get_option(‘nav_menu_pages’));if ($pages && $nav_menu_pages) {
foreach ($pages as $page) {
if (!in_array($page->ID, $nav_menu_pages))
$exclude_pages[] = $page->ID;
}if ($exclude_pages)
$exclude_pages = implode(‘,’, $exclude_pages);wp_list_pages(‘title_li=&exclude=’ . $static_page_id . ‘,’ . $exclude_pages);
}
}then add a theme option panel described here and style it via CSS.
Forum: Themes and Templates
In reply to: Styling SideBarVia the theme functions file described at this thread or use the classy body plugin (wp2.7 comp not sure).
Forum: Themes and Templates
In reply to: Thumbnail image with post.Forum: Themes and Templates
In reply to: Article image which can be resizedVia using custom fields, something like this:
<?php $image = get_post_meta($post->ID, ‘lead_image’, true); ?>
<img alt="<?php the_title_attribute(); ?>" src="<?php echo $image ?>" />
within your loop.
Forum: Themes and Templates
In reply to: Search by theme author (milo) yields zero resultsHave a look at extend milo317 please 😉
Not so many themes over there, but I have set up all my free themes at server one and server two, enjoy.Forum: Your WordPress
In reply to: Slapped together a new look, what do you think of it?Better to use image replacement tech, this search might help you….but only if you do care about SEO and good indexing.
Nice plugin, but very bad implementation in terms of SEO, you don’t have even one anchor tag on your site for serps…
Forum: Your WordPress
In reply to: Slapped together a new look, what do you think of it?What about an h1 tag for titles?
H2 tags for posts?
Might be helpful to follow some basic SEO rules to get better index.