beastaugh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Making my blog widerTarski has support for custom stylesheets, you should create one of those rather than modify the base style, which will make it harder for you to upgrade to new versions of the theme.
Forum: Fixing WordPress
In reply to: Not Utilizing Post And Page Sidebar(Widgets)Comments have moved directly under the content in the latest version.
Forum: Themes and Templates
In reply to: where can i find complete function referenceThe source code is the best function reference.
Forum: Themes and Templates
In reply to: Assign a unique class for every postShould be pretty simple to do this by writing a function hooking into the
post_classfilter, e.g.function add_unique_post_class($classes, $class, $post_id) {
$classes[] = "unique_class_$post_id";
return $classes;
}add_filter('post_class', 'add_unique_post_class', 10, 3);
Forum: Themes and Templates
In reply to: my visitors can’t leave comments (even though comments enabled)Something’s halted the site’s output; it’s cut off after ‘Tagged:’. Try checking your error logs.
The Codex is out of date. Templates in a child theme should override those in the parent theme. There are some links in this article. Ian Stewart also wrote about this in his theme frameworks article.
I’m sure theme developers would be extremely grateful if you tried this out and updated the Codex.
Forum: Installing WordPress
In reply to: Fatal error: Call to undefined function admin_urlYou need to install WordPress 2.6 or higher, which Tarski 2.3 requires (as it says on the site).
Forum: Fixing WordPress
In reply to: Not Utilizing Post And Page Sidebar(Widgets)Try enabling it on the Tarski Options page. It’s listed under Sidebar.
Forum: Fixing WordPress
In reply to: No pagination on 2.3.2?If he’s trying it with the default theme then that code isn’t going to have any effect, since it’s in a totally different theme.
Obviously I can’t corroborate that he has the relevant option enabled, but since pagination works just fine for me on Tarski when it is, this seems to indicate that something else is going on.
Forum: Fixing WordPress
In reply to: No pagination on 2.3.2?From the discussion on the Tarski forum, my question:
I take it the older/newer posts navigation works ok on other themes?
And the answer…
Hrm. Just tested it with WordPress Default Theme 1.6 and had the same problem — no display at the bottom of the front page, but if I searched for a term (say, “Recipe”), the page navigation appears on the results page.
So the problem isn’t Tarski. It’s my site…
Forum: Themes and Templates
In reply to: Recent articles widget breaks comments on Tarski themeGot a hacky fix in trunk now, details here.
Forum: Themes and Templates
In reply to: Recent articles widget breaks comments on Tarski themePerhaps this might get more of a response in WP-Advanced? Cheers.
Forum: Fixing WordPress
In reply to: How to generate POT file for theme localisation?Much appreciated. 🙂
Forum: Themes and Templates
In reply to: I want this!!!Didn’t I answer this six months ago? 🙂
Forum: Plugins
In reply to: Structured blogging problemTarski uses Prototype for some of its admin stuff, that’s probably where the conflict comes from.