Search Results for '+.+default+.+'
-
Search Results
-
The admin functions on the topic.php page (where one can delete, close, stick or move a post) takes up three lines. View source:
<div class="admin">
[Stick topic (to front)]
[<form id="topic-move" method="post" action="http://domain/bbpress/topic-move.php">
<fieldset>
<div>
<input type="hidden" name="topic_id" value="5" />
<label for="forum-id">Move to</label>
<select name="forum_id" id="forum-id"">
<option value="4"></option>
<option value="1"></option>
<option value="2"></option>
<option value="3"></option>
<option value="5" selected="selected"></option>
</select>
<input type="hidden" id="_wpnonce" name="_wpnonce" value="(number)" /><input type="submit" name="Submit" value="Move" />
</div>
</fieldset>
</form>]</div>
</div>
The first line ends with a ”.
I’ve examined the topics.php page, found the ‘<?php bb_topic_admin(): ?>’, and found the function in bbpress/bb-includes/functions.bb-templates.php.
if ( !$dropdown )
return;
$r = $before . ‘<form id=”topic-move” method=”post” action=”‘ . bb_get_uri( ‘bb-admin/topic-move.php’, null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_ADMIN ) . ‘”>’ . “n”;
$r .= ‘<fieldset>’ . “n”;
$r .= ‘<div>’ . “n”;
$r .= ‘<input type=”hidden” name=”topic_id” value=”‘ . $topic->topic_id . ‘” />’ . “n”;
$r .= ‘<label for=”forum-id”>’. __( ‘Move to’ ) . ‘</label>’ . “n”;
$r .= $dropdown . “n”;
$r .= bb_nonce_field( ‘move-topic_’ . $topic->topic_id, ‘_wpnonce’, true , false );
$r .= ‘<input type=”submit” name=”Submit” value=”‘ . __( ‘Move’ ) . ‘” />’ . “n”;
$r .= ‘</div>’ . “n”;
$r .= ‘</fieldset>’ . “n”;
$r .= ‘</form>’ . $after;
I thought the problem might be the div after the fieldset, so I changed it to span, but that did not correct the problem. I can not read or understand the function.
Is it possible to get the move option on the same line as the delete, close and stick options?
is there a way to change the default gravitar to something custom? i’m not talking about a member’s gravitar, but the one that shows up if they have not personalized it. there is a plugin to do this in wordpress, but i haven’t found one in bbpress yet.
also something i noticed is that under the gravitar… where the member’s name shows up, when you click on it the link takes you directly to their website instead of to their member profile……….. has anyone come across that and figured out a way to change that?
does bbpress have a permalinks option like wordpress does?
thanks!!!!!
Topic: avatars
i tried one of the avatar plugins, but haven’t had much success with it. is there a way to change the default avatar… either via the code or is there a plugin that actually works?
thanks much!
I am helping a friend get bbpress installed with his wordpress site at http://www.sealgrinderpt.com and http://www.sealgrinderpt.com/forums.
I have it installed. I have added a link on home page to get to the forums.
My wordpress integration seems to not be working. He has an admin account on wpress that is not recognized on the forums. I created an default admin account in the bbpress installation. That account is not recognized when logon to wpress. The wp_config file does not have a $table entry so wondering if that is my downfall on the integration.
Next question is how to get the header and look and feel of wpress site to carry over to the forum? I want at least the logo at top and the navigation menus.
Thanks for help on these 2 issues. I am sure I will have more as I work on this site for my friend. Thanks in advance for all of the assistance.
Jennifer