Search Results for 'code'
-
Search Results
-
I am currently experiencing a padding issue with mini avatar icon displays. For example, on the last post author among other things:
[IMG]http://i.imgur.com/YYBQoHX.png[/IMG]
I am using a custom avatar plugin and it seems users with blank avatars don’t have this padding issue. I have checked CSS and can’t seem to find where to mess with this padding or anything that seems to work.
I am also using this code in my loop-single-forum file to display the topic title under the last post time
<?php do_action( 'bbp_theme_before_topic_author' ); ?> <div class="bbp-forum-last-topic-name"><a href="<?php bbp_forum_last_topic_permalink(); ?>" title="<?php bbp_forum_last_topic_title(); ?>"><?php bbp_forum_last_topic_title(); ?></a></div> <?php do_action( 'bbp_theme_before_topic_author' ); ?> <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_author' ); ?>My site:
http://the-divine.net/forumTopic: New install prefix issue
Playing around with a test WP install with bunch of plugins I intend to use in production.
So I installed WP at /blog and installed handful of plugins, notably bbpress and buddypress, yoast seo
This is the problem:
http://www.mydomain.com/blog/forums/It doesn’t show all the forum categories. It’s showing up like a blog post/page instead.
This is one of the parent forums:
http://www.mydomain.com/blog/forums/forum/the-buzz/Why is it showing /forums/forum? I only want it to be for example /forums
Now, if I try to go to http://www.mydomain.com/blog/forums/forum/ to see the whole list of forums like it should be, it redirects me to “forum banners”?
MY SETTINGS:
permalinks: post name
Yoast SEO: %%title%% %%page%%
.htaccess
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule>Appreciate any help on this. Thanks.
I tried this and it actually works.
-
Place Adsense over single from topic
That is really simple way to place ads over the single topic of your bbpress forum. You just use ftp to customize the following file
wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic.php
Just place your Adsense ads code over or under
Also you can place that on otherwhere such
content-single-forum.php
content-archive-forum.php
content-archive-topic.phpI’ve successfully installed bbpress2 and migrated every content from the old mingle forum and topics/reply to bbpress, by following these advices:
https://codex.bbpress.org/import-forums/mingle/To rewrite every old mingle topic’s google search to bbpress, i’ve modified the .htaccess file on the root directory as shown below:
RewriteEngine On RewriteBase / RewriteRule ^forum/forum-group2/discussioni-forum1/(.*)-thread\d+ http://www.mysite.it/forums/topic/$1/ [R,L](in my case i’ve only one forum)
It works!Topic: Custom Forum Layout
I have multiple forums all secured by a membership-plugin. I would like to create 1 page for all the forums and have the page as such:
BASIC MEMBERSHIP LEVEL FORUM TITLE
There are several forums, one each for the different facilitated group. Please note that although all forums are listed, you will only have access to the facilitated group you belong to.
[forum a shortcode]
[forum b shortcode]ADVANCED MEMBERSHIP LEVEL FORUM TITLE
There are several forums, one each for the different facilitated group. Please note that although all forums are listed, you will only have access to the facilitated group you belong to.
[forum c shortcode]
[forum d shortcode]The appearance of the shortcode I would like to be similar to [bbp-forum-index] ….
List the forum name (link) with (ideally) the # of topics, the # of posts, and the freshness.
I do not want to see the detail and the box for creating a new topic on this page. The forum link to topic and reply can function as they normally do.
Is this clear and does anyone know how I can accomplish this?
Hi guys,
the way bbPress outputs the login page bugs me, a lot. What I am trying to do is add a login box to my layout, when I did – I found it added a list and a horrible fieldset around the whole thing. This doesn’t work with my design at all.
So, on with my quest to change this, I found there is no template readily available to just change. Really? So, it seems all I can do is hack away at the core code, which will all be reverted once a new version comes around.
Does anyone have any suggestions for this?