Forum Replies Created
-
In reply to: highlight first post
i’ll give this a shot kawauso.
thanks for now
In reply to: jquery @ global headergreat, thanks a bunch for the help guys!
In reply to: change text.sorry to bother you again, but i also need to change the [sticky] tag on the frontpage in to something else, lets say in ricky.
the same trick you’ve mentioned above with the add new?
thanks
In reply to: button for gueststhank’s a ton ck, that was the right one, with a little
<?php else : ?>
modification of coursehelpful as usual.
nope a button was really necessary, but thanks anyways
In reply to: bbPress 1.0-alpha-4 releasedi hope a working “preview post” feature is an integral part of 1.0
In reply to: change text.ah gotcha that worked like a charm, thanks a ton.
btw i use 0.9.0.2 .
In reply to: change text.it’s the Topic – Add New » on front-page.php
<th align="left"><?php _e('Topic'); ?> <?php new_topic(); ?></th>
thats why i thought there is a language file or such around, because the phrases here are actually php tags.
In reply to: change text.well actually i want to change things like “» ” or the “|” in the footer (Welcome, admin | Admin | Log Out ) .
so sorry for the confusion so far
In reply to: change text.i guess this is a way over my head, is there no single php file or such where i’m able to change the phrases directly with a text editor?
thanks
In reply to: adding scripts to headerhey chris that worked, i mean the uri fix.
thanks a bunch.
In reply to: adding scripts to headerhello chris,
i’m actually not able to run the first accordion of http://jquery.bassistance.de/accordion/demo/ inside of mytheme/front-page.php
here is my header.php part
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php bb_title() ?></title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.accordion.js"></script>
<script type="text/javascript" src="js/jqq.js"></script>
<?php bb_feed_head(); ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?>
<?php bb_head(); ?>
</head>
<body id="<?php bb_location(); ?>">
........ etcand the front-page.php part:
<div class="basic" id="list1b">
<a>Titel1</a>
<div>
You've seen it coming!
Buy now and get nothing for free!
</div>
<a>Titel2</a>
<div>
your bear, you have to admit it!
No, we aren't selling bears.
</div>
<a>Titel3</a>
<div>
get two for three beer.
And now, for something completely different.
And now, for something completely different.
</div>
<a>Titel4</a>
<div>
get two for three beer.
And now, for something completely different.
And now, for something completely different.
</div>
</div>jqq.js is:
jQuery().ready(function(){
// simple accordion
jQuery('#list1a').accordion();
jQuery('#list1b').accordion({
autoheight: false
});
// second simple accordion with special markup
jQuery('#navigation').accordion({
active: false,
header: '.head',
navigation: true,
event: 'mouseover',
fillSpace: true,
animated: 'easeslide'
});
// highly customized accordion
jQuery('#list2').accordion({
event: 'mouseover',
active: '.selected',
selectedClass: 'active',
animated: "bounceslide",
header: "dt"
}).bind("change.ui-accordion", function(event, ui) {
jQuery('<div>' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown</div>').appendTo('#log');
});
// first simple accordion with special markup
jQuery('#list3').accordion({
header: 'div.title',
active: false,
alwaysOpen: false,
animated: false,
autoheight: false
});
var wizard = $("#wizard").accordion({
header: '.title',
event: false
});
var wizardButtons = $([]);
$("div.title", wizard).each(function(index) {
wizardButtons = wizardButtons.add($(this)
.next()
.children(":button")
.filter(".next, .previous")
.click(function() {
wizard.accordion("activate", index + ($(this).is(".next") ? 1 : -1))
}));
});
// bind to change event of select to control first and seconds accordion
// similar to tab's plugin triggerTab(), without an extra method
var accordions = jQuery('#list1a, #list1b, #list2, #list3, #navigation, #wizard');
jQuery('#switch select').change(function() {
accordions.accordion("activate", this.selectedIndex-1 );
});
jQuery('#close').click(function() {
accordions.accordion("activate", -1);
});
jQuery('#switch2').change(function() {
accordions.accordion("activate", this.value);
});
jQuery('#enable').click(function() {
accordions.accordion("enable");
});
jQuery('#disable').click(function() {
accordions.accordion("disable");
});
jQuery('#remove').click(function() {
accordions.accordion("destroy");
wizardButtons.unbind("click");
});
});info: the js-parts are in the “theme” root (kakumei/js/) , the css parts of the accordion are merged into the original kakumei stylesheet.
thanks so far.
In reply to: bbPress Facebook pagealright thanks
In reply to: bbPress Facebook pageah ok gotcha.
other than that just a tiny little request, i searched for some plugins, but most of them are not up to date or infunctional, is there a way to re-validate plugins or to sort them out in categories like : alpha stage plugins / discontinued plugins / validated plugins ?
thanks a bunch.
In reply to: bbPress Facebook pagemay I ask what the beta part of bbpress actuall is? is the “beta” thingy core related or more 3rd party related?
In reply to: forum exporter pluginill give this a try, thanks
In reply to: bbOrg?hello,
im not sure, but i guess this is the right place to get this “bbpress.org” theme for bbpress, or is there a another spot to download this template?
thanks a ton