Forum Replies Created
-
In reply to: Plugin: Forums Moderators
hey GiantsFan
you’ve done the right thing. the forum moderators plugin is missing the capabilities which were added as part of release 0.8.
Go Giants!
In reply to: installation problem 0.8check if all the documents were uploaded in ascii format. sometimes they get uploaded in the binary format.
In reply to: Typo/Outdated Content in Theme Instruction PageIn reply to: Navigation Themegood one stitzelj..
In reply to: Plugin: Visual Support Forums for bbPressThe code looks gr8 sam… go ahead and commit it to version 2.0
In reply to: Plugin: Visual Support Forums for bbPressi think you are talking about the update of meta key..
that might have some problems for people who have used the support forum plugin 1.0 after upgrading to 0.8 that is why i had to do it that way around.
let me explain.
take example where a person has upgraded to 0.8 – all his values from the topic table have been moved to meta data key – topic_resolved. now if they installed support forum 1.0 they would introduce new meta data called support_forum_resolved for topic x. if we just rename support_forum_resolved to topic_resolved we might get duplicate meta key topic_resolved for topic x.
also if you are getting an error that might be because of
In reply to: Please Help!im done..
let us know how it goes.. if you have any issues. create a ticket here
https://plugins-dev.bbpress.org/newticket
and set component as support-forum
In reply to: Please Help!the topic resolved functions have been removed from the core bbpress distribution. but the functions are converted over to a plugin.
https://bbpress.org/plugins/topic/16
suleiman, i would suggest you to hold on and not install the plugin right away. I will be updating the plugin today evening . after that you can use the plugin and it will recognise all your topic statuses. I will put a note in this topic when it is done.
In reply to: default templates being usedthe theme system in the 0.8 version is a little different from the 0.75 version. this is an upgrade.
put the theme files in a folder and drop that folder in the bb-templates or my-templates directory.
In reply to: Drupal Forum to bbPressSolution From Trent!
Here is something for drupal to phpbb and then you can use the converter back to bbPress maybe…..?
http://www.phpbb.com/phpBB/viewtopic.php?t=489446&sid=412af8780d34d31955c08dc174f28a75
In reply to: can’t view account info or posts in new forumYou will have to create .htaccess file in the installation folder and add
Options +MultiViews
in it. refer to https://bbpress.org/documentation/faq/#pretty-permalinks
for details
cheers!
In reply to: So, do tags *really* improve discussions?tags can help sort of visualize related terms.. to best explain go to this website and search for something
http://aquabrowser.hclibrary.org/aquabrowser/
you will see the results of that keyword and also other keywords that are on the results. mario like you said, may be its important to pay attention to the visual representation and how it could be leveraged.
– so1o
In reply to: Plugin: Visual Support Forums for bbPressoh please feel free to.. try checking in the code. if you do not have access, may be you can add a patch file and i’ll check it in for you.
In reply to: Unique Style Sheet?in header.php check is_forum() or is_topic() or so on and call stylesheets accordingly..
In reply to: Plugin: Visual Support Forums for bbPressa suggestion:
why dont you integrate both the plugins into one. and drive the icons from the admin menu for the options.
In reply to: Login / Logout WP + bbPress Cookies?if you have the forum as a sub folder in wp installation and have the wp_siteurl and wp_home url set you shouldnt have a problem..
if you dont have the instllation that way… go to
https://bbpress.org/documentation/integration-with-wordpress/
and look up the cookies section to fix the problem
In reply to: Can’t get WordPress and bbPress to integratejust to understand the problem.. you have more than 1 user in the system..
In reply to: Can’t get WordPress and bbPress to integrateon the top of config.php add
define('WP_BB', true);
and
require_once( '/absolute/path/to/wordpress/ config/file/wp-config.php');
In reply to: redirection errorjust like it says.. you are missing your profile-edit.php
In reply to: redirection errorthe problem is your config.php
it should be
$bb->domain = 'http://videos.superheldenclub.de';
$bb->path = '/community/';
and not
$bb->domain = 'http://videos.superheldenclub.de/community';
$bb->path = '/';
In reply to: redirection errorDonHarry
go to config.php
add this $bb->debug = 1;
and then let us know.. we’ll try to debug this problem..
In reply to: Theme Integration — errorscheck the display-name.php in the plugins dir
In reply to: Private Forum scriptthere are is a ticket in trac for role based forum access.. but it is a major change and might not be in atleast till release 1.0..
its on the plate..
In reply to: If code-questionnope.. it will be
if(is_front() || is_topic())
In reply to: Another integration question.you have to include wp-config.php in config.php before the call to include bb-settings.php