×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC: "Website" field enabled, but missing

"Website" field enabled, but missing 15 years 5 months ago #4218

  • Mike
  • Mike's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 2
  • Thank you received: 0
If this has been addressed somewhere else within the forums already, I apologize. I searched for a while, but couldn't find anything like this.

I just recently installed this component, as it is exactly what I need... BUT... for some reason, the "Website" field doesn't show up in the comment form.

I went to Components > !Joomlacomment > Content Settings > Posting

Then, under the "Posting" section, I set "Input website field" to "Yes."

When I go to the comment form, though, there is no website field available. It just has, Name, Email, Title, and the comment box. I looked at all the other settings, and none of the others seem to be related. Am I just crazy?

If you want to see, go to www.digitalmcs.com . Click on "Blog" on the left-hand menu. It will bring up one post with comments enabled. You can view the form there.

Any help/thoughts would be immensely appreciated.

"Website" field enabled, but missing 15 years 5 months ago #4219

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Did you edit your template? Do you have the website input field in your template?

"Website" field enabled, but missing 15 years 5 months ago #4228

  • Mike
  • Mike's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 2
  • Thank you received: 0
Hmm... yes. I didn't think about that. After some additional playing around with it, I discovered that the website field DOES show up under most of the templates. However, when I changed the layout to "akostyle," the field disappears. I'm not entirely sure why. If the bottom line is that I just have to mess with the CSS for one of the other layouts to get the colors to match my site, that is doable. I just thought it was odd.

"Website" field enabled, but missing 15 years 5 months ago #4236

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Hey Mike,
The bottom line is that you have to play with your html template. The website input filed is missing from the akostyle template :)
Please open your index.html file and find the code between the
{form}
{/form]
tags and change it to this one
{form} 
<a name='CommentForm'></a>
<form name='joomlacommentform' method='post' action='{self}'>
  {_HIDDEN_VALUES}
  <table align='center' class='sendform' cellpadding='4' cellspacing='1' border='0'>
    <tr>
      <td colspan='2' class='sectiontableheader'>
          <div id='CommentFormTitle'>{_WRITECOMMENT}</div>
      </td>
    </tr>
    <tr class='sectiontableentry1'>
      <td><div>{_ENTERNAME}</div></td>
      <td><div>
          <input name='tname' type='text' class='inputbox' size='40' value='{username}' {registered_readonly}/>
        </div></td>
    </tr>
    {BLOCK-_ENTEREMAIL}
    <tr class='sectiontableentry1'>
      <td><div>{_ENTEREMAIL}</div></td>
      <td><div>
          <input name='temail' type='text' class='inputbox' size='30' value='{email}' {registered_readonly}/>
          &nbsp;{notifyselect}
        </div></td>
    </tr>
    {/BLOCK-_ENTEREMAIL}
    {BLOCK-_ENTERWEBSITE}
    <tr class='sectiontableentry1'>
      <td><div>{_ENTERWEBSITE}</div></td>
      <td><div>
          <input name='twebsite' type='text' class='inputbox' size='40' value='{website}'/>
        </div></td>
    </tr>
    {/BLOCK-_ENTERWEBSITE}
    <tr class='sectiontableentry1'>
      <td><div>{_ENTERTITLE}</div></td>
      <td><div>
          <input name='ttitle' type='text' class='inputbox' size='40'/>
        </div></td>
    </tr>
    {BLOCK-_UBBCode}
    <tr class='sectiontableentry1'>
      <td><div>{_UBBCODE}</div></td>
      <td><div class='buttoncontainer'>
          <div style='float: left;'> {UBBCodeButtons} </div>
          <div style='float: left;'> {UBBCodeSelect} </div>
        </div></td>
    </tr>
    {/BLOCK-_UBBCode}
    <tr class='sectiontableentry1'>
      <td align='center' valign='middle'>{BLOCK-emoticons}{emoticons}{/BLOCK-emoticons}</td>
      <td><div>
          <textarea name='tcomment' class='inputbox' cols='{formareacols}' rows='10'></textarea>
        </div></td>
    </tr>
    <tr>
      <td class='sectiontableentry1'>
      {BLOCK-_CAPTCHATXT}
		<table class='captchacontainer' cellpadding='0' cellspacing='0'>
        <tr>
          <td><input type='text' name='security_try' id='security_try' size='15' maxlength='10' class='captchainput' /></td>
          <td class='captcha'>{security_image}</td>
        </tr>
      	</table>
      {/BLOCK-_CAPTCHATXT}
      </td>
      <td class='sectiontableentry1'>
	  <table class='buttoncontainer' cellpadding='0' cellspacing='0'>
        <tr>
          <td><input type='button' class='button' name='bsend' value='{_SENDFORM}' onclick='JOSC_editPost(-1,-1)' /></td>
          <td id='JOSC_busy'></td>
        </tr>
      </table>
	  </td>
    </tr>
    {BLOCK-_CAPTCHATXT}
    <tr class='sectiontableentry2'>
      <td><div class='itemsmall'>{_CAPTCHATXT}</div></td>
      <td><div class='item'>
        </div></td>
    </tr>
    {/BLOCK-_CAPTCHATXT}
  </table>
</form>
{/form}

This was a bug :) Fixed for the next release. Thank you for pointing out this issue!
  • Page:
  • 1
Time to create page: 0.105 seconds