I am new in Dotnetnuke.
I Have a Question About DNN Custom Registration form.
I have created a custom registration form and Added DropDownList on Form of DataType List and Added Entries In It.It showing that DropDownList.
Now My Problem is that; I Need to Populate this DropDownList from Db table .So How It is Possible in DNN7. Thank You..!!!
You will need to populate it from a LIST in DNN, or use a custom registration module of some sort, the registration in DNN doesn't provide a way to pull data from other tables for the registration process.
Related
I would like to add an optional checkbox to a user registration form saying "I want to be included in marketing activities and product updates". I would like to then accordingly register the user preference... is there a way to do that?
Thank you in advance!
So far, I did not find any plugin or able to do so.
One way to do this is to use a plugin like Gravity Forms or Contact Form 7. These plugins allow you to create custom forms and include checkboxes or other form fields. Once the form is submitted, the plugin will store the user's preference in the database.
There are a few different paid plugins available that do user registration such as Gravity Forms, Fluent Forms, and WP Forms.
There is also the following free plugin for user registrations... User Registration – Custom Registration Form, Login Form And User Profile For WordPress
However, do note that you will need to upgrade to the premium plugin (or use one of the paid plugins mentioned) if you are looking to conditionally integrate user submissions into your marketing email campaign (e.g. sync with Mailchimp).
I added my customer attribute, and I want to display these fields as checkboxes in account information tab. I created checkbox in the frontend easily but the backend is not. Please help me. Thanks.
I don't know how do you have created this customer attribute but it seems that you didn't added the adminhtml_form.
If you want to edit a new customer attribute from the admin you must add the proper forms when creating the attribute: adminhtml_customer
Take a look here:
https://magento.stackexchange.com/questions/97018/adding-custom-customer-attribute-to-admin-panel/97023#97023
If the attribute is already created, you can edit this directly in DB in the table: customer_form_attribute and add adminhtml_customer to the attribute you created.
Regards
I need to add a custom field to the standard salesforce account object when a user installs my SalesForce application (Managed) in his organization.
Is it possible to package such customization into a managed package and distribute? I'm unable to find any reference to such packaging in the documentation.
Any help/links would be appreciated!
From your managed package page:
Press the Add button under the Components tab.
Set the Component Type to Custom Field
Check the Checkbox next to your field
Press Add To Package
More details are available in the documentation under Adding Components to Your Package.
Note that once your managed package is released certain details will be locked down and can't be changed.
Go to Build-->Customize-->Account-->Fields
Scroll down to the Account Custom Fields and Relationships related list.
Click on the 'New' button and create a new field of the Account object.
I am building a website with drupal 7 in which I have two user roles i.e. a member and an expert. I want to display slideshow of expert type of users with their image, name and few lines describing them in every instance of slideshow. All 3 fields which I require are stored in mysql database as the users entered these details at the time of signup. I used view_slideshow module but I am unable to configure it my way. Unable to create new content type.
Can it be possible to display slideshow in the way I want?
I am using "busy" theme if its required.
Using the views slideshow module you should be able to create a view where instead of displaying content you display users. On the create view page there is a spot where it says 'show: content ' as a drop down. Change this to users and then when you have the views slideshows module change the display format on the same page to slideshow.
in my dotnetnuke site, i have added a form and list module. And added the form containing fields name, occupation..., and records are added. will i able to get the values in another html module(row wise or column wise)
I'm not sure what exactly you want to do. What I understand is, you have listing of some object in one module and insert/update/delete in another module and you've installed both of them in same tab and now you wan to update listing module when edit module changes.
you can use IMC for implementing such kind of functionality.
No, you can't access the data from an HTML Module. But, you can certainly display the data in a variety of ways. If you want the same people who enter the data to view the data, just go into module settings and for "Appearance", select "Form Above List" or "Form Below List". That will cause the module to display both the Form and the List.
If you need more advanced control, you could also use the Reports module or a module like Efficion's Advanced Data Grid to display the data but you'll need to understand SQL pretty well to make those work.