I am newbie in drupal I learned how to create content types, but I need do it:
I have the content type project with fields location, arquitect, images, contact, saler, etc each field is text with google maps reference, the profile of arquitect responsable, imageg of project, info of contact, saler profile respectively I need to show this info in this way. How Can I do this? I am usin Drupal 8

fields of content type show as sidebar menu in drupal
616 Views Asked by David Untama At
1
There are 1 best solutions below
Related Questions in DRUPAL
- Drupal image styles DivisionByZeroError
- Drupal: MQLSTATE[42000]: Syntax error or access violation: 1142 INSERT command denied to user when accessing any page with a form
- How can I add taxonomy to uploaded files through an api in Drupal 10
- How to retrieve taxonomy term name in url instead of id in a drupal view?
- Save button not displaying in drupal 9
- how to do ajax callback in custom block, which will fetch records from database dynamically in Drupal 10?
- Why are my form fields, built using Drupal Next.js Webforms, not displaying the Help Text?
- Multiple replacement / substitute NGgram string SOLR 8.6
- Drupal 9 Bartik (default theme) carried over from old Drupal seems to have previously worked but no longer renders HTML properly
- Getting no State error with simplesamlphp library v 2.13
- Using the Drupal Cache API for Drupal Entity Caching
- drupal version issue drupal 8 to drupal 10
- Why does my pure CSS parallax scrolling stop working on completion of page loading in Drupal 9
- Getting the value from a multi-select list PHP in Drupal site
- Parent menu link opens children when clicked, instead of going to link (Drupal)
Related Questions in SHOW
- I can't make the last line spread across in my display
- showing loader while loading and show result when finished works fine in Firefox but not in Chrome
- WooCommerce: Show or hide Out of Stock button depending upon stock conditions
- How can I display the data after the user submits the form in Laravel 10?
- How to make a div stay visable after refresh
- Show/hide Javascript Toggle in the same page problem. Multiple hidden texts shows up in the same time. Without JQuery
- Show content after captcha submit
- Picture Show Preview
- TYPO3 gridelements accordeon show
- How to show form (own class) called in a hidden MainWindow class?
- jquery working only first item when another items was hidden
- how to Elfinderk img show
- The indicator does not move to a separate panel (Tradingview study error)
- How to show a small table by inputting a value in another cell
- how to Show Heads-up notification when app is closed
Related Questions in SIDEBAR
- How close/hide a sideBar menu after clicking when a mobile screen
- Why isn't the arrow for the romance span aligned with the words, like all the others in the navbar and how do I fix it (Entire code isn't mine)
- How to fix sidebar collapse?
- Use sidebar on specific pages
- CSS: Sidebar Tooltip Struggle
- Retrieve localStorage value instead of useState default when available in ReactJS?
- Angular PrimeNg MegaMenu into a scrollable div with overflow-y result in hidden submenus
- Sidebar has a gap on top of it
- Replace the default sidebar in .Net8 Blazor Web App with the Syncfusion sidebar
- How to send checkbox value from sidebar to googlesheet?
- smooth scroll on sticky menu with sfixed sidebar
- Can't find node in Godot
- Javascript - Sidebar that expands/collapses on mouseover, storing state when routing between pages
- SwiftUI Sidebar with collapsing Button
- Sticky Sidebar. Method updateSticky() does not work when closing the accordion
Related Questions in DRUPAL-CONTENT-TYPES
- "Fatal error when title field is empty(Integrity constraint violation)"
- I have few blogs on WordPress, which I want to upload those blogs into Drupal 9, what are the I have to do so
- Drupal 9: Get rendered view within Content type
- How do I store content in Drupal 9 about wrestlers and their entrance themes in such a way that a theme entry can be "borrowed" from another wrestler?
- Exporting Content Type Data from Drupal 7 Database
- How do you configure views block based on node reference in Drupal 8/9?
- Display list in table or grid format in drupal
- Drupal 8 hierarchy of content types with taxonomy as parent
- Use custom content type as field in another custom content type field in drupal 8
- How to make a Drupal Commerce configuration entity revisionable
- how can i slove the given issue while not disturb the built site in drupal
- How to customize/style/theme the output of a custom content type in Drupal 8?
- How to navigate the URL after booking page in Drupal 7
- Drupal 8 - Admin - Content Types - Manage form display - Fields groups, labels, headers
- fields of content type show as sidebar menu in drupal
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can achieve this by installing and setting 'Views' module: https://www.drupal.org/project/views, then to create new view with block display that will show fields only for current node ID of your specific node type by using contextual filter in advanced section when editing views:
You can setup your view block like this:
Add in contextual filters node nid:
For this contextual filter, select provide default value of type PHP code and set to retrieve it through arg(1):
When you finish setup your view, your block will appear under blocks, so you can assign it to region you want to, i.e. sidebar.
If you want to, you can restrict visibility for specific content type.
For drupal 8 it is content -> ID, then select "Provide Default Value" when the filter value is not available, and under type select "Content ID from URL"
Under section advanced, add new contextual filter
Choose Content: ID
Choose provide default value and Content ID from url