Welcome Im looking for shopping module which will be common for website and facebook - a friend of mine want to avoid of creating two systems for inputing data. is there any way to solve it? best regards, Paul
With only a few days to DrupalCon Chicago, what better time to launch our traditional battle plan discussion. It is time for us to start talking about Drupal 8. If you plan to work on something, or if you are going to contribute to Drupal in one way or another, please share your "personal battle plan" in the comments. A "personal battle plan" is a summary or itemized list of things you are going to work on during the next 12 months or so.
I created an event using CiviCRM and have that users have to log in to register for the event. However, when users create a new account, it creates one for Drupal, but this isn't translated into CiviCRM. Is there a way for the information collected by Drupal to be sent to CiviCRM or an account for CiviCRM to be created instead? Thanks!
Here's the code to create a custom block in drupal that will display the results of a Google Video search based on a specific search term. I had to dig around a bit to find out how to do this, so I'm posting it here.
NOTE: You'll most likely want to turn on the PHP Filter module and use that input format setting for this code, so that none of it gets taken out when the block is displayed.
google.load('search', '1');
function OnLoad() {
// Create a search control
var searchControl = new google.search.SearchControl();
// So the results are expanded by default
options = new google.search.SearcherOptions();
options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
// Create a video searcher
var videoSearch = new google.search.VideoSearch();
// Set the result order of the search - check docs for other orders
videoSearch.setResultOrder(google.search.Search.ORDER_BY_DATE);
// Set the size of the search results
// OPTIONS:
// LARGE_RESULTSET - request a large number of results (typically 8 results)
I am trying to set up my USPS shipping (Ubercart) online and instead of showing me the prices, etc it spits the xml on the page. i am connected to the production server and the data seems to be coming but being displayed raw. Any help?