Search Results for '"wordpress'
-
Search Results
-
Hello … I’m using bbPress 1.2 … I am very pleased with this standalone version …
My question is how could I add WordPress to my bbPress 1.2 … So as to update to the latest version of bbPress … Alani have 21k users that have site roles “none” and empty forum roles thats maybe coz ijust shfted from a joomla website into wordpress & bbpress. I want to make the site role ‘subscriber’ and forum role ‘participant’ to all users how can this be done with writing a code ??
Hello there,
I use WordPress version 3.9, bbPress Forum 2.5.3, Theme Emphaino.
Forum works if you make an entry, but answering the entry the forum looks deformed, the actual entry is whole covered by the answer. I the answer is very long it is cut by the forum and you can only see a part of that.
Like here
http://lareinadelasvacas.es/foro/topic/circuito-por-russia-en-juniojulio-2014/
http://lareinadelasvacas.es/foro/topic/test/?view=allThe sense of my forum is answering the entries of my users. Already working hours to fix that but I just don´t get it.
Help me please!
Topic: Mass email to all users
I have more than 22k users i want to send a mass email to all of them, i just converted my website from joomla to wordpress and bbpress, so what can i do to send all users?
i tried
mass email http://wordpress.org/plugins/mass-mail/installation/
Sitewide newsletter http://wordpress.org/plugins/sitewide-newsletter/but non worked
If I view the index of the bbpress forum I can see my background image for my theme. When I click to go into a specific forum, the background is replaced with a color (off white).
I imagine this is all CSS related and somewhere in the code. I however would like to set all forums to show the same background. I am using a theme called “Explicit” for my wordpress site.
Thanks. I hate being new to this.
I have created a new bbpress forum on my site. If I click on the link through the top menu I get this:

If I click on the announcements section/forum/category… I get this:

I want the index to show up the same as the in forum view. But it seems to be not wanting to work right. I’m also unable to override the background image for that page for some reason.
Any help would be appreciated. I’m at a point now where I’m about to install a different forum and just use it on a sub-domain with no integration with WordPress. This is the second forum I’ve gone through and it’s annoying that there isn’t some simplicity here.
Hi there,
I’m working with a custom profile setup (consolidating the profiles from multiple plugins) and and wondering how I can redirect a bbpress user to this central profile when they try to access their forum profile. In other words, how do I make it so that someone who tries to visit:
http://www.example.com/forums/user/johnsmith
is redirected to:
http://www.example.com/profile
I saw a very old post in this forum that discussed this topic, and they suggested using the following method:
add_action('bb_init', 'profile_redirect'); function profile_redirect() { if (is_bb_profile() && $_GET['tab'] != 'edit' && $_GET['tab'] != 'favorites') { $user = bb_get_user($_GET['id']); if ($user) wp_redirect("http://www.example.com/member/" . $user->user_nicename); } }Since it’s so old, it doesn’t work anymore, and honestly, what I’d like to do is slightly different. I’d like to redirect a user away from the profile page (regardless of which section they’re on–whether it be favorites, subscriptions, or edit profile) as long as:
- They are logged in
- They are on their ownprofile page
How could I do that with the current version of WordPress?