1301
script_fu
Textarea Box Is To Wide in Register Now / User Registration (Please Help !)

Can anyone please tell me how to adjust the width on this textarea? This darn thing is way to wide for 800x600.

Thanks in advanced...



1302
script_fu
Re: Partners Administration Image size is larger than 110x50!

I must say that was spot on and you solved my problem...
Thanks a bunch...
Billy

P.S
Feel like takin another stab at one more problem?

https://xoops.org/modules/newbb/viewtopic.php?topic_id=13424&forum=7

This one is driving me crazy also...

Thanks again...



1303
script_fu
Re: Partners Administration Image size is larger than 110x50!

Thank you for your post...
I have changed the index file in xoopspartners.
I also tryied to mess with the % like you said but that did not work...
Again im trying to get the partner images in the admin area
to display correct. They already work correct in the partners block on the site. Its the backside thats bugging me...



1304
script_fu
Re: How do you change the page redirect words when you log in or out?

Thanks big time for both of your posts both helped alot...

Stewdio: Nice redirects and Syndicated news. Ty for your post/ideas...

I love this place!



1305
script_fu
Re: How can I add this Shoutbox to my site.

Heres the answer...

<HTML>
<IFRAME width="150" height="275" align="center" frameborder=0 marginwidth="0" marginheight="0" src="http://www.yoursite.com/thebox/thebox.php">
<FRAME width="150" height="275" align="center" frameboard=0 marginwidth="0" marginheight="0" src="http://www.yoursite.com/thebox/thebox.php">
</IFRAME>
</HTML>

I found this code by pure luck searching finally...



1306
script_fu
How can I add this Shoutbox to my site.

I have this shoutbox up and running on my website.

http://www.phparena.net/downloads/pafiledb.php?action=file&id=28

How can I add the shoutbox to a custom block I created on my XOOPS site?

In the instructions it says...
(Quote)
The best method of using paBox is probably to create an iframe on your homepage and set the iframes src tohttp://www.domain.com/thebox/thebox.php.
(/Quote)

How would I create an iframe in a custom block? Maybe theres a better way of doing this?

I know this is simple for some. After I get it running for my daughter it will be second nature for me too...

Thanks in Advance for your help!



1307
script_fu
Partners Administration Image size is larger than 110x50!

My partner images are 100x75. How can I change the image size for the admin section of the partners module. It does not fit well at all...

Thank you...



1308
script_fu
How do you change the page redirect words when you log in or out?

Where are these words located i've looked all over and searched the forums with no luck.




1309
script_fu
Re: Is there a User Registration Template somewhere?

I stiil haven't been able to solve this problem... Ive tryied all day long to figure this out...
Anyone?



1310
script_fu
Re: Is there a User Registration Template somewhere?

Thank you again for that awesome info for the avatars!

Um I must be blind on the disclaimer part. I dont see anything in the code that lets you adjust the box...



include_once XOOPS_ROOT_PATH."/class/xoopslists.php";
include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";

// initialize form vars
$uname = isset($HTTP_POST_VARS['uname']) ? $myts->makeTboxData4PreviewInForm($HTTP_POST_VARS['uname']) : "";
$email = isset($HTTP_POST_VARS['email']) ? $myts->makeTboxData4PreviewInForm($HTTP_POST_VARS['email']) : "";
$user_viewemail = isset($HTTP_POST_VARS['user_viewemail']) ? $HTTP_POST_VARS['user_viewemail'] : "";
$url = isset($HTTP_POST_VARS['url']) ? $myts->makeTboxData4PreviewInForm($HTTP_POST_VARS['url']) : "";
$timezone_offset = isset($HTTP_POST_VARS['timezone_offset']) ? $HTTP_POST_VARS['timezone_offset'] : "";
//$user_avatar = isset($HTTP_POST_VARS['user_avatar']) ? $HTTP_POST_VARS['user_avatar'] : "blank.gif";

$email_tray = new XoopsFormElementTray(_US_EMAIL, "<br />");
$email_text = new XoopsFormText("", "email", 25, 60, $email);
$email_option = new XoopsFormCheckBox("", "user_viewemail", $user_viewemail);
$email_option->addOption(1, _US_ALLOWVIEWEMAIL);
$email_tray->addElement($email_text);
$email_tray->addElement($email_option);

