higurashi55
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] Multiple Column Posts for CategoriesI have submitted a request.
Will the update that will allow the multiple columns be anytime soon? It’s a core feature needed for my website to prosper, or it will turn out a flop otherwise.
Thank you! Vantage is the sleekest theme I’ve encountered!
Forum: Your WordPress
In reply to: Review my Anime Streaming SiteThanks for your criticism. I think the logo is fine,and the incongruity was intentional.
You were right about the chat box, I am making changes to it now.
The large thumbnails will remain, but I increased posts per page from 10 to 15.
Yeah the genre list is embarrassing, partially due to my laziness. I’ll design professional icons to keep with the harmony of my template’s style.
Forum: Fixing WordPress
In reply to: Embed scripts doesn't work on HTTPS but on HTTP<script> tags contain javascript in them
Forum: Fixing WordPress
In reply to: Embed scripts doesn't work on HTTPS but on HTTP<script> tags are used for the embed content
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?Nevermind, I have solved the issue. I had to edit content.php. I was looking in the wrong place the entire time.
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?I am using this theme: https://www.ads-software.com/themes/vantage
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?i made a category-slug.php and pasted this into it:
(in wp includes)<!-- Start the Loop. --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- Test if the current post is in category 3. --> <!-- If it is, the div box is given the CSS class "post-cat-three". --> <!-- Otherwise, the div box is given the CSS class "post". --> <?php if ( in_category('3') ) { ?> <div class="post-cat-three"> <?php } else { ?> <div class="post"> <?php } ?> <!-- Display the Title as a link to the Post's permalink. --> <h2><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. --> <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <!-- Display the Post's content in a div box. --> <div class="entry"> <?php the_excerpt(); ?> </div> <!-- Display a comma separated list of the Post's Categories. --> <p class="postmetadata">Posted in <?php the_category(', '); ?></p> </div> <!-- closes the first div box --> <!-- Stop The Loop (but note the "else:" - see next line). --> <?php endwhile; else: ?> <!-- The very first "if" tested to see if there were any Posts to --> <!-- display. This "else" part tells what do if there weren't any. --> <p>Sorry, no posts matched your criteria.</p> <!-- REALLY stop The Loop. --> <?php endif; ?>
[Moderator Note: Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code may now have been permanently damaged by the forum’s parser.]
i changed content to excerpt
Nothing has changed and full posts are still showing.
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?I would make a template file called: category-ID.php or category-slug.php, correct? Because those would be the highest on the hierarchy. But what would I do after making those template files?
Sorry for my stupidity.
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?There is category.php and category-template.php, but neither of those have <?php the_excerpt(); ?>
and
<?php the_content(); ?>either
Forum: Fixing WordPress
In reply to: How to hide post content when sorting posts by categories?I only have Archive.php and Index.php. There is neither
<?php the_excerpt(); ?>
and
<?php the_content(); ?>