Search Results for 'code'
-
AuthorSearch Results
-
October 13, 2009 at 2:56 pm #80413
In reply to: Import bbpress users into buddypress?
Ivaylo Draganov
MemberI am currently attempting something similar. I have an integrated WP and bbPress but want to switch to WPMU. I’ve successfully imported the user tables through phpMyAdmin. There are three columns you need to add to the
wp_userstable:display_name - varchar(250) - blank default value
spam - tinyint(2) - default value = 0
deleted - tinyint(2) - default value = 0And in
wp_usermetatable you need to do a SQL search and replace to change all values that havewp_towp_1_(because the main blog in WPMU has got that table prefix)UPDATE wp_posts SET meta_key = replace(meta_key, 'wp_','wp_1_');October 13, 2009 at 10:27 am #80409In reply to: #1 added to start of new posts
johnhiler
MemberAh I just was noticing that you’re calling four separate CSS files in your bbpress install! That’s a lot… you might want to narrow that down a bit.
October 13, 2009 at 10:02 am #80406In reply to: #1 added to start of new posts
christianrharris
ParticipantThanks. I searched for this code and can’t find it. I can see lots of style.css files. Is it the file in the main directory or in my Themes folder.
Thanks kindly!
October 13, 2009 at 7:59 am #79937In reply to: Uploaded files but getting errors when visiting page
aequity
MemberWhen I deleted the line 2: require_once (‘admin.php’);
I now get the error that you currently see on the site
http://www.MichiganPokerNews.com
Which is:
Fatal error: Call to undefined function bb_get_forums() in /home/content/m/i/c/michiganpoker/html/bb-admin.php on line 4
Line 4 code currently reads:
$forums = bb_get_forums();
thoughts?
A.
October 13, 2009 at 7:39 am #80422In reply to: Is it possible to schedule forum topics?
johnhiler
MemberHere’s a list of bbPress professionals, although I don’t know how many of them have done development:
http://bbshowcase.org/forums/topic/bbpress-professionals-advertise-in-this-topic
The most prolific developers are _ck_ and Nightgunner5.
Nightgunner5 has written 9 plugins that I’m aware of (I use two of them, and they are excellent):
https://bbpress.org/plugins/profile/nightgunner5
_ck_ is by far the most prolific developer, with 60 plugins:
https://bbpress.org/plugins/profile/_ck_
But according to that link above on bbshowcase (her site), she’s not available right now. If you have a larger budget though, it might be worth dropping her a line and seeing if she’s open to it.
You might also try Ivan here:
https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/
If there are active plugin developers that I’ve missed, please let cupra know in the comments!
Good luck! And if you’re open to contributing any custom plugins to the plugin section when you’re done, that’d be great! I’d be glad to help test the plugin…
October 13, 2009 at 7:39 am #79935In reply to: Uploaded files but getting errors when visiting page
aequity
MemberThanks John: Before I move forward, I went to the site and here’s the code on line 2:
require_once(‘admin.php’);
I notice, looking through the file list both on my computer and on the remote site that there is no file labelled “admin.php”.
Could that be the problem? I’m using a 5.* version of php if that helps.
Also, the only file thats a “home” or “index” file is index.php….
Hope this may help you pinpoint the problem a bit. Thanks, A.
October 13, 2009 at 7:32 am #80421In reply to: Is it possible to schedule forum topics?
cupra
MemberI see. That makes sense. Are there any developers here in this forum with a good reputation who could be recommended? I’m very new here, and I’d rather hire someone who regularly contributes here than just anyone on a rent-a-coder type site. I would really appreciate being pointed in the right general direction.
October 13, 2009 at 5:18 am #64200In reply to: I want to show de WP profile instead BB Profille
dikkevandale
ParticipantNo specific solution
October 12, 2009 at 9:40 pm #80361In reply to: [REQ] Portal Plugin
Shagalaga
Memberooook it works all fine, but how can i achieve that bbcode light, images and emoticons to work on the portal?
October 12, 2009 at 8:40 pm #80405In reply to: #1 added to start of new posts
chrishajer
ParticipantBecause you have this in your style.css:
.entry ol li {
line-height:140%;
padding:0 0 1em 0;
list-style-position: inside;
list-style-type:decimal;
}to get rid of it, change the last line to this:
list-style-type:none;October 12, 2009 at 3:54 pm #64198In reply to: I want to show de WP profile instead BB Profille
dikkevandale
ParticipantI don’t want to show the bbpress profile only, instead I want everything that is shown on the bbpress profile to be shown on the wordpress user profile. Is this possible?
WP User Profile
blabla
Forum stats:
blabla
All on 1 profilepage.
October 12, 2009 at 3:33 pm #80317In reply to: Exclude Posts in Latest Discussions
Adam Harley (Kawauso)
MemberThis might be a cleaner solution
<?php
switch ( $topic->forum_id ) { // Ignore these forums
case 29:
case 30:
case 18:
case 15:
case 4:
continue 2;
}
?>or for including only certain forums
switch ( $topic->forum_id ) { // Include only these forums
case 29:
case 30:
case 18:
case 15:
case 4:
break;
default:
continue 2;
}
?>but using that if statement, you need to change the line
<?php if( $topic->forum_id != 29 && $topic->forum_id != 30 && $topic->forum_id != 18 && $topic->forum_id != 15 && $topic->forum_id != 4 )and you can find the forum ID from looking at its Edit URL in the admin panel (under Forums)
October 11, 2009 at 11:44 pm #80078In reply to: Can't see the upload Images with bb-attachments
carlosdelab
MemberHello Everyone,
I can’t see images in my bb-press
even, using the BBcode Buttons Toolbar.
this is a list of my plugins that I have now installed in my bbpress.
Akismet
Version 1.1Allow Images
Version 0.7.1BBcode Buttons Toolbar
Version 0.0.9BBcode Lite
Version 1.0.3bbPress Attachments
Version 0.2.7Bozo Users
Version 1.1Hello Louie
Version 1.0All of this plugins work fine, but with some extrange reason I can’t see any image.
best
and thanks in advance.
c.
October 11, 2009 at 3:27 pm #80332In reply to: Downloading "Kakumei"
chrishajer
ParticipantThe name of the theme is at the top of style.css – you can change it to something memorable there.
Theme Name: InvTrdr Custom ThemeYou can change other lines in that theme header if you want, but this one is the major one.
You can also replace screenshot.png in your theme folder with something that will visually identify the theme for you when you’re working in the admin.
October 11, 2009 at 3:22 pm #79444In reply to: How to add "Text Box" in sidebar in Inove theme???
chrishajer
ParticipantAdd the code to your sidebar.php, just follow the same format as the other two boxes that are there. Then put your code in between the opening and closing tags. It would be a new block of code looking something like this:
<!-- ads START -->
<div class="widget">
<h3>Please visit our sponsors</h3>
MHYD PASTE AD CODE HERE
<div class="fixed"></div>
</div><!-- end widget -->
<!-- ads END -->Just put that wherever you want in the sidebar, before or after whatever else is there. Just make sure you don’t post it into the middle of some other div and break the sidebar.
I don’t know of a bbPress theme with the concept of widgets. So you’ll have to edit sidebar.php manually to achieve what you want.
October 11, 2009 at 3:08 pm #80365In reply to: How do I uninstall and start from scratch?
Adam Harley (Kawauso)
MemberYou don’t need to uninstall to move bbPress as such, since it’s not installed in any way apart from the the .htaccess file settings and the database settings.
You need to change the
urisetting underbb_metain the database to the new forum URL, and then change the .htaccess file so it matches the new directory.The .htaccess file can probably be fixed by turning off Permalinks and then back on. Don’t forget to log out and in again too.
The options might be changeable by using __ck__’s All Options, but I have a feeling the URI isn’t editable from there.
October 11, 2009 at 11:47 am #80331In reply to: Downloading "Kakumei"
Adam Harley (Kawauso)
MemberEdit the style.css file in the copy, that’s where all the name/description data is stored
October 11, 2009 at 3:26 am #80356In reply to: Can I move bbPress to a different directory?
CraigElias
MemberOK so I got lucky and remove the line of code in my config file and was able to get back into the directory location and move things back to the way they were.
Now I just need to give this to someone who knows what they are doing to move it where I want.
Craig
October 11, 2009 at 12:06 am #80358In reply to: [REQ] Portal Plugin
Shagalaga
MemberWow i’ve just found sth

