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
614 Views Asked by David Untama At
1
There are 1 best solutions below
Related Questions in DRUPAL
- Drupal access control to custom user profile page
- How to list all child pages of current parent page in drupal 7?
- MariaDB/MySQL all of a sudden crashed and won't restart
- Drupal location module shows only a portion of Gmap on node page
- How to add a select collection type select list to field collection
- Drupal7 modified user login no effect?
- Drupal AngularJS ajax simple ng-repeat update
- Drupal: Access A Field in hook_views_query_alter()
- Drupal Webform : set SCORE on each SELECT Options?
- Register new user as authenitcated user in drupal using xml-rpc
- Drupal domain access auto create content
- How to display sibling pages except current page in drupal 7?
- how to merge entity reference relationship field value
- Drupal print breaks when rendering a region
- All files and folders are not being listed in the imce file browser in Drupal 7
Related Questions in SHOW
- show/hide multiple div tags at once and change the size of the remaining div tag
- text show and hide with button php/js
- jQuery toggle by ESC and clicking
- content a textarea shows in a div
- Show/hide script in jQuery shows only last hidden div
- What should "git reflog show <ref>" show?
- Datatables show/hide row with jquery UI effect
- base.Show() throwing InvalidOperationException
- jQuery tooltip random appear
- How to add link_to under Div on ActiveAdmin's show page | Rails 4
- Instance of Show for lambda-abstraction ADT
- Watin. how to show invinsible class
- Cannot target DIV to .show() on toggleClass
- .PPT macro-enabled show path
- jQuery - link hides div
Related Questions in SIDEBAR
- Admin Dashboard layout with Bourbon Neat
- Swift ios app : sidebar menu, several pages containing table views with pull refresh
- Ionic material side bar
- Can't open folder that was dragged and dropped to sidebar in sublime text3
- How do I make my toggle button scroll up slightly when I scroll down the page?
- Collapse Sidebar Menu on Rdash Angular
- How to customize the left side-bar in Magento 1.9 category view
- Sidebar which can scroll but with the main content fixed
- div overlapping sidebar (simple solution)
- Material Design Sidebar fadein
- Is there any iOS slide on top sidebar?
- Make sidebar positioning fixed
- Sticky sidebar doesn't scroll
- Sticky sidebar for wordpress blog using only CSS?
- How to stop an animated scrollbar at the bottom of the page?
Related Questions in DRUPAL-CONTENT-TYPES
- fields of content type show as sidebar menu in drupal
- Using different views for full nodes depending on contenttype
- Convert drupal 7 content type into code automatically. Content type generator code?
- How can I customize a specific node in Drupal 6 WHEN a custom template has already been applied to the node's content type?
- Use webform submission id in custom content type
- Drupal - How to hide data in "edit content"
- Drupal custom content type list view
- drupal: let users upload content type
- Content Types not linked to Product Variations
- Drupal 7 Does "New Node Creation" initiate/prepare the Fields for different Content Types?
- Drupal 7 Is the a way to programmatically know the Fields in a Content Type?
- How can i have a link field in a content type display a default text when the field is empty
- Display list in table or grid format in drupal
- 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?
- Drupal 8 - Admin - Content Types - Manage form display - Fields groups, labels, headers
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 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