Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Hello! My wife keeps a record of family expenses in Microsoft Access, I want to transfer her workplace to Drupal 8. In fact, the whole task comes down to transferring three Access tables to MySQL. This can be done using the feeds module. But problemma occurs when data is bound.
Specifically. There are tables: 1 - category of goods; 2 - list of stores; 3 - purchase.
The first two tables are enough to import as they are. But how to make the third table add links to the entities (fields) of the first two?
I am getting into developing Drupal modules and feel like I am kicking against the wall. After trying to find the answer on my own and failed I am deciding to join the Community and ask. I need some direction on modifying a current contrib module (project/physical). I would like to add override some of the functions in the module and add a couple of new options. I already have looked through the code and know what I need to change and the functions to override. I could just change the code, or copy the module and make my own, but those both seem wrong.
I've created my content types, fields and so on and get my desired fields on my edit forms as you would expect, however, some of the data held will only ever have a single value but some will have multiple values (for example names, some have a single first name, others may have multiple first names) yet the form renders an empty box as well as the "Add another item" button giving a redundant box on the form, when you scale this over several fields that's a lot of redundant boxes on the form.
I am new to Drupal and like to achieve below solution.
The commerce module has been installed for one of our Drupal CMS site. In the admin interface there is an Orders view for the Commerce module. This view basically shows all orders placed by users on the website.
Views has a nice feature where a user who has permission can search, or filter, the content and get back a nice list using the Exposed Filters. Setting that up basically generates a formatted url that returns the user to the same view but a filtered list.
I would like to add social links to all my users by using custom fields. What is the best way to do it?
Here are my options:
Option 1
Similar to what Drupal.org do. Add a custom field (link) called Social Links and allow to add more than 1 values. That way a user will be able to add Facebook, Twitter and Instagram.
Option 2
What if I add a custom field (link) for Facebook, other for Twitter and other for Instagram? That way I'll have 3 different fields instead of one field like in Option 1.