Project Module Issues

I recently installed the Project module, and am confused on how to configure it to my needs properly. I am unfamiliar with this module and need some help. The following issues I have are:

1) There is a navigation menu on the left that displays "My Projects" for each user, but I disabled the navigation menu for all users. Does anyone know how to remove this navigation menu set by the project module, as it conflicts with the current pages of my website.

Webform module: How to inject customised stuff in the results display?

Hi all,

I'm new to Drupal and did some reading up of the concepts as well as best practices docs etc.
I have been asked to help out with a D6 site, that makes use of the webform module. The site has a fully configured webform that has properly been assigned to authenticated users etc. and that works well.
The generic display (in 'view' mode) of filled in webforms does half of what we want: the display of the answers etc. is fine, but before showing that, we want to show a colour-coded "score-matrix", of which the colour coding is dependent on the answers given in the form.

Now, of course it is dead easy to just create a page for that, allow it to use PHP, dig in the DB and do it all the old-school way.
But... having done the reading up on matters, I would like to do it the right way (if possible, that is) by doing everything in a module (without direct DB queries, etc.). O.k., so far, so good. Checking the list of hooks for this module, it would seem that the hook_webform_submission_render_alter hook is the one to use.
Doing so easily allowed me to grab the desired results and do what I need to do (i.e. create the matrix), but... only before anything is rendered (which makes sense of course), so now for the actual question: how to easily (and cleanly!) 'push' the generated matrix to the standard content part of the page?

$_POST and $_GET in drupal modules

Hello, iam writing a module that contain a form with textfield and button, i need to transfert the data entred in the field and after some logical oprations to another page......how can i do that with Drupal7

Block Theming - preprocess function - template: No Iteration

I have created a custom block module which queries the database for featured items. A preprocess function is used to add variables. However, the block only displays the first row. I am fairly confident that the issue is either in how the data is iterated in the preprocess function...or the coding in the template. I have tried several approaches to foreach statments within the template but have only managed to have the first row repeated as opposed to the additional rows. Any insights would be appreciated. I believe this is a perhaps a php issue. I have searched the forums and internet for several weeks for a solution to no avail. I realize that their are numerous ways to approach these issue...but using the combination of the preprocess function and template seems to work best for my application. Thanks again!!!

Implementation of hook theme

function featuredblock_theme(){
	return array(
		'featuredblock_featured_blk' => array(
			'template' => 'tpl/block-featuredblock',
			'arguments' => array('title' => NULL),
		),	
	);
}

Applicable code from hook_block

function featuredblock_block($op='list', $delta=0, $edit=array()) {
switch($op){
case 'list':
$block[0]['info'] = t('Featured Block');
return $block;
case 'configure':

return $form;
case 'view':
$title = t('Featured');

Clicking "submit" button publishes the same node or comment many times

Clicking "submit" button publishes the same node or comment many times.
How to prevent it? When my users create one node, sometimes it's being published multiple times (few exactly the same nodes are created).

I will appreciate any help

Editing a Slideshow and Paypal button

My client wants me to edit the slideshow on their homepage, as seen here: http://www.feenypower.ca/

They want me to change the radius of the div where it says "Putting you in charge of your home" etc. Where can I find the css for this?

Then on this page (http://www.feenypower.ca/contact) we've included a Paypal button, but I can't figure out how to get rid of the border around the Pay Now button, border="0" doesn't work.

Help?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x