t3ch33
Forum Replies Created
-
Forum: Plugins
In reply to: Related post plugin that works withOUT tagsThanks!
Forum: Fixing WordPress
In reply to: How to ad AdsenseThat’s not the complete code (you would add it to the index.php page of your theme folder, though)-I was just giving you a start. If you’re not a coder, I would just use a plugin.
Forum: Fixing WordPress
In reply to: How to ad Adsensehttps://www.ads-software.com/extend/ is the answer to your question about Extend. That’s the better option if you can’t code. If you can, to add an ad to the right column, just edit the wp-content/themefolder/sidebar.php file and place the ad code where you want it. To make an ad appear after the 1st post, you need to add a while statement that looks something like this `$x=1;
while ($x=”1″) {show ad code}`Forum: Fixing WordPress
In reply to: redirection issueThis isn’t the direct answer, but there’s an option for you to set your WP install to ‘development’ or ‘maintenance’ mode. Search the forums or web for that.
Forum: Fixing WordPress
In reply to: What file contains the input fields for the new post page?This is resolved. I found it in wp-admin/includes/meta-boxes.php
Forum: Fixing WordPress
In reply to: Way to Publish a Page and then Have it Not be Linkable?I’ve done something like this for posts that I don’t want to be viewed on the front page. Just create a custom field named “linkable”. You will have to rework the query on each page that displays pages/posts. Just change the query so that any post with the meta_key of “linkable” and meta_value of “no” is not displayed on those pages.
Forum: Fixing WordPress
In reply to: Can’t have a post_name with just numbers?I have an htaccess file that I’ve been using, and post_id is set as the permalink. I don’t know why for the pages, it only works if post_name does not only contain numbers.
Forum: Fixing WordPress
In reply to: Removing a go00ogle.net infectionHi. Can someone tell me what version this is affecting?
Thanks.
Forum: Plugins
In reply to: Adding fields to your wp tables and upgradingCan anyone answer this?
Forum: Themes and Templates
In reply to: nice, different comment ‘themes’?that’s right mercime. i’m looking for anything that’s different than the comments that are in most themes. thanks.
Forum: Fixing WordPress
In reply to: is this some new spam attack?Wow, this was a very entertaining thread. ??
Question for the mods-can this exploit also put other non-WordPress files at risk? I ask because I don’t even know how the hack works. Thanks.
Forum: Fixing WordPress
In reply to: Authors can’t embed flash?“Remember that if you get hacked because of the vulnerabilities in flash code. “
Is this the same with YouTube videos?
Forum: Fixing WordPress
In reply to: it doesn’t work.I downloaded this in May and it works. Maybe they updated it since your install or you did install it wrong.
Forum: Plugins
In reply to: Next Previous navigation problemWhat Murmatron 2 means is that in this part of your code:
<?php query_posts('cat=13,14,15,16,17,18,22&showposts=5'); ?>
you should remove the part that says showposts=5. You are telling WP that you only want to show 5 posts. I had this problem recently and had to remove it from the index page. You can go to wp-admin/options-reading.php to change “Blog pages show at most” to 5. That worked for me.
Forum: Plugins
In reply to: Where do I change the size of the textarea of the categories in post-new.php?Any ideas? I’ve searched files, but can’t find it.