Jump to content

Make custom fields in client area product details editable?


DusanP

Recommended Posts

Hello

I have created custom select fields for product in Setup->Product/Services->Product/Services->Edit Product->Custom Fields tab, and that field value is shown in the client area product details section. However, i need to make that select field editable for the client.

So basically i need to show full custom field and not just value, and save button that will save the new value to that custom field.

I know that i need to change the clientareaproductdetails.tpl template,so i have tried creating the HTML form input but i think that my form action (or something else) is wrong.

Any ideas how can i do this? Or some examples?

Thanks

Link to comment
Share on other sites

Probably you're using the wrong approach.

Products/Services Custom Fields are not meant to be edited by customers. Of course it would be possible to make these fields editable but it's a pain in the ... Basically you have to reinvent the wheel. In the foreach inside clientareaproductdetails.tpl you have to re-create "manually" all the possible input types (text, textarea, dropdown, radio, password), preserve regex validations (if in use), visibility, key-value pairs for dropdowns and all other stuff. Not to mention that WHMCS will not magically save your changes therefore you also have to code your one action hook and custom script to save all values that have been updated.

If you want customers to edit fields "linked" to specific products/services you should use Configurable Options (Setup > Products/Services > Configurable Options).

Edited by Kian
Link to comment
Share on other sites

18 hours ago, Kian said:

Probably you're using the wrong approach.

Products/Services Custom Fields are not meant to be edited by customers. Of course it would be possible to make these fields editable but it's a pain in the ... Basically you have to reinvent the wheel. In the foreach inside clientareaproductdetails.tpl you have to re-create "manually" all the possible input types (text, textarea, dropdown, radio, password), preserve regex validations (if in use), visibility, key-value pairs for dropdowns and all other stuff. Not to mention that WHMCS will not magically save your changes therefore you also have to code your one action hook and custom script to save all values that have been updated.

If you want customers to edit fields "linked" to specific products/services you should use Configurable Options (Setup > Products/Services > Configurable Options).

Thank you Kian for your reply. I know about Configurable Options, but it really doesn't work for me.

I saw some similar post where  someone said it can be done, but there where no example of it, so i thought it was not that hard.

Link to comment
Share on other sites

Well it's not that hard. Probably it's just boring as hell 🤢 Let's see if I can give you a basic example. Open templates/{YOUR-TEMPLATE}/clientareaproductdetails.tpl and look for this section of code.

{if $customfields}
    <div class="tab-pane fade{if !$domain && !$moduleclientarea && !$configurableoptions} in active{/if} text-center" id="additionalinfo">
        {foreach from=$customfields item=field}
            <div class="row">
                <div class="col-sm-5">
                    <strong>{$field.name}</strong>
                </div>
                <div class="col-sm-7 text-left">
                    {$field.value}
                </div>
            </div>
        {/foreach}
    </div>
{/if}

Change it as follows:

{if $customfields}
    <form action="test.php?id={$smarty.get.id}" method="post">
        <input type="hidden" name="action" value="updateCustomField">
        <div class="tab-pane fade{if !$domain && !$moduleclientarea && !$configurableoptions} in active{/if} text-center" id="additionalinfo">
            {foreach from=$customfields item=field}
               	<div class="row">
                    <div class="col-sm-5">
                        <strong>{$field.name}</strong>
                    </div>
                    <div class="col-sm-7 text-left">
                        {$field.input}
                    </div>
                </div>
            {/foreach}
        </div>
    </form>
{/if}

Your Custom Fields will look like this:

1707122707_Screenshot2018-07-1122_03_29.png.1b093cf837d5606388577f7bcc03847d.png

Now focus on the action of the form. I made it post all values to a page named test.php in the root directory of WHMCS. Here I can print the selected values...

1832480213_Screenshot2018-07-1122_05_41.png.74c74d1f352f78f00eceb590d53b1a6d.png

Here you go. You can now run a query on tblcustomfieldsvalues to update all the values. Of course you should pass also other variables and validate fields. Obviously you can achieve the same result also with an action hook instead of making all the things in a dedicated php file.

Edited by Kian
Link to comment
Share on other sites

On 7/11/2018 at 10:09 PM, Kian said:

Well it's not that hard. Probably it's just boring as hell 🤢 Let's see if I can give you a basic example. Open templates/{YOUR-TEMPLATE}/clientareaproductdetails.tpl and look for this section of code.


{if $customfields}
    <div class="tab-pane fade{if !$domain && !$moduleclientarea && !$configurableoptions} in active{/if} text-center" id="additionalinfo">
        {foreach from=$customfields item=field}
            <div class="row">
                <div class="col-sm-5">
                    <strong>{$field.name}</strong>
                </div>
                <div class="col-sm-7 text-left">
                    {$field.value}
                </div>
            </div>
        {/foreach}
    </div>
{/if}

Change it as follows:


{if $customfields}
    <form action="test.php?id={$smarty.get.id}" method="post">
        <input type="hidden" name="action" value="updateCustomField">
        <div class="tab-pane fade{if !$domain && !$moduleclientarea && !$configurableoptions} in active{/if} text-center" id="additionalinfo">
            {foreach from=$customfields item=field}
               	<div class="row">
                    <div class="col-sm-5">
                        <strong>{$field.name}</strong>
                    </div>
                    <div class="col-sm-7 text-left">
                        {$field.input}
                    </div>
                </div>
            {/foreach}
        </div>
    </form>
{/if}

Your Custom Fields will look like this:

1707122707_Screenshot2018-07-1122_03_29.png.1b093cf837d5606388577f7bcc03847d.png

Now focus on the action of the form. I made it post all values to a page named test.php in the root directory of WHMCS. Here I can print the selected values...

1832480213_Screenshot2018-07-1122_05_41.png.74c74d1f352f78f00eceb590d53b1a6d.png

Here you go. You can now run a query on tblcustomfieldsvalues to update all the values. Of course you should pass also other variables and validate fields. Obviously you can achieve the same result also with an action hook instead of making all the things in a dedicated php file.

Thank you so much. You helped me allot!

Link to comment
Share on other sites

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated