phoenixd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments Form not ShowingNevermind…got it…
Forum: Everything else WordPress
In reply to: Site conversion to WordPress sensible/useful?Of course. ?? almost any design can become a WP powered site.
Gallery is a little more intermediate in my opinion for setting up and integrating, but their is lots of support on the forum.You can keep your colours and images. It requires changing the css. When I approach integrating a design, I check which templates look the most similar to what I am going to do, and then modify it.
Alexking’s website has lots of great templates due to the template competition he had.
Forum: Plugins
In reply to: Add Ad between First and Second PostNow it shows Hello after my 3rd post. ??
Forum: Plugins
In reply to: Add Ad between First and Second PostOkay, I figured it out.
I had to change a few things.
$candy[3] = Hello’;
// Don’t change anything below this line
$dropping = 1;function moosecandy($text)
{
global $dropping, $candy;
if (isset($candy[$dropping]))
{
$the_content = “<div id=\”moosecandy$dropping\” class=\”moosecandy\”>”;
$the_content .= $candy[$dropping];
$the_content .= ‘</div>’;$dropping++;
$text = $text . “\n” . $the_content;
}
else { $dropping++;}
return $text;
}add_filter(‘the_content’, ‘moosecandy’);
?>Forum: Plugins
In reply to: Add Ad between First and Second PostI am using a modified Mallow template (which is based off Kubrick.)
Does the code work with 1.5? And is there anyway to make it work with a Kubrick based template?
Forum: Plugins
In reply to: Add Ad between First and Second PostTrying:
https://jason.goldsmith.us/wp-plugins/moosecandy.phpsBut it is not doing anything.
I am using WP 1.5
The div that it is supposed to create is not even showing up.
Plugin is uploaded, and activated.
I just used Hello as the test text.Forum: Fixing WordPress
In reply to: Level ControlFound it…it is the menu.php file in wp-admin.
Forum: Fixing WordPress
In reply to: Level ControlCan anyone tell me the file that controls what people can do depending on their level?
Forum: Fixing WordPress
In reply to: Level ControlAnyone have any ideas? I think the Pages admin does not even show up until someone is lvl 6 or 7 and above…but that is alot of access for ppl…
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageHow about showing all posts from a category?
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageThis is turning out to be way more difficult than I had hoped…
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageIt looks like it has something to do with get_settings(‘home’) to me… because the links should be index.php?cat=# on the index page, and they aren’t. They all show up like steph.phoenixrealm.com/?cat=#.
Does that make any sense to anyone?
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageTried that. It breaks the exclude, and does not add the writings.php into the mix. ??
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageThanks for the wp_list_cats…that is working for getting rid of General.
As for using writings.php for the link…it just won’t work…
<?php wp_list_cats(‘sort_column=name&optioncount=1&file=writings/writings.php&exclude=1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18,19,20,21,22,23’); ?>
<?php wp_list_cats(‘sort_column=name&optioncount=1&file=./writings/writings.php&exclude=1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18,19,20,21,22,23’); ?>
<?php wp_list_cats(‘sort_column=name&optioncount=1&file=writings.php&exclude=1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18,19,20,21,22,23’); ?>
None of them work…
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageI will look at wp_list_cats….any idea how to get the categories to use writings.php instead of index.php?