Commercial chechkbox in wordpress registration form - advanced-custom-fields

I'm building a website and I need a checkbox in the registration form ir order to know if the user wants to receive commercial communications. I also need to save that information in the user profile so I can have a database.
Hope you can help me, and thank you in advance!

Related

Enterprise Validation check login true or false and retrieve user information?

I am building an web app that is going to run on an intranet. I would like to query the client's system to determine if they are logged in with their Enterprise credentials. Also, if possible read the credential to find the name of the user. I am not sure where to start with this and any resources or tutorials would be greatly appreciated.
I have previously done something similar with excel dashboards, where I have used the user information to display names on splashscreens, but no idea how to implement that with a web app.
Thank you.

Create a logging system to log user activity in Django

I would like to have a functionality to log a user activities after they have been logged into my Django app. The log will consist of user tracking details such as how long a user spent on a webpage, how often the webpage is being served up for the user. Mainly getting details on how popular a certain webpage or data in my Django app so that I could create more content that users prefer. Any ideas or tools to implement this?
Thanks for the suggestions. However after researching I managed to find Posthog to be the most suitable. https://github.com/PostHog/posthog

Need Guidence on Adding User Accounts and Payment System to Website

I have some business ideas I would like to try in the near future that would involve selling digital products like software or datasets. I know how to create a website as far as the HTML and CSS end, but I don't have experience with making web applications or user account systems. I would also be concerned with liability should someones account get hacked or payment information stolen.
I don't think what I need is anything too fancy. The customer needs to be able to create an account, purchase digital products, and give them access to those files on their account. I would also need the ability to remove, update, or add new files to their account after the fact.
Are there services that handle user accounts, hold files, and handle payments in one service? Maybe I could just create my own user account system and have someone else handle all payments? I could use some guidance here.
Shopify or Square if you don't want to do anything. You can also try Opencart, Megento, WooCommerce, Prestashop or Drupal Commerce.
EDIT FOR CLARIFICATION:
I did mean Square, not "Squarespace". Specifically https://squareup.com

Send Serial Keys Automatically to Customers [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 12 months ago.
Improve this question
I have literally no coding skills. I know a little about bat, and html, and css. I hope someone can help with my question, as it seems no one has been willing to help me figure this out yet.
The Problem:
I manually send software keys these days to my own customers through secure email. But it has become tiresome, and some end users want the code right away, even at 4 am when I am sleeping.
The Question:
What do I have to do to code into my website to send the end user their serial key by email automatically? Have it automatically send the keys. All I would have to do is upload them securely somewhere for it to get it.
Maybe dropbox?
Any help would be helpful. Currently using wordpress. Would be willing to purchase any code or software if its already out there. Just having a hard time being able to locate it.
I've found my solution using Woo-Commerce and this solution:
https://www.licensemanager.at/
Basically, I'll be creating my own set of serials that have checksums in them (not using the built-in generators), and then load a few hundred in there ready to be sold and issued when people make a purchase.
Through the basic API of that plugin, I can then get the user to register online and so keep track roughly of when it's been used.
All free, just takes a while to set up, specifically the validating code in my program.
It's still fairly simple and primitive, but you can work around it's limitations.
I'd love to see if having customisable user level API permissions per API user, rather than a flat 'on/off' for each of the JSON API calls.
You could use a Wordpress for a fast website enviroment deploy, with the Woocommerce plugin, to allow people to buy your software, and the WooCommerce Software Add-on , to provide them the licences, once the payment is done.
WordPress
WordPress is open source software you can use to create a
website, blog, or app.
Wordpress Site
Wordpress WooCommerce Plugin
WooCommerce is a free eCommerce plugin that allows you to sell
anything, beautifully. Built to integrate seamlessly with WordPress,
WooCommerce is the world’s favorite eCommerce solution that gives both
store owners and developers complete control.
Wordpress Plugin Site
WooCommerce Software Add-on
The WooCommerce Software Add-on gives you the ability to manage
license keys and activations via your store.
Woocommerce Add.on Site
I'm not wordpress expert, I write custom php applications and I have an application with the functionality that you are asking. The application has password recovery page, product key retrieval page. And user gets Text Message and email.
Wordpress is written in php, so you can use the php mail(); function to send the email to the customer.
You can store the keys and other data in a database table. And create a page from where the users can fetch the required data automatically.
Lets say that a returning customer lost his key, he will come to the site, and will fill in his subscription email or other credentials, and the php script will fetch the key from database and send it to the user email using the mail function.
Refer : https://wordpress.org/plugins/wp-mail-smtp/
Hope this helps. Thank you.
You need to make your users sign up to your website. Like a registration form that allows users to register once, then upon registration, you assign a serial to their details and store them in a database. Then the script can send the serial to the user's email. PhP works pretty good for me.
After many more searches I did find the answer finally! I went to http://www.tipsandtricks-hq.com, went to products, and found "e-store". This plugin allows you to sell everything digital. And gives you the tools you need for a good price. I decided to buy the Affiliate and e-store plug-in.
Thanks for your help and time!

Can Joomla and Moodle share the same database?

I know this is a hardcore programmer's site and I am more of a theorist/researcher, so bear with me with my question and my terminologies. I would like to pick your brains on this matter.
We have an existing website developed using Moodle. The website is technically a Learning Management System that grades users after each course. Now we want to make it more interactive by adding a game element to it. We will develop a tab that will redirect the users to Joomla website (which will look exactly like the moodle one) but they wont know they are on a different platform. This tab will display the users profile including his grade or at least the numerical value of his "Grades" which will be labeled as "Points". I know the numerical value of the user's Grades are stored somewhere in Moodle but is it possible for that value to be a reference of the User's points in the Joomla platform?
You will probably need to synchronise the logins between Moodle and Joomla. A "single sign on". Have a look at these integrations for Joomla.
But I would personally develop the game as a local plugin in Moodle rather than using Joomla: Local plugins - MoodleDocs.
You can share same DB for Moodle and Joomla.
But you have to keep in mind while your user details are stored in Moodles at that time you have to submit those info to the Joomla user table too.
Then you can achieve your goal. For setting up the Joomla user manually you can refer this link
Hope it make sense..
you can share the moodle website with joomla that possibly submit those user table which is acquired from moodle
Yes it is possible but make sure that user detail must be synchronized between both system tables(which has user information).