it has some bugs, but is quiet good, unfortunately this project seems to be abandoned
October 10, 2009 at 10:53 pm #80337In reply to: Topic icon
Jiyong
MemberHo nice, verry verry nice but …
i edit ► $unread_posts=
includ : .”.topic_icons {filter : alpha(opacity=100); -moz-opacity : 100; opacity : 100; }”
But it does not work
change another code ?
October 10, 2009 at 10:13 pm #80350In reply to: Navigation
ZoiX
Memberjohnhiler, thank you for all your help
October 10, 2009 at 9:25 pm #80349In reply to: Navigation
johnhiler
MemberAh got it. The checkboxes are a way for you to tell bbPress which stats to recount… once the recount is done, all checkboes are unchecked – so you can specify once again which stats you’d like to be counted next time.
If you have any more questions, please create a new thread and we’ll try to help you out there!
October 10, 2009 at 8:47 pm #80348In reply to: Navigation
ZoiX
MemberGlad it worked out.
That plugin was by _ck_, so you might want to send her a donation if you have the funds.Yes, I will do. I have many plugins from _ck_ and is time to say thank you.
I’m not following your question about checkboxes and Tools/Options?
Before that, I was check the two first options, but, after save, the checkboxes appear without check. Mmh, I am not sure if you understand me :S
October 10, 2009 at 8:19 pm #80347In reply to: Navigation
johnhiler
MemberGlad it worked out.
That plugin was by _ck_, so you might want to send her a donation if you have the funds.I’m not following your question about checkboxes and Tools/Options?
October 10, 2009 at 8:14 pm #32024Topic: Topic icon
in forum PluginsJiyong
MemberHello,
It is possible to change the opacity of the icon. If there is a new post 100%, otherwise 50%?
thanks
-
AuthorSearch Results