ユーザー名に使用される 1 つのフィールドと、ユーザーの URL に使用される別のフィールドがあります。
したがって、ユーザーjohn smith
が名前入力を入力するとjohn-smith
、URL が最終的に/personal-trainer-directory/john-smith
ユーザーが URL フィールドに入力する必要がないように、これを自動的に行うにはどうすればよいですか?
ここに例がありますが、いくつかの ExpressionEngine コードがあります。そのため中括弧がありますが、これは CMS ではなくコードに関連していると考えられるため、ここに投稿します。
これは私が現在持っているものです:
<div class="formsection clearfix">
<label for="title">Name</label>
<span class="directions">The name you want to be displayed in your listing.</span>
<input type="text" name="title" id="title" value="{title}" size="50" maxlength="100">
</div>
<div class="formsection clearfix">
<label for="url_title">URL Title</label>
<span class="directions">Put a dash between first and last name. example: "john-smith"</span>
<input type="text" name="url_title" id="url_title" value="{url_title}" maxlength="75" size="50">
</div>