Search Results for 'code'
-
Search Results
-
I’m trying to embed one in this topic
<object width=”560″ height=”340″><param name=”movie” value=”http://www.youtube.com/v/pM1Z1y4-Ylg&hl=zh_TW&fs=1&”></param><param name=”allowFullScreen” value=”true”></param><param name=”allowscriptaccess” value=”always”></param><embed src=”http://www.youtube.com/v/pM1Z1y4-Ylg&hl=zh_TW&fs=1&” type=”application/x-shockwave-flash” allowscriptaccess=”always” allowfullscreen=”true” width=”560″ height=”340″></embed></object>
NOt working.. > <
I’m using this in BP under the user’s profile.
<h3 id="useractivity"><?php _e('User Activity') ?></h3>
<div id="user-replies" class="user-recent"><h4><?php _e('Recent Replies'); ?></h4>
<?php if ( $posts ) : ?>
<ol>
<?php foreach ($posts as $bb_post) : $topic = get_topic( $bb_post->topic_id ) ?>
<li<?php alt_class('replies'); ?>>
<a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> -
<?php if ( $user->ID == bb_get_current_user_info( $user->ID ) ) printf(__('You last replied: %s ago'), bb_get_post_time()); else printf(__('User last replied: %s ago'), bb_get_post_time()); ?> |
<span class="freshness"><?php
if ( bb_get_post_time( 'timestamp' ) < get_topic_time( 'timestamp' ) )
printf(__('Most recent reply: %s ago'), get_topic_time());
else
_e('No replies since');
?></span>
</li>
<?php endforeach; ?>
</ol>
<?php else : if ( $page ) : ?>
<p><?php _e('No more replies.') ?></p>
<?php else : ?>
<p><?php _e('No replies yet.') ?></p>
<?php endif; endif; ?>
</div>
<div id="user-threads" class="user-recent">
<h4><?php _e('Topics Started') ?></h4>
<?php if ( $topics ) : ?>
<ol>
<?php foreach ($topics as $topic) : ?>
<li<?php alt_class('topics'); ?>>
<a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> -
<?php printf(__('Started: %s ago'), get_topic_start_time()); ?> |
<span class="freshness"><?php
if ( get_topic_start_time( 'timestamp' ) < get_topic_time( 'timestamp' ) )
printf(__('Most recent reply: %s ago'), get_topic_time());
else
_e('No replies.');
?></span>
</li>
<?php endforeach; ?>
</ol>
<?php else : if ( $page ) : ?>
<p><?php _e('No more topics posted.') ?></p>
<?php else : ?>
<p><?php _e('No topics posted yet.') ?></p>
<?php endif; endif;?>
</div>but I get: No replies yet. & No topics posted yet.
what am I missing?
Topic: Unable to view old posts
Hi
I run a WP site and BBpress forum. Recently upgraded to BBpress latest release version and now when I log in I cannot view any old posts and when I try to create a new topic is reports ‘This topic has been closed’
On the top of dashboard I get the following…
Warning: Division by zero in
inetpubvhostssunstridercats.orghttpdocsbbpressbb-includesfunctions.bb-statistics.php on line 214
Warning: Division by zero in
inetpubvhostssunstridercats.orghttpdocsbbpressbb-includesfunctions.bb-statistics.php on line 194
Warning: Division by zero in
inetpubvhostssunstridercats.orghttpdocsbbpressbb-includesfunctions.bb-statistics.php on line 174
Warning: Division by zero in
inetpubvhostssunstridercats.orghttpdocsbbpressbb-includesfunctions.bb-statistics.php on line 244
I know this warning is shown if it belives there are no posts but the forum has been fine for a long time and has showing on the overview of the dashboard..
39 forums
82 topics
457 posts
So the posts are still there although I cannot see them or add to them.
Any help would be greatly appreciated.
How do I add forum name to latest discussion.
so instead of saying,
call for testers on the 0.9 branch and 1.0 trunk
to say,
Requests and Feedback: call for testers on the 0.9 branch and 1.0 trunk
I’ve tried
<?php forum_name(); ?>
The default Kakumei theme shows two variables in the user section of every post, at left.
You can see them both here as well, in this very post.
The first one is defined in the profile page as
Display name as
and links to whatever appears in theWebsite
field.The second one is defined in the profile page as
User Type
(which most often defaults toMember
), links to theProfile
page of the specific user, and could be changed by theCustom Title
field.How would it be possible to drop the
User Type
and just keep theDisplay name as
linking to the userProfile
page?I wrote a plugin which will show some data by a mysql query and I am doing it using
$bbdb
and I hooked it to thepost_post_form
but the problem is that the variable intended to store the query result is empty.However if I manually call the function in the template it works fine.
I am using the default theme. What could be the problem?