freelantz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor broken – tinyMCE not definedForgot the link. The error is being tracked here:
http://trac.ww.wp.xz.cn/ticket/3882Forum: Fixing WordPress
In reply to: realTinyMCE is not definedSame problem here in 2.2
Forum: Fixing WordPress
In reply to: Root address no longer worksResolved… I had a backup of my index.php.
Forum: Plugins
In reply to: Call to undefined function: ujc_siderss()Thanks. I copied it into my own functions.php file. Working great.
Forum: Plugins
In reply to: Call to undefined function: ujc_siderss()Got it. I had to give myself a five minute crash course in RSS elements and then I removed the description item from the output of wp_rss, included one of my css classes, etc. I’m good to go.
Forum: Plugins
In reply to: Call to undefined function: ujc_siderss()All I want is the Post Title… not the author, blog title, date, Technorati icon, etc. I can manage the HTML, that’s not the problem. I guess what I need to do is modify the wp_rss function, correct?
Forum: Plugins
In reply to: Call to undefined function: ujc_siderss()“…you can code it yourself easily enough”
That’s easy for you to say π
I tried your suggestion to pull in a technorati feed and it did indeed display the feed, but the format was incredible bad – a mess really.
Any suggestions on my original error? This should be easy enough to figure out, should it not… my sidebar just can’t “see” the function.
Forum: Fixing WordPress
In reply to: Blog in non-root folder incompatible with Static Front Page?Everywhere? Two places… same topic.
Above link works for me, dude:)
Forum: Fixing WordPress
In reply to: WordPress as a CMSActually, correction of above instructions. I did not attach the index.php template directly to the Blog page. I created a template called blog.php as per the instructions here.
Scroll down to “Making your blog appear in a non-root folder”:
< ?php
/*
Template Name: Blog
*/
?>
< ?php query_posts(‘cat=-0’); //gets all posts load_template( TEMPLATEPATH . ‘/index.php’); //loads index ?>Again, I was able to accomplish exactly what I (and apparently you, swinton) was trying to accomplish using the Static Front Page plugin.
Forum: Fixing WordPress
In reply to: Blog in non-root folder incompatible with Static Front Page?I found a solution but it does not involve Static Front Page. I’m using Get-A-Post (http://tinyurl.com/qyqsj).
Create a page called Home and attach a template called home.php like this:
< ?php
/*
Template Name: home
*/
?>< ?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
< ?php get_a_post(‘5’); ?>
< ?php the_content(); ?>
</div>
< ?php get_sidebar(); ?>
< ?php get_footer(); ?>
Then create a page called Blog and attach the index.php for a template.
Note: I had a problem and had to edit the plugin. See my comments at the above link.
Forum: Fixing WordPress
In reply to: WordPress as a CMSI found a solution but it does not involve Static Front Page. I’m using Get-A-Post ( http://tinyurl.com/qyqsj).
Create a page called Home and attach a template called home.php like this:
< ?php
/*
Template Name: home
*/
?>< ?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
< ?php get_a_post(‘5’); ?>
< ?php the_content(); ?>
</div>
< ?php get_sidebar(); ?>
< ?php get_footer(); ?>
Then create a page called Blog and attach the index.php for a template.
Note: I had a problem and had to edit the plugin. See my comments at the above link.
Forum: Fixing WordPress
In reply to: WordPress as a CMSI have the exact same question as you. Post your answer if you find it. I suspect we need to modify the plugin.