spellbinder103
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: page was loaded over HTTPS, but requested an insecure imagealright, i have a big trouble, because my site is wordpress multi-site, some sub-site without SSL, some sub-site with SSL. have much hard work must to do to solve it.
Forum: Plugins
In reply to: [WP Bulletin Board] activating WPBB kills all sidebar, footersadditional information…
i modify it for the themes are called “wood is good”, perhaps the solution no suitable for themes “TwentyEleven”
Forum: Plugins
In reply to: [WP Bulletin Board] activating WPBB kills all sidebar, footerscontinue previous topic…
indeed i have same trouble as you but at another theme, for this situation, i was make some modification of wpbb-template.php from original code…
<?php /* Template Name: WPBB */ /* This file is created apon activation or theme switch in your current theme directory. Do not remove this file at any time as it is loads all the neccessary files for wp-bb to run on the frontend */ get_header(); require_once(ABSPATH.'/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php'); get_footer(); ?>
to this
<?php /* Template Name: WPBB */ /* This file is created apon activation or theme switch in your current theme directory. Do not remove this file at any time as it is loads all the neccessary files for wp-bb to run on the frontend */ ?> <?php get_header(); ?> <!-- ************************************************************* --> <?php require_once(ABSPATH.'/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php'); ?> <!-- ************************* --> </div> </div><!-- close innerContent --> <?php get_sidebar();?> <?php get_footer(); ?>
without attention owner developer.
indeed is now sidebar properly show. however, new trouble was come, when i try to create new post, the page automatic go to home page.
so this solution is no yet perfect.
Forum: Plugins
In reply to: [WP Bulletin Board] activating WPBB kills all sidebar, footersi have same problem too
Forum: Themes and Templates
In reply to: [Wood is Good] disable comments ?you can disable through wp-admin, when write new post, uncheck “allow to comment” check box.
modify the themes is unnecessary.
i known why! usually will happen on chinese version wordpress, that is cause by utf-8 encording probelm, dont edit wp-config-sample.php under windows OS, but edit under linux.