Bud
-
Total Posts
:
78
-
Reward points
:
2830
- Joined: May 20 '08
-
Status: offline
|
Tracking of PMs
Fri. Apr 15, '11 9:08 PM
( permalink)
Hi, Some of the vendors that use my fourm to sell their products have been complaining that they are having trouble keeping track of PMs. It seems that their customers are replying to PMs and not using the "quote message" option. This means that the vendors are having trouble figuring out what the customers are replying to. Is there a way of mandating the "quote message" function? Thanks
It's not me, it's you.....
|
|
|
|
Samuel
-
Total Posts
:
11853
-
Reward points
:
180670
- Joined: May 23 '01
-
Status: offline
|
Re:Tracking of PMs
Sat. Apr 16, '11 9:49 PM
( permalink)
Yes, by simply altering the code section in pmsend.aspx.vb: If autoQuote Then
.Body.HTML = quoteFieldValue
Else
.Quote.Value = quoteFieldValue
'enable the quote previous button on the editor
.Body.ConfigOptions.Add("quote_original_html", "'1'")
End If Change it to If True Then
.Body.HTML = quoteFieldValue
Else
.Quote.Value = quoteFieldValue
'enable the quote previous button on the editor
.Body.ConfigOptions.Add("quote_original_html", "'1'")
End If
<message edited by Samuel on Mon. Apr 18, '11 4:09 AM>
ASPPlayground.NET ~ see our Version 4 plans here
|
|
|
|
Bud
-
Total Posts
:
78
-
Reward points
:
2830
- Joined: May 20 '08
-
Status: offline
|
Re:Tracking of PMs
Sun. Apr 17, '11 2:56 AM
( permalink)
Perfect. Many thanks. BTW the file is actually pmsend.aspx.vb
It's not me, it's you.....
|
|
|
|