//$avatar_select = new XoopsFormSelect("", "user_avatar", $user_avatar);
//$avatar_array =& XoopsLists::getImgListAsArray(XOOPS_ROOT_PATH."/images/avatar/");
//$avatar_select->addOptionArray($avatar_array);
//$a_dirlist =& XoopsLists::getDirListAsArray(XOOPS_ROOT_PATH."/images/avatar/");
//$a_dir_labels = array();
//$a_count = 0;
//$a_dir_link = "<a href=\"javascript:openWithSelfMain('".XOOPS_URL."/misc.php?action=showpopups&type=avatars&start=".$a_count."','avatars',600,400);\">XOOPS</a>";
//$a_count = $a_count + count($avatar_array);
//$a_dir_labels[] = new XoopsFormLabel("", $a_dir_link);
//foreach ($a_dirlist as $a_dir) {
// if ( $a_dir == "users" ) {
// continue;
// }
// $avatars_array =& XoopsLists::getImgListAsArray(XOOPS_ROOT_PATH."/images/avatar/".$a_dir."/", $a_dir."/");
// $avatar_select->addOptionArray($avatars_array);
// $a_dir_link = "<a href=\"javascript:openWithSelfMain('".XOOPS_URL."/misc.php?action=showpopups&type=avatars&subdir=".$a_dir."&start=".$a_count."','avatars',600,400);\">".$a_dir."</a>";
// $a_dir_labels[] = new XoopsFormLabel("", $a_dir_link);
// $a_count = $a_count + count($avatars_array);
//}
//$avatar_select->setExtra("onchange='showImgSelected(\"avatar\", \"user_avatar\", \"images/avatar\", \"\", \"".XOOPS_URL."\")'");
//$avatar_label = new XoopsFormLabel("", "<img src='images/avatar/blank.gif' name='avatar' id='avatar' alt='' />");
//$avatar_tray = new XoopsFormElementTray(_US_AVATAR, "&nbsp;");
//$avatar_tray->addElement($avatar_select);
//$avatar_tray->addElement($avatar_label);
//foreach ($a_dir_labels as $a_dir_label) {
// $avatar_tray->addElement($a_dir_label);
//}

$reg_form = new XoopsThemeForm(_US_USERREG, "userinfo", "register.php");
$reg_form->addElement(new XoopsFormText(_US_NICKNAME, "uname", 26, 25, $uname), true);
$reg_form->addElement($email_tray);
$reg_form->addElement(new XoopsFormText(_US_WEBSITE, "url", 25, 255, $url));
$tzselected = ($timezone_offset != "") ? $timezone_offset : $xoopsConfig['default_TZ'];
//$reg_form->addElement(new XoopsFormSelectTimezone(_US_TIMEZONE, "timezone_offset", $tzselected));
//$reg_form->addElement($avatar_tray);
$reg_form->addElement(new XoopsFormPassword(_US_PASSWORD, "pass", 10, 20), true);
$reg_form->addElement(new XoopsFormPassword(_US_VERIFYPASS, "vpass", 10, 20), true);
$reg_form->addElement(new XoopsFormRadioYN(_US_MAILOK, 'user_mailok', 1));

__________________________________________________

if ($xoopsConfigUser['reg_dispdsclmr'] != 0 && $xoopsConfigUser['reg_disclaimer'] != '') {
$disc_tray = new XoopsFormElementTray(_US_DISCLAIMER, '<br />');
$disc_text = new XoopsFormTextarea('', 'disclaimer', $xoopsConfigUser['reg_disclaimer'], 8);
$disc_text->setExtra('readonly="readonly"');
$disc_tray->addElement($disc_text);
___________________________________________________

$agree_chk = new XoopsFormCheckBox('', 'agree_disc', 0);
$agree_chk->addOption(1, _US_IAGREE);
$disc_tray->addElement($agree_chk);
$reg_form->addElement($disc_tray);
}
$reg_form->addElement(new XoopsFormHidden("op", "newuser"));
$reg_form->addElement(new XoopsFormButton("", "submit", _US_SUBMIT, "submit"));
$reg_form->setRequired($email_text);
?>

I dont see anyplace to adjust the width?

Thanks again for your time




TopTop
« 1 ... 128 129 130 (131) 132 133 »



Login

Who's Online

144 user(s) are online (111 user(s) are browsing Support Forums)


Members: 1


Guests: 143


heyula,

more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits