Search Results for '"wordpress'
-
Search Results
-
<div id="sub_header">
<?php
/***
* This conditional determines where exactly what page you are one.!
**/
if(is_home()){
/* Blog Page */
echo '<h1 class="page_title">';
echo 'Welcome to my Blog';
echo '</h1>';
echo '<h2 class="page_blurb">';
echo ' just another wordpress site';
echo '</h2>';
}else if(is_front_page()){
/* Landing Page */
echo get_post_meta($post->ID, "Landing Header", true);
}else{
echo '<h1 class="page_title">';
echo get_post_meta($post->ID, "page title", true);
echo '</h1>';
echo '<h2 class="page_blurb">';
echo get_post_meta($post->ID, "page blurb", true);
echo '</h2>';
}
?>
</div>This the default site of my bbpress forums:
http://localhost/mysite/forums/
And I try to make page for forum using the short code [bbp-topic-index] :
this is the link:
http://localhost/mysite/forum/
and I try to edit this code above:
}else if(is_page('forum')){
/* Forum Page */
echo '<h1 class="page_title">';
echo 'Forum Support';
echo '</h1>';
echo '<h2 class="page_blurb">';
echo 'Press community';
echo '</h2>';and it works fine only in page (forum) http://localhost/mysite/forum/
but when I click all the the content in the forums my Title and Blurb has gone.
WHat I want to do is my sub header page title and page blurb will appear in any page in forums.
ANYONE knows how to fix this or how to add code?
I’m just a beginners in wordpress
your reply is much appreciated,
Thank’s
Is there a way to allow my forum users to flag inappropriate posts and notify the admin? I am using WordPress 3.3.1 and the bbpress 2.0 plugin for WordPress.
Thanks!
Topic: I can't see my forum!!
Howdy, again.
When I installed bbPress, I installed it as a plugin into BuddyPress/Wordpress. I really didn’t do much to edit it but I never ran across an Admin Panel for the bbPress plugin.
The only place that I see anything related to bbPress is in my WordPress Dashboard Settings > Forums.
I’m trying to set a theme for my bbPress and have no idea how to through the WordPress/BuddyPress integration.
I have auto-embed enabled in WordPress Media options, and in the Forum options, yet links are still not converted: http://pantheones.com.au/forums/topic/media-test/
Can anyone help?
I’m sure this is a stupid question, but I’ve tried and can’t seem to find an answer to is.
I have bbPress installed on a Genesis/Education theme. People can leave comments and I can moderate them. However, I can’t seem to find a list of the users anywhere.
I expected to find them under settings in the back end of the WordPress system, but they aren’t there.
Sorry to waste your time on this, but I haven’t been able to figure it out after quite a bit of research.
Did I miss something really simple in the install?
Thanks
Topic: Can't locate my forum
I installed bbpress for my wordpress site. (Organic Themes if it makes a difference) Then I saw this message:
Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.
I don’t even know what that means and what to do.
Secondly, while I can locate “forums” on the left side of my dashboard and even preview when I make a thread I can not locate it in my website. I even create a new page titled “forums” thinking that would do the trick, but nothing. What should i do?
I just installed bbPress 2.0.2 forum plugin for WordPress, and would like to change the text of link
HometoiGeek(or anything else, for that matter).So the breadcrumb
Home › ForumsbecomesiGeek › Forums(or something like that). How do I do that?Topic: What am I doing wrong?
I downloaded the bbpress plugin for wordpress. Now I’m receiving this message: Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.
How do I fix this?
Topic: Custom profile fields
I am having an issue getting custom profile fields to work.
I have used the following code as a wordpress plugin and a bbPress plugin:
function set_my_profile_info_keys($myarray) {
$myarray = array(
‘testfield’ => array(0, __(‘TestField’))
);
return $myarray;
}
add_filter(‘get_profile_info_keys’, ‘set_my_profile_info_keys’);
However this doesn’t show the field on a users profile to allow them to edit it. I have also tried other variations of this code I have found on this forum and others but to no avail.
Any help getting this working would be much appreciated.
