-
AuthorPosts
-
donq Friend
donq
- Join date:
- November 2006
- Posts:
- 68
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 4
- Thanked:
- 3 times in 1 posts
November 24, 2007 at 8:49 pm #123985Hi, ๐
In:
“JA Fagus: UserGuide and Bug Report”
Here:
http://www.joomlart.com/forums/topic/ja-fagus-userguide-and-bug-report/is a mismatch in the userguide:
3. Menu Types Configuration
4. Screen Resolution Configuration
5. Font Resizer Configuration
6. Colour Configuration
7. Tools ConfigurationIt shoud be in “ja_fagus/ja_vars.php“, but there is no such configuration in this file.
So, what is the solution? :confused:
Salsabil FriendSalsabil
- Join date:
- February 2006
- Posts:
- 54
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 6
- Thanked:
- 2 times in 1 posts
November 24, 2007 at 9:34 pm #233367<em>@donq 32807 wrote:</em><blockquote>Hi, ๐
In:
“JA Fagus: UserGuide and Bug Report”
Here:
http://www.joomlart.com/forums/topic/ja-fagus-userguide-and-bug-report/is a mismatch in the userguide:
3. Menu Types Configuration
4. Screen Resolution Configuration
5. Font Resizer Configuration
6. Colour Configuration
7. Tools ConfigurationIt shoud be in “ja_fagus/ja_vars.php“, but there is no such configuration in this file.
So, what is the solution? :confused:</blockquote>
itยดs all there…
3. Menu Types Configuration line 39
[PHP]$ja_menutype = 3; // 1: Split Menu; 2: Son of Suckerfish Dropdown Menu; 3: Moomenu[/PHP]4. Screen Resolution Configuration line 31
[PHP]$ja_width_default = ‘wide’; // ‘narrow’: 800×600; ‘wide’: 1024×768[/PHP]5. Font Resizer Configuration line 35
[PHP]$ja_font_size_default = 3;[/PHP]6. Colour Configuration line 33
[PHP]$ja_color_default = ‘default’; //blank for default, else pick one of in extra color themes $ja_color_themes[/PHP]7. Tools Configuration line 37
[PHP]$ja_tool = 6; // 0: 0: disable all; 1: Screen tool; 2: font tool; 3: screen + font; 4: color tool; 5: screen + color; 6: font + color; 7: all;[/PHP]donq Frienddonq
- Join date:
- November 2006
- Posts:
- 68
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 4
- Thanked:
- 3 times in 1 posts
November 25, 2007 at 3:10 pm #233388Hi again, ๐
Well, the thing is, I am using JSAS as a local webservice, and therefore, some things are aparently not the same. ๐ฎ
The file “ja_vars.php” at my place look like this:
<?php
/**
* @copyright Copyright (C) 2005 – 2007 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/// no direct access
defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
include_once (dirname(__FILE__).DS.’/ja_templatetools.php’);$tmpTools = new JA_Tools($this);
$tmpTools->setColorThemes(array(‘default’, ‘blue’, ‘green’));# Auto Collapse Divs Functions ##########
$ja_left = $this->countModules( ‘left’ );
$ja_right = $this->countModules( ‘right’ );
$ja_masscol = $this->countModules(‘user5’);
if ( $ja_left && $ja_right ) {
//2 columns on the right
$divid = ”;
} elseif ( ($ja_left || $ja_right) && !$ja_masscol ) {
//One column without masscol
$divid = ‘-c’;
} elseif (($ja_left || $ja_right) && $ja_masscol) {
//One column with masscol
$divid = ‘-cm’;
} elseif ($ja_masscol) {
//masscol only
$divid = ‘-m’;
} else {
//No column in right
$divid = ‘-f’;
}//Main navigation
$japarams = new JParameter(”);
$japarams->set( ‘menu_images’, 1 ); // Source of menu
$japarams->set( ‘menu_images_align’, ‘left’ );
$japarams->set( ‘menutype’, ‘mainmenu’ );
switch ($tmpTools->getParam(JA_TOOL_MENU)) {
case 1:
$menu = “Splitmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
case 2:
case 4:
$menu = “CSSmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
case 3:
$menu = “DLmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
}
$menuclass = “JA_$menu”;
$jamenu = new $menuclass ($japarams);$hasSubnav = false;
if (($jamenu->hasSubMenu (1) && $tmpTools->getParam(JA_TOOL_MENU) == 1) || $tmpTools->getParam(JA_TOOL_MENU) == 3)
$hasSubnav = true;/*********** JA MooTabs Options ****************/
$ja_mootabs_options = “
width: ‘414px’,
height: ‘auto’,
duration: 1000,
changeTransition: Fx.Transitions.Expo.easeOut,
animType: ‘animMove’
“;
/*********** End JA MooTabs ********************/?>
Strange, right?
And furthermore, I got 3 “ja_vars.php“-files, in 3 differend locations, on my PC! :confused:
…but none of them is responding to changes in “fonts”, “tools” and so on.
So please tell me:
– Am I the only one, with this problem? ๐
– Is $ja_tool = 7; working in your website? I can only make the font tool and the colour tool work, not the screen tool. ๐Note:
I am using Joomla 1.5 RC, on a Windows XP SP2 machine.Salsabil FriendSalsabil
- Join date:
- February 2006
- Posts:
- 54
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 6
- Thanked:
- 2 times in 1 posts
November 25, 2007 at 3:34 pm #233393<em>@donq 32840 wrote:</em><blockquote>Hi again, ๐
Note:
I am using Joomla 1.5 RC, on a Windows XP SP2 machine.</blockquote>sorry, i thought that you are using Joomla 1.0.xx and not the unstable 1.5 and i saw that the 1.5 has no option for
3. Menu Types Configuration
4. Screen Resolution Configuration
5. Font Resizer Configuration
6. Colour Configuration
7. Tools ConfigurationI use Joomla 1.0.13 and it works for me 100%
donq Frienddonq
- Join date:
- November 2006
- Posts:
- 68
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 4
- Thanked:
- 3 times in 1 posts
November 25, 2007 at 3:45 pm #233394Hi, ๐
Well, I am new on this Joomla thing, and the Joomla 1.5 RC is not that unstable, after all (only the “$ja_tool = 7;” is not working in the JA-Fagus-template).
I am thinking: “The Joomla 1.5 Stable is just around the corner, so why use a lot of time to learn 1.0.13? And 1.0.13 is also a little bit messy, I think… and 1.5 is not. And when 1.5 Stable is realised, I just have to upgrade.” ๐
But tell me: Have you ever tryed to use 1.5?
Salsabil FriendSalsabil
- Join date:
- February 2006
- Posts:
- 54
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 6
- Thanked:
- 2 times in 1 posts
November 25, 2007 at 5:54 pm #233398<em>@donq 32847 wrote:</em><blockquote>
But tell me: Have you ever tryed to use 1.5?</blockquote>
no. i wait for the stable version. ๐ many extension donยดt work with 1.5
-
AuthorPosts
This topic contains 6 replies, has 2 voices, and was last updated by Salsabil 16 years, 11 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum