Forum Replies Created
-
In reply to: Problem with Ignore User Plugin – BBpress 1.1
which ignore plugin were you using?
the old CK one?
I need one too, for memembers to use. one which is compatible with latest bbpress version
anyone know?
In reply to: adding page numbers to forum page of mysty themehere’s the php <?php topic_last_post_link(); ?>
you can see it here http://theblackkeysfanlounge.com/forum/
In reply to: adding page numbers to forum page of mysty themehere’s the php <?php topic_last_post_link(); ?>
you can see it here http://theblackkeysfanlounge.com/forum/
In reply to: adding page numbers to forum page of mysty themefixed this.. added to forum.php and front-page.php
<small>” rel=”nofollow”>Go to latest post</small>
basically just a quick link but works in the same way
In reply to: adding page numbers to forum page of mysty themefixed this.. added to forum.php and front-page.php
<small>” rel=”nofollow”>Go to latest post</small>
basically just a quick link but works in the same way
ahh thanks for no particular reason
turns out it was some rogue html in topic-tags.php that started the issue after hot tags code was added
case closed
ahh thanks for no particular reason
turns out it was some rogue html in topic-tags.php that started the issue after hot tags code was added
case closed
i think it’s an HTML issue, activated after adding the code above.
if you use firebug to inspect, the font size is small because it’s not in the <div id=”main”> whereas it is on the big font size page
anyone know why the posts should fall out of the main div that sets font heights?
more importantly how to correct this?
simply removing the code i added makes no difference
i think it’s an HTML issue, activated after adding the code above.
if you use firebug to inspect, the font size is small because it’s not in the <div id=”main”> whereas it is on the big font size page
anyone know why the posts should fall out of the main div that sets font heights?
more importantly how to correct this?
simply removing the code i added makes no difference
i should note that the post font size has only changed for threads where new posts have been added since i made the tag cloud change.
you can see the old font size on older posts
i should note that the post font size has only changed for threads where new posts have been added since i made the tag cloud change.
you can see the old font size on older posts
sorry didn’t see this
Possible to make certian forums not appear in latest discussion?
the core bit of info posted in this thread below. this worked fine for me with BBPress 1.0.2:
Just edit it to exclude whatever forum numbers you want and add it to the plug-ins folder.
<?php
/*
Plugin Name: exclude
*/
function filter_front_page_topics($where){
$exclude_forums=array ("13","19"); // enable this to manually specify specific forums by id #
// $forums = get_forums(); foreach ($forums as $forum) {if ($forum->forum_parent) {$exclude_forums[]=$forum->forum_id;}} // exclude ALL sub-forums
if ( is_front() ) {foreach($exclude_forums as $forum) { $where.=" AND forum_id != ".$forum." "; }}
return $where;
}
add_filter( 'get_latest_topics_where', 'filter_front_page_topics');
add_filter( 'get_latest_posts_where', 'filter_front_page_topics');
?>In reply to: Compatibility ….so if you are running 1.0.2, how do you switch to 0.9. uninstall? and re-install the old version
i’ve managed to do something to my signatures which used to work fine with 1.0.2 albeit the plugin was first added at 0.9 level
In reply to: adding smilie gif to existing default folderoops forgot to update the package-config.php
fixed
In reply to: posts per page setting@markus cool. yeah i had installed that plug in. was just hiding. cheers. sorted
In reply to: custom header file locationscase closed
figured it out underthe theme’s function.php
define(‘HEADER_TEXTCOLOR’, ”);
define(‘HEADER_IMAGE’, ‘%s/img/misty.jpg’); // %s is theme dir uri
define(‘HEADER_IMAGE_WIDTH’, 880);
define(‘HEADER_IMAGE_HEIGHT’, 200);
define( ‘NO_HEADER_TEXT’, true );
In reply to: How to display "voices" in forum headers@chrishajer what’s the move to find out all the places where the Voices code has been commented out?
In reply to: removing tagsi have the same prob – can’t delete tags. lots of plugins, no template alts
In reply to: add text to home page of forumsweet action. ta.
In reply to: add text to home page of forumwhat if i wanted to keep the tags and have text below?
just add:
<h2><?php _e(‘Some Text’); ?></h2>
<p>Text text text.</p>
i’m surprised there’s not a sidebar text plugin…seems to be a plugin for everything else
In reply to: bbpm 404 error after activationrealised my my-plugins permissions were not set on 755. changed it and all working fine.