Forum Replies Created
-
In reply to: Changing overall Template
Fixed! Thank you so much!
In reply to: Changing overall Templatedone!
In reply to: Removing “Private:”that’s awesome – thank you. Works great.
In reply to: Changing overall TemplateHmm, no PM function. And the forum is locked down behind membership. Let me know best way to facilitate.
In reply to: Changing overall TemplateThe site is currently under dev. Will PM you URL
In reply to: Removing “Private:”To be clear: Home> Forum > Private: topicname
In reply to: Changing overall Template<?php
/**
* Exit if accessed directly.
*
* @package Responsive
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit;
}/**
* Full Content Template
*
* Template Name: Full Width Page (no sidebar)
*
* @file full-width-page.php
* @package Responsive
* @author CyberChimps
* @copyright 2020 CyberChimps
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/full-width-page.php
* @link https://codex.wordpress.org/Theme_Development#Pages_.28page.php.29
* @since available since Release 1.0
*/get_header();
Responsive\responsive_wrapper_top(); // before wrapper content hook. ?>
<div id=”wrapper” class=”site-content clearfix”>
<div class=”content-outer container”>
<div class=”row”>
<?php Responsive\responsive_in_wrapper(); // wrapper hook. ?>
<main id=”primary” class=”content-area col-940″ role=”main”>
<?php
get_template_part( ‘loop-header’, get_post_type() );if ( have_posts() ) :
while ( have_posts() ) :
the_post();
Responsive\responsive_entry_before();
get_template_part( ‘partials/page/layout’, get_post_type() );
Responsive\responsive_entry_after();
Responsive\responsive_comments_before();
comments_template( ”, true );
Responsive\responsive_comments_after();
endwhile;
get_template_part( ‘loop-nav’, get_post_type() );else :
// Elementor404
location.
if ( ! function_exists( ‘elementor_theme_do_location’ ) || ! elementor_theme_do_location( ‘single’ ) ) {
get_template_part( ‘loop-no-posts’, get_post_type() );
}endif;
?></main><!– end of #content-full –>
</div>
</div>
<?php Responsive\responsive_wrapper_bottom(); // after wrapper content hook. ?>
</div> <!– end of #wrapper –>
<?php
Responsive\responsive_wrapper_end(); // after wrapper hook.
get_footer();
?>In reply to: Changing overall TemplateThanks!
I’ve tried this to no avail.
I ‘m using the responsive theme, with a child theme. I take the full-width-page.php from the themes/responsive folder, copy it to /themes/my-responsive/bbpress.php
But nothing changes? that should work?
In reply to: Changing overall TemplateI don’t really want to modify the display, just change the overall template.