Search Results for '+.+default+.+'
-
Search Results
-
Topic: Full Width Forum Help
Hey everyone,
I’m having a bit of trouble getting my Forum into full-width format. I’m using the Oxygen theme which by default has a left and right sidebar.
I’ve already copied my “page-template-fullwidth.php”, renamed it as “bbpress.php”, and installed bbPress WP Tweaks to make sure that bbPress is injecting itself into the “bbpress.php” template.
Given what I’ve read – this should’ve done the trick. I’m wondering if it’s something weird with Oxygen Theme’s templates. I’ve included the code of the Full Width Template i’m using here below. Does anyone see anything out of the ordinary that could be preventing me from getting full-width formatting?
<?php
/**
* Template Name: Full Width
*
* Full width page template with no sidebar.
*
* @package Oxygen
* @subpackage Template
*/get_header(); // Loads the header.php template. ?>
<div class=”aside”>
<?php get_sidebar( ‘primary’ ); // Loads the sidebar-primary.php template. ?>
</div>
<?php do_atomic( ‘before_content’ ); // oxygen_before_content ?>
<div class=”content-wrap”>
<div id=”content”>
<?php do_atomic( ‘open_content’ ); // oxygen_open_content ?>
<div class=”hfeed”>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( ‘before_entry’ ); // oxygen_before_entry ?>
<div id=”post-<?php the_ID(); ?>” class=”<?php hybrid_entry_class(); ?>”>
<?php do_atomic( ‘open_entry’ ); // oxygen_open_entry ?>
<?php echo apply_atomic_shortcode( ‘entry_title’, ‘[entry-title permalink=”0″]’ ); ?>
<div class=”entry-content”>
<?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘oxygen’ ) ); ?>
<?php wp_link_pages( array( ‘before’ => ‘<p class=”page-links”>’ . __( ‘Pages:’, ‘oxygen’ ), ‘after’ => ‘</p>’ ) ); ?>
</div><!– .entry-content –>
<?php echo apply_atomic_shortcode( ‘entry_meta’, ‘<div class=”entry-meta”>[entry-edit-link]</div>’ ); ?>
<?php do_atomic( ‘close_entry’ ); // oxygen_close_entry ?>
</div><!– .hentry –>
<?php do_atomic( ‘after_entry’ ); // oxygen_after_entry ?>
<?php do_atomic( ‘after_singular’ ); // oxygen_after_singular ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!– .hfeed –>
<?php do_atomic( ‘close_content’ ); // oxygen_close_content ?>
</div><!– #content –>
<?php do_atomic( ‘after_content’ ); // oxygen_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>
With the recent bbPress update, the way notification is sent is changed. Earlier individual emails are sent to each people, but now only one email is sent with all the email address in bcc. I guess this is done to prevent email bottleneck. But this seems to have caused a issue in my setup.
I use wpmandrill to send emails through the mandrill service. With the new change, the to and from address is changed to a default “do not reply” email address that is calculated using the current domain name. The code is present in the
bbpress/includes/common/functions.php
$do_not_reply = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>';
So it becomes <nobody@domain.com>
When this address is used as “to” address, the mandrill service thinks that it is an invalid email address because of the angle brackets.
I went through the code, but there is no filter to change the
$do_not_replyvariable.Topic: Remove sidebar
I’m here again!
It’s great I have a place to come back!Now, I’m looking for advice on How to show “Website” part at User Profile page.
By default, 4 sections are displayed on User Profile page.1.user-description, 2.forum-role, 3.topic-count, 4.reply-count
In edit page, There is a section for entering users “Website”.
in spite of entering the section, it would not be display at User’s Profile page.
How can I display it at the User’s Profile page.I found that I need to add some PHPcodes into “user-profile.php”.
But as you know, I have no idea What codes I have to put in.would you please advice me…
WordPress: ver3.9.1
bbPress: ver2.5.3Hi all,
I have an old blog with Twenty Eleven theme.I have copied “/wp-content/plugins/bbpress/templates/default” folders and file in my “/wp-content/themes/twentyeleven” folder.
Then I have created forum.php file making a copy of page.php.
When I modify forum.php there is any change in my website, it seems it reads another theme file.
What’s wrong in my template structue? I have the bbpress folder copied before and these php files:
404.php
archive.php
author.php
bbpress-functions.php
category.php
comments.php
content-aside.php
content-featured.php
content-gallery.php
content-image.php
content-intro.php
content-link.php
content-page.php
content-quote.php
content-single.php
content-status.php
content.php
footer.php
forum.php
functions.php
header.php
image.php
index.php
page.php
search.php
searchform.php
showcase.php
sidebar-footer.php
sidebar-forum.php
sidebar-page.php
sidebar.php
single.php
tag.php