The following warnings occurred:
Warning [2] Undefined array key "threadviews_countguests" - Line: 745 - File: showthread.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php 745 errorHandler->error_callback
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 861 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 861 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 861 postParser->parse_message
/showthread.php 1121 build_postbit
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 46 - File: showthread.php(1650) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1650) : eval()'d code 46 errorHandler->error_callback
/showthread.php 1650 eval




Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wauw great small CMS
#1
I work every day with Drupal .... and love it. But sometime Drupal is overkill. This CMS is awesome. Heart

I have a few questions:

1) Can I have body class .... like .... one-sidebar , two-sidebars ..... and can I

use php if <?php get_component('footer'); ?> .... in template.php ?

2) The editor print a lot of space in the html - why?

3) Can you split the menu i two (top nav & aside nav) like: http://drupal.org/project/menu_block

4) Under "Page Options" I really need a field for the title tag
Reply
#2
Morten,
welcome here!

All your questions can be answered.

1) yes, you can always include template tags in a template
all the CSS classes depend on the theme which you use (or which you write or modfiy yourself)

2) the behaviour of the editor can be defined in custom configuration, this is described in the wiki

3) you can, use i18N plugin and define your menues and place the menues where you want to have them

4) the page has a title, a slug, a menue-text, all of these are usable as template-tags, so what do you need exactly what you don't find in the moment?
|--

Das deutschsprachige GetSimple-(Unter-)Forum:   http://get-simple.info/forums/forumdisplay.php?fid=18
Reply
#3
(2013-03-04, 18:25:29)Connie Wrote: Morten,
welcome here!

All your questions can be answered.

1 - 3) Thanks :-)

4) If I use the title in <header> <h1>..... tthen I definitely need at field for the title tag

(2013-03-05, 17:56:19)Morten Wrote:
(2013-03-04, 18:25:29)Connie Wrote: Morten,
welcome here! - thanks

All your questions can be answered.

1 - 3) Thanks :-)

4) If I use the title in <header> <h1>..... tthen I definitely need at field for the title tag
Reply
#4
Morten,

I do not understand your question. You define that in the template, don't you?


see here: http://get-simple.info/wiki/themes:template_tags

Code:
<?php get_page_title(); ?>

or

Code:
<?php get_page_clean_title(); ?>

or

Code:
<?php return_page_title(); ?>

In the innovation theme it is done like this:
PHP Code:
    <!-- title and content -->
                <
h1><?php get_page_title(); ?></h1>
                <?php get_page_content(); ?>

does this help?
|--

Das deutschsprachige GetSimple-(Unter-)Forum:   http://get-simple.info/forums/forumdisplay.php?fid=18
Reply
#5
Do you meant the <head> <title>... </title> ??

You would need the Custom Title Plugin
Reply




Users browsing this thread: 1 Guest(s)