Am I able to change accounts language from somewhere else than profiles edit page?

Language switcher blocks does not work the way I need - some parts of the site still translate according to the users account language set in profile. The cause could be 3rd party modules but is there a way to change accounts language without going to user/n/edit ?

Roadmap for D7

Hi everyone,

I know that this is probably a touchy subject, but I'd like to ask that anyway.

Is there a roadmap for when the release of D7 is planned?

I'm not being impatient or anything here, my reason for asking the question is this: We are about to start a major project for a client (in fact, our first real Drupal project, up to now we mainly have developed in TYPO3 ;) ). It will take us 2-3 months to build the whole site, it has to go live with the begin of July. We will have to support the site for at least 5 years.

So I am trying to decide if to go with Drupal 6, with a major upgrade just around the corner, or maybe go with D7 already, where we know that we might have a couple of issues. If the D7 release is within our development window, we would probably go with that, as we just save ourselves the work of upgrading the site afterwards.

Most of the things on the site will probably be generated by custom built modules, and we'll only need a few contributed modules here (probably for the news on the site, maybe a custom front page layout which the user can customize for himself, and maybe an image gallery, though we might implement that ourselves).

Or are there any things to be kept in consideration when coding own modules to mostly keep D7 compatibility, even when deploying the first version with D6?

Trouble with preprocess functions for custom theme suggestions

Hello everybody!

I am having a problem with the drupal hook system in drupal 7 - alpha 3 (preprocess functions). I am trying to replace the standart main-menu implementation with a multilevel dropdown menu using superfish and the core drupal function menu_tree. Let me show you what I got so far:


function MYTHEME_preprocess_page(&$variables) {
$vars['primary_nav'] = isset($variables['main_menu']) ? MYTHEME_menu_main_menu() : FALSE;
}

function MYTHEME_menu_main_menu() {
$tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
$tree = MYTHEME_menu_main_menu_tree_output($tree);

return drupal_render($tree);
}

function MYTHEME_menu_main_menu_tree_output($tree) {
if($tree) {
$tree['#theme_wrappers'] = array('menu_tree__main_menu');

foreach($tree as $key => $item) {
if(!is_int($key)) break;

$tree[$key]['#theme'] = 'menu_link__main_menu';
$tree[$key]['#below'] = $item['#below'] ? MYTHEME_menu_main_menu_tree_output($item['#below']) : $item['#below'];
}
}

return $tree;
}

function MYTHEME_preprocess_menu_tree__main_menu(&$variables) {
echo 'HELLO?!?!?';
}

function MYTHEME_menu_tree__main_menu($variables) {
return '

';
}

drupal7 - page not found in index page

When I go to http://localhost:8087/ I get a "Page Not Found" error.

When I go to http://localhost:8087/?q= I have no problems at all.

Is there a way to have the homepage display automatically in drupal, or do I always have to have the "?q=" in the URL?

Please help!

North Carolina company seeking full-time Drupal developer

Position: Web Developer
Company: Kilpatrick Design, Inc.
Location: Winston-Salem, NC
Date: 03-24-10 (position to be filled as soon as possible)

Job Description
Kilpatrick Design is seeking a web developer to assist with the development of Drupal-based websites and applications. Responsibilities include
• Faithfully implementing designs from Photoshop mockups to complete Drupal themes
• Planning and implementing information architecture in Drupal (navigation, content types, fields, views, blocks/panels)
• Research, planning and implementation of existing contrib modules as necessary
• Custom module development as necessary
• Work within an established framework for building powerful, supportable Drupal sites
• Develop and improve tools to automate updates to Drupal core and modules
• Documentation

We are seeking a programmer, NOT a designer. Applicants do not need to have any design or artistic ability. Applicants do need to have excellent (X)HTML/CSS skills, and an aptitude to learn Drupal inside and out, and quickly (or already know Drupal)!

Developer will be working under the direct supervision of our senior programmer. S/he must be able to work in our Winston-Salem, NC office at least three days a week.

Skills
• Exceptional (X)HTML/CSS/Javascript skills required

install

HI all
After I set the database I get this error. I Thought I was to change default.settings.php to
settings.php and I set wr

Warning: fopen() [function.fopen]: Unable to access ./sites/default/default.settings.php in /www/freewebhostx.com/s/h/o/shoutout/htdocs/shout2/includes/install.inc on line 188

Warning: fopen(./sites/default/default.settings.php) [function.fopen]: failed to open stream: No such file or directory in /www/freewebhostx.com/s/h/o/shoutout/htdocs/shout2/includes/install.inc on line 188

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x