simpy2
Forum Replies Created
-
Forum: Plugins
In reply to: Minimalist Theme Modification QuestionYou’re looking in the wrong place! You need to go into the /scripts folder, and edit script.js
In that is the
alwaysHide: true
command. Just change true to false and you should be set.Forum: Themes and Templates
In reply to: Minimalist Theme – Questions1) You just need to go into single.php where you will find this code:
<div id="postinfotext"> Posted: <?php the_time('F jS, Y') ?><br/> Categories: <?php the_category(', ') ?><br/> Tags: <?php the_tags(''); ?><br/> Comments: <a href="<?php comments_link(); ?>"><?php comments_number('No Comments','1 Comment','% Comments'); ?></a>. </div>
which you can remove (or comment out). You can leave any of them in if you would like.
2) I believe you need to remove this code from page.php:
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
As well as the</a>
after it.3) Not sure what you’re asking here – you should just be able to delete it as a category while logged into your profile!
Forum: Themes and Templates
In reply to: Minimalist ThemeThere is this code in header.php:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" /> <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/white.css" title="white" /> <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/black.css" title="black" /> <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/blue.css" title="blue" /> <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/green.css" title="green" /> <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/grey.css" title="grey" />
And all you need to do is switch /styles/white.css with styles/black.css, as well as switching the titles. That way black is at the top, and white is an ‘alternative’ stylesheet.