wpthemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: MiniMoo WordPress ThemeHello,
All themes or plugins from:[spam links removed]
are licensed under the terms of the GNU General Public License (see license details here) as published by the Free Software Foundation, either version 3 of the License, or any later version. Including the one featured here.
No part of the scripts are encrypted or limited for editing in any form.
Please be aware that some themes might contain sponsored links in the footer section. It is up to you to keep those links and the link to author intact, however leaving the links in the footer is highly appreciated and this is considered as your contribution to the theme author and make possible the release of other free products as well support for the existing ones.
Thank you!Forum: Themes and Templates
In reply to: New WordPress Theme DirectoryHello,
All themes or plugins from:[spam links removed]
are licensed under the terms of the GNU General Public License (see license details here) as published by the Free Software Foundation, either version 3 of the License, or any later version. Including the one featured here.
No part of the scripts are encrypted or limited for editing in any form.
Please be aware that some themes might contain sponsored links in the footer section. It is up to you to keep those links and the link to author intact, however leaving the links in the footer is highly appreciated and this is considered as your contribution to the theme author and make possible the release of other free products as well support for the existing ones.
Thank you!Forum: Themes and Templates
In reply to: Free Premium Theme with options menu!Hello,
All themes or plugins from:[spam links removed]
are licensed under the terms of the GNU General Public License (see license details here) as published by the Free Software Foundation, either version 3 of the License, or any later version. Including the one featured here.
No part of the scripts are encrypted or limited for editing in any form.
Please be aware that some themes might contain sponsored links in the footer section. It is up to you to keep those links and the link to author intact, however leaving the links in the footer is highly appreciated and this is considered as your contribution to the theme author and make possible the release of other free products as well support for the existing ones.
Thank you!Forum: Themes and Templates
In reply to: Clean Typography based WordPress theme – Extreme GeorgiaHello,
All themes or plugins from:[spam links removed]
are licensed under the terms of the GNU General Public License (see license details here) as published by the Free Software Foundation, either version 3 of the License, or any later version. Including the one featured here.
No part of the scripts are encrypted or limited for editing in any form.
Please be aware that some themes might contain sponsored links in the footer section. It is up to you to keep those links and the link to author intact, however leaving the links in the footer is highly appreciated and this is considered as your contribution to the theme author and make possible the release of other free products as well support for the existing ones.
Thank you!Forum: Themes and Templates
In reply to: Wp-Theme MagazineHello,
All themes or plugins from:[spam links removed]
are licensed under the terms of the GNU General Public License (see license details here) as published by the Free Software Foundation, either version 3 of the License, or any later version. Including the one featured here.
No part of the scripts are encrypted or limited for editing in any form.
Please be aware that some themes might contain sponsored links in the footer section. It is up to you to keep those links and the link to author intact, however leaving the links in the footer is highly appreciated and this is considered as your contribution to the theme author and make possible the release of other free products as well support for the existing ones.
Thank you!Forum: Themes and Templates
In reply to: Adding to the Single post page all blog postsWell this is really advanced…
Find: <?php endif; ?> This is where the loop ends and then add this code.<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=10&paged=$page"); while ( have_posts() ) : the_post() ?> <div class="post_excerpt" id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div> <?php the_excerpt(); ?> <div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div> </div> <?php endwhile; ?> <p><?php posts_nav_link(); ?></p>
Now you will have 10 posts with content and all. If you want to have full content (really wonder why) than you can change <?php the_excerpt(); ?> with <?php the_content(__(‘(more…)’)); ?>.
To add some style to it you have the following classes:
.post_excerpt – surrounding 1 post.
.storytitle – the title
.meta – for the meta content
.feedback – for feedback sectionYou will have also page navigation links.
To channge the number of posts change 10 to whatever in showposts=10
Forum: Themes and Templates
In reply to: Sidebar keeps disappearingLOL
You are using the default theme, it was built to act like this.
Edit single.php from your wp-content/themes/default folder and edit the file called single.php (with notepad or whatever text editor). Now delete all the content from there and copy this code instead:<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> <?php the_tags( '<p>Tags: ', ', ', '</p>'); ?> <p class="postmetadata alt"> <small> This entry was posted <?php /* This is commented, because it requires a little adjusting sometimes. You'll need to download this plugin, and follow the instructions: https://binarybonsai.com/wordpress/time-since/ */ /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?> and is filed under <?php the_category(', ') ?>. You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed. <?php if ( comments_open() && pings_open() ) { // Both Comments and Pings are open ?> You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site. <?php } elseif ( !comments_open() && pings_open() ) { // Only Pings are Open ?> Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site. <?php } elseif ( comments_open() && !pings_open() ) { // Comments are open, Pings are not ?> You can skip to the end and leave a response. Pinging is currently not allowed. <?php } elseif ( !comments_open() && !pings_open() ) { // Neither Comments, nor Pings are open ?> Both comments and pings are currently closed. <?php } edit_post_link('Edit this entry','','.'); ?> </small> </p> </div> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Adding to the Single post page all blog postsThis will show your posts as unordered list.
Edit single.php (or index.php if single.php does not exist) and find this code:<?php comments_template(); ?>
Now before or after this, meaning before or after your comment section, add the following code:
<ul> <?php wp_get_archives('type=postbypost&limit=20'); ?> </ul>
If you post thousands of articles it will be strange to post all of them, so they are limited to 20. To change the number of posts just change 20 with whatever number.
Cheers!
Forum: Themes and Templates
In reply to: does anyone know what theme this is?The default theme it looks like it have been modified after one of Brian Gardner’s theme. It looks very much of his style of css coding.
See example:body { background: #FFFFFF url(images/bg.gif) repeat-x; color: #202020; font-size: 12px; font-family: Arial, Tahoma, Verdana; margin: 0px auto 0px; padding: 0px; } #wrap { background: #FFFFFF; margin: 0px auto 0px; padding: 0px; } /************************************************ * Hyperlinks * ************************************************/ a, a:visited { color: #BF0283; text-decoration: none; } a:hover { color: #000000; text-decoration: underline; } /************************************************ * Header * ************************************************/ #header { width: 960px; height: 110px; color: #000000; font-size: 16px; font-weight: normal; margin: 0px auto 0px; padding: 0px; overflow: hidden; }
This is a snippet code from https://www.pumpsshoes.org
Forum: Themes and Templates
In reply to: I want posts to look like thisYou can give the class box to the post ID and your loop HTML should look like this:
<div id="post-XXX" class="box"> <div class="entry-content"> <a href="#"><img class="alignleft size-medium wp-image-51" title="de-oude-bootjesgek" src="https://www.bootjesgek.com/wp-content/uploads/2009/05/de-oude-bootjesgek-240x174.jpg" alt="de-oude-bootjesgek" width="250" height="174" /></a> <h3 class="entry-title"> <a href="#" rel="bookmark" title="Permanent Link to...">The Post Title</a> </h3> <p> Your content here - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin hendrerit commodo scelerisque. Aenean eu turpis lectus. Donec libero dolor, tempus et aliquet in, tempor vitae nunc. Vestibulum eleifend porttitor purus sed tincidunt. </p> </div><!-- .entry-content --> <div class="entry-meta"> Published by <a href="#">Admin</a> on 10 Sept 2009 in <a href="#">Category</a> </div> <div style="clear:both"></div> </div><!-- #post-ID -->
Than you can add the following code to your style.css file
img{ border: 0; text-decoration: none; } .box { margin: 0px 0px 10px 0px; border: 10px solid #DCDCDC; font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #222; line-height: 18px; } .box img { padding: 1px; background: #222; margin: 0px 10px 0px 0px; float: left; border-right: 10px solid #DCDCDC; -ms-interpolation-mode: bicubic; width: 250px !important; } .entry-title { padding: 3px 0px 3px 10px !important; margin: 0; border-bottom: 10px solid #DCDCDC; } .entry-title a, .entry-title a:visited { font-size: 18px; font-weight: normal; text-decoration: none; color: #222; } .entry-content p { padding: 5px 10px 5px 0px; margin: 0; } .entry-meta { border-top: 10px solid #DCDCDC; padding: 5px 10px 5px 0px; }
Remove the border from your thumbnail generator and change the with to 250px. Because of this:
-ms-interpolation-mode: bicubic;
Your image will look very nice after re size in internet explorer as well.Forum: Themes and Templates
In reply to: revolution news themeHere’s a free version of a News style theme:
Forum: Themes and Templates
In reply to: Space Between Paragraphs@rmerey When you write a post go to HTML tab and look for that paragraph that you want no space and add this:
<p style="margin:0;padding:0;"> Your text should be here... </p>
Forum: Plugins
In reply to: Remove the suffix dot from the excerptYou just need to add this code to functions.php file:
function trim_excerpt($text) { return rtrim($text,'[...]'); } add_filter('get_the_excerpt', 'trim_excerpt');
Or if you want that […] to became just … You can add this:
function trim_excerpt($text) { return str_replace(' [...]', '...', $text); } add_filter('get_the_excerpt', 'trim_excerpt');
Might be you want to change the dots with a read more link to the article. Than you can add this code:
function trim_excerpt($text) { return str_replace(' [...]', '<a href=' . get_permalink() . '>' . ' read more...</a>', $text); } add_filter('get_the_excerpt', 'trim_excerpt');
Good luck with your theme!
[spam link removed]