Drupal, creating a view for Ubercart customers? - drupal

I want to customize the Ubercart customers list, displaying more fields enabling multiselection, actionsm etc..
I already have a view for drupal authenticated users, but I cannot display informations such as billing addresses from ubecart (or see orders)
Any tip ?
thanks

Did you try Ubercart Views - http://drupal.org/project/uc_views ?
From the module page
It also describes some of the Ubercart data tables to views, so you can create your own views, based on these data using the views_ui.

Related

How to display Drupal Commerce user orders on drupal calendar page/block?

Can Drupal calendar be used to display user orders on block or page on user dashboard so that they can see their all orders status on calendar. There is already a view that shows orders in tabular form, but can Drupal calendar can be used to show users orders as well?
Any suggestion / ideas?
Every view has its template files. And you can edit them, meaning you can "force" them to display what every you want. So find template file ("Theming information" on view edit page / Advanced options can be helpful) you want to upgrade and add your code there which will get user order for that day and display them.
It is now possible to display Commerce Orders in a Calendar View with this module: https://drupal.org/project/calendar_view

Letting users create their own products in Drupal Commerce

I have Drupal Commerce all set up but I need to allow users to add their own products (like on eBay).
I've created an EntityForm type with all the relevant fields, and have set it up to create an entity (of type Commerce Product) on submission.
The trouble is the custom fields for that product type are not available to submit information to.
Is there any way of making those custom fields available?
Thanks in advance!
Jeremy

How to display grid view in unbercart catalog

I am new to Drupal and ubercart, Actually making my first site on Drupal CMS.
I am developing online store with the help of ubercart. I am getting difficulties to display products in grid view for catalog.
As long as I understand correctly, we can create product categories from
Texonomy->add term
when I open url for example, http://[Website_URL]?q=[catalog_term_name]
I end up with the page where products are listed in list form not as Grid.
I am using drupal 7 and ubercarts's latest version[just downloaded two days ago], and as
long as I know ubercart supports grid view but how to display it.... I dont know.
Any help will be appreciated.
Thanks in advance.
Go to admin > structure > views ( For Drupal 7.x) and customize t he catalog view.

wordpress custom field to select from existing posts

I'm building a WP site and at one specific page i want to have a custom field in wich the user can select from existing content to be linked there. (english is not my native lang :)
In my case:
I have a services page where the admin can add new services.
I have a doctors page where the admin can add new doctors.
I want to have the option to link one doctor to one specific service.
Can this be done?
As other said, Advanced Custom Field is the answer to your and most needs regarding the data hierarchy management in wordpress.
In addiction I suggest to you to read this good tutorial about the use of Types, another good plugin that does the same work of ACF.
Considere moreover that both plugins ask money if you want more functionalities.
Here is the plugin url : http://wordpress.org/extend/plugins/advanced-custom-fields/ that makes relationship between custom filed. It will you.

How can I sort and filter a drupal VIEW using the date field provided in Content Profile

For a site I'm making for a sports club I want to create a block through views that shows the upcoming birthdays off all members registered on the site. I am aware that you can do this for nodes, but somehow I can't access the Profile: Birthday field through views. Not if I make a views using nodes, neither if I make a view using users.
I have Views, CCK, Content Profile and Date installed. I work with drupal 6 on a php 5.1.6(I can't get the administrators to update the server). But I can't get it all to work together... Any leads for this?
Since date profile field is serialized in database (drupal 6), it is not possible to sort.
http://drupal.org/node/475150
However, instead using a profile field, you can add a date cck field to your profile content type wich will be sortable.
Did you added the "content profile" relationship in views ? If I remember well, this relationship will let you access to the content profile fields you're looking for.

Resources