by default the attach fields are below the fbss text box. Any way to replace above the text box?

Thanks,chris

Comments

publicmind’s picture

Status: Active » Fixed

There is no such setting but you can modify the weight of the FBSMP altered form to be anywhere in relation with the FBSS status box. The weight of the FBSS text box is -40 and that of FBSMP is -25.1. Just go to the file fbsmp.module:

  $form['fbsmp'] = array(
    '#weight' => -25.1,
  );

and change the weight of the form to be lower than that of the text box (say, -41) and you will see the FBSMP form above the text field. Of course, you will have to work on the CSS a little to make it look good.

Regards,

glitz’s picture

awesome. THANK YOU

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Marko B’s picture

works, thanx