Len
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Spring Time – A New Free ThemeI had a quick look at that theme. Among the files are
page.phpandpage-comments.phppage-comments.phpcontains the call to the comments form whilepage.phpdoesn’t.You need to assign the page template
page-comments.phpto be used to display whatever pages you want comments to appear in. Have a look at the template hierarchy.Forum: Plugins
In reply to: No right click????Maybe, I’ll just stick with watermarking low res images
That’s the best solution. ๐
And I know the code, I just don’t know which .php file to add it to.
header.phpsomewhere before the closing</head>tag.Forum: Requests and Feedback
In reply to: Arbitrary File Upload Vulnerability / Exploit?I have dozens of locals installs all containing various incoming links. They’re not referring to your install. Localhost is exclusive to your machine. ๐
Forum: Installing WordPress
In reply to: Parse error: syntax error, unexpected T_LNUMBERYou can find 2.6.5 in the Release Archive. I wouldn’t use it due to security concerns though.
unexpected T_LNUMBER
Somehow you borked the security key when you edited the file
wp-config.php(it happens) Just be careful when editing that file.Forum: Plugins
In reply to: No right click????It’s normally done with javascript inserted into the head section of your document. Just Google “no right click” or some such thing and you’ll get oodles of examples.
I must issue a caveat however. There is no such thing as “no right click proof”. These methods only prevent the most novice of users. If someone really wants to steal the material on your page they need only disable javascript in their browser. I (as well as many others) surf with JS turned off by default enabling it only for sites I trust. Someone could also simply take a screen shot of your page. Also don’t forget when a visitor arrives at your site your page is downloaded to the visitor’s browser cache. Said visitor needs only pull the info from their cache.
Forum: Installing WordPress
In reply to: post not appearing on web domainRe-upload the file in question. As I said earlier though, if that file is missing chances are others may be as well.
Forum: Fixing WordPress
In reply to: Page listingForum: Installing WordPress
In reply to: post not appearing on web domainAccording to the error message at your site WordPress cannot find the file
wp-blog-header.phpErrors such as failed to open stream or no such file or directory in are indicative of missing files.
Something went awry during the upload process. If
wp-blog-header.phpis missing chances are others may be as well.Forum: Themes and Templates
In reply to: Artisteer UsersUsing your ftp client (in this case you say CoreFTP) connect to your ftp site and upload the theme files to
wp-content/themesYou can get the connection details from your host if you don’t know what they are.
Have a look at this video.
Are you using some type of “sticky” plugin?
Forum: Fixing WordPress
In reply to: author nameRemove the template tag
<?php the_author() ?>from whatever theme file it resides in. (home.php, index.php, single.php etc)Forum: Fixing WordPress
In reply to: [How To] Show Posts Related To Category Only?<?php global $post; $categories = get_the_category(); foreach ($categories as $category) : ?> <h3>More News From This Category</h3> <ul> <?php $posts = get_posts('numberposts=20&category='. $category->term_id); foreach($posts as $post) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> <li><strong><a href="<?php echo get_category_link($category->term_id);?>" title="View all posts filed under <?php echo $category->name; ?>">ARCHIVE FOR '<?php echo $category->name; ?>' CATEGORY ยป</a></strong></li> <?php endforeach; ?> </ul>This will spit out a list of the 20 most recent (configurable) entries of the particular category the post being viewed on single.php belongs to.
Edit: of course if the post belongs to more than one category you will get multiple instances of the list.
Forum: Themes and Templates
In reply to: The Theme is NotWhat is your URL?
Forum: Fixing WordPress
In reply to: How to prevent hotlinking without destroying my website?An option I like is the Hotlink Protection Plugin. What is doesn’t do is prevent hotlinking. What it does do is serve an alternate image. You can use the default image it comes with or create your own. (use your imagination here)
Forum: Plugins
In reply to: Plugin to summarize posts on index?If you use the Except box beneath the write post window this should preserve your formatting. For images you can do that using custom fields.