Rok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Spam? Read this.O.K. If we have all the three installed (Akismet, BB, SpamKarma), which has the precedence?
Forum: Fixing WordPress
In reply to: PHP5 scriptsHost name?
Forum: Fixing WordPress
In reply to: Problem with Pages and display pluginsTry viper’s Plugin
Forum: Fixing WordPress
In reply to: Foldable CategoriesPodz site has a script, with this you can make anything collapsable. See here…
Forum: Plugins
In reply to: Looking for a plugin to list all pluginsI am using viper’s Plugin, it works well.
Forum: Plugins
In reply to: How to display what page # your on?I don’t exactly remember the site, but there is a plugin, which displays the current location of your browsing i.e. ‘what page you are browsing?’.
Google for this plugin, or if I recall the site address, will post here.
Forum: Plugins
In reply to: Is there an Automated Backups Plug-in that emails the backup?I don’t know, if it is of any help to you, but read this Post and follow, if you like.
Forum: Fixing WordPress
In reply to: Image pop upsIf you want something using AJAX, search lightbox plugin on http://www.m3nt0r.de/blog
Forum: Plugins
In reply to: External links pluginDenis-de-Bernardy,
Eagerly looking forward.
Forum: Plugins
In reply to: External links pluginI had installed semi’s plugin and on the fly I got external links with image next to links.
But the problem is, it creates external links to all
<a></a>tags it finds, i.e. irrespective of ‘what it is’?For e.g. linked images (
<a><img src=""></a>) were also turned into external links.Is there a way to restric certain parts from being linkified. Please advice.
Forum: Fixing WordPress
In reply to: posting html codesTry to post after turning off WYSIWYG editor.
Forum: Themes and Templates
In reply to: Sidebar dropping below postskldtech,
Just check your few previous Posts by running seperately i.e. goto dashboard /manage/post and right click View to open Posts in New Tab and see which Post is making the Sidebar drop.
Once you find the Post, either delete or correct the Post and things will work normally.
Forum: Themes and Templates
In reply to: Sidebar dropping below postsAnother important casue of Sidebar drops under post is un-closed “tags or codes” within the Posts.
Forum: Fixing WordPress
In reply to: Borders on Main Pagebadkarma9000,
you can add any number of Classes or ID’s as you want. Enter following in the CSS and define this in your Post.php or whatever template controls your Post content.
.post { border: 6px solid #e00000; margin: 10px; padding: 20px; }Forum: Fixing WordPress
In reply to: Abbreviated Archives?davez0r,
The Page & Post works differently in WordPress. You can not simply create & insert PHP code into Page.
<quote>create a sub-page of the archives page that lists the archives with no limit</quote>
As monkeypup suggested above, all you have to do is:
1. First create a Page template for e.g. copy your Archive.php template and save as Archive-2.php (name it, what you like). And open it using Notepad and insert the template name, you created.1a. Or simply create a new template and insert the following and save as Archive-2.php.
<?php
/*
Template Name: Archive-2
*/<?php _e('Archives'); ?>
<?php wp_get_archives('type=monthly&format=other&after=
'); ?>
?>2. After this goto dashboard /Write/Page and create a new page.
a. Enter the Page title like Full Archive List(or whatever you like).
b. Click on Page template (located on the right side) and select the new template from the dropdown Archive-2.php (Created in step 1a)
c. And save the new page. Remeber don’t put anything in the body part of the page.