Quote:
Originally Posted by dmorales
I can't see the location to comment on a vehicle. Did I miss something?
Also how do I remove the Comment notification option and I have a drop down with no name. See attach image.
Can I get this as well?
|
PM me your email and I'll send you the file
For the questions
Best way to fix the problem and remove the comment notification:
ACP->Styles and Templates->Style Manager
At your style select Edit Templates
Scroll down to and double click VB Pro Garage Templates
Double Click garage_vehicle_edit
Find
Code:
<form action="{vb:raw this_page}" method="post" enctype="multipart/form-data">
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
and replace with
Code:
<form action="{vb:raw this_page}" method="post" enctype="multipart/form-data">
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
<input type="hidden" name="comm_notify" value="0" />
Find and delete
Code:
<tr>
<td width="250"><b>{vb:rawphrase garage_thead_comm_notify}</b>
</td>
<td width="*">
<select id="comm_notify" name="comm_notify">
{vb:raw notify_enabled}
</select>
</td>
</tr>
Find and delete
Code:
<tr>
<td><b>{vb:rawphrase garage_fuel_pref}</b>
</td>
<td>
<select id="fuel_preference" name="fuel_preference">
{vb:raw fuel_type_option}
</select>
</td>
</tr>