I want to create view slider in Drupal 7. Can this be possible? The view slider must contain an image of the user and user name in the site.
click here to see view slider image
For what you have described, I would suggest using jCarousel or Views Slideshow. You can theme both of them to your liking.
Related
I want to create a custom page template in WordPress which shows Image Slideshow and then a video below it and finally some text - till now what I am able to do is play with sidebar, footer, header.
I can either remove them or keep them in my custom page templates but what I want to do is play with the page contents.
The Admin user should be able to see these sections in the Page Editor (WYSIWYG) when they choose the Template from the drop-down, so that they can accordingly add the correct content in correct place holders
Something like the attached screen-shot is showing
Is this possible in WordPress
Yes! It's possible to implement this! you can use https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 or https://wordpress.org/plugins/siteorigin-panels/ plugin.
The first plugin allows you to create different page layout and save it. It also allows admin to choose page layout that admin has saved previously.
The second page builder plugin allows you to create template same way and allows admin to clone one page layout to another one.
Hope this will help you!
I am new for Drupal.
I have one page
My Main Page
This is a view of content Type fotogallery.
When I click on any event Title like(FRIDAY 24-05-2013) it goes to that event page where it shows all images for that particular event.
Here it shows slide show for those all Images.
Now the Problem is that,
I want slideshow as well as all images under the slideshow in grid or table format.
I have attached snap of configuration of view also Content Type's Manage Display Page snap
Any one can do it?
This is a configuration of this view
This is Manage Display of Content Type
Please help me.
Regards,
Nisarg
In the view options page change the Show from fields to table or grid.
I have added an image upload field in the basic page content type that comes with the standard Drupal installation. If the user uploads an image, I want it to be automatically displayed at the top of the page as a banner. Problem is, the image just gets added below the main content of my page under the heading 'Page image: '
How am I able to change the page layout so that the image is displayed where ever I want?
If I am understanding you correctly there are a couple of ways to go about this. One, create your basic page content with your image and then create a view that references that image, or a bunch of images, like a slideshow, and places these images in the "banner," region of the page.
You will need to add a filter in your view to only accept the page content type.
Hope this helps.
First you have to hide image field from admin/structure/types/manage/page/display, which is content type's manage display page. You can do this by selecting "Hidden" option in FORMAT column for image field. This will hide your image field when you view your node.
To display image field in banner region you can create an block type view to display only image field of basic page content type and position this block to banner region. This will display all image in basic page contents. To display only current viewed content image you have to apply contextual filter with these steps:
In edit view page click on add button in contextual filter and select
Content: Nid option and click apply.
Then select "Provide default value" from "WHEN THE FILTER VALUE IS NOT
AVAILABLE" and in "TYPE" field select "Content ID from URL" option and
click on apply.
Now if you view your basic page content image will be shown in banner region instead of display with node content.
I have change the default display of a node type to use panels but I don't seem to have the view, edit, version etc tabs. How do I add them to my panel?
Tabs are a part of the page elements group when inserting content into your panels. You can see the tabs in the right column at the bottom. If you add that to your panel then you will get the tabs on your node pages.
One workaround is to make a view to output the node fields you need. And add 'edit link'
there. Then use this view in the panel instead of the node.
Have you given the proper path to your views?
No need to add to panel.
Just give the path to your views and add filters/rows to display.
I have an image gallery for which I have configured an Imagecache preset. It's my first time using Imagecache so I am not sure if I am using it right.
Right now, I see that I can only configure the CCK imagefield to show me the imagecache generated image in either the preview or the full node version of the field.
I would prefer to have a new CCK field with the imagecache generated picture. Is this possible? Is there a module for this?
If it isnt, how can I customize my gallery view to show me the preview version of the image, instead of the full node version, which it is currently showing?
Assuming you have defined an imagecache preset called preview, you can create a view display of your gallery_image node type that uses fields rather than node view and selects the field content_name_of_your_image_field and set the display of this field to preview. If you want to turn this into a gallery, you can link this field to its node, and choose the Grid view style from the menu on the left.
I am guessing that you are probably about half way through these instructions already (unless you are using a horrid image gallery module to create your image gallery).