Mathias Gomig
Forum Replies Created
-
Forum: Themes and Templates
In reply to: (Twenty Twelve) change "leave a reply"Look for the comments.php in the Twenty Twelve folder – Go to line 58 – and there is the <?php comment_form();?>
Forum: Themes and Templates
In reply to: get_header()There is nothing like “singlepost.php” in the “WordPress hierarchy”.
There is single.php for normal posts, page.php for pages and maybe if you want single-{custom-post-type}.php for custom post types…
Forum: Themes and Templates
In reply to: (Twenty Twelve) change "leave a reply"Go into the single.php in your current theme and look for
<?php comment_form(); ?>
Change it to:
<?php $defaults = array( 'title_reply' => 'Write your random text here.', ); comment_form($defaults); ?>
Go into the themes stylesheet which is called “style-weaverii.css”.
Change the following in line 23…#container_wrap.right-1-col { width: 73.000% !important; border-right: 1px solid #D2D2D2; }
Forum: Themes and Templates
In reply to: [Simpleblue] Remove widgetsGo to Appearance > Widgets in your WordPress installation.
Delete the widgets which you don’t want to see, from the right menu…Forum: Themes and Templates
In reply to: Adding a wordpress blog to my websiteIf you want to keep your existing design you have to write your own WordPress Theme…
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?[ redacted, support is offered via the forum and not email ]
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?It is very hard to solve the problem on this forum. Maybe you could send me your FTP Login via E-Mail, and I could check the code instantly…?
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?I saw it…
So try to replace the whole content in this pastebin with your loop.php.
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?Could you give me link to your site?
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?Try to remove the code in line 46, 47, 48 and 49…
<div class="entry-utility"> <div class="posttime"><span><?php the_time('M d') ?></span><?php the_time('Y') ?></div> <div class="postcom"><?php comments_popup_link(__('<span>No</span> Comments', 'templatesquare'), __('<span>1</span> Comments', 'templatesquare'), __('<span>%</span> Comments', 'templatesquare'), '' , __('<span class="commoff">Comments<br/>off</span> ', 'templatesquare')); ?></div> </div>
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?Okay, it seems to be that the loop in the index.php is outsourced…
Could you search for the loop-index.php and paste it’s content again on pastebin.com?Forum: Fixing WordPress
In reply to: Mystery Line around Logo, etc.Your background image is 4.23 mb big… I think that is the problem for the slow-loading-sidebar…
Try to use this version of your background image. It is just 0.36 mb big…https://dl.dropbox.com/u/17629053/Justice_in_concert_small.jpg
Forum: Themes and Templates
In reply to: How to remove date stamp off posts?Great, just post the content from the index.php and I guess from the category.php on pastebin.com!
Please post it separately.Forum: Fixing WordPress
In reply to: Pages not showingTry to refresh your permalinks.
Go to Settings -> Permalink and press the “Save Changes” Button.I think that will work…