e-commerce

Does anyone know when the e-commerce module will be ready for Drupal 7? Can you point me in the right direction for an answer?

Using WYSIWYG

Afternoon all,

I am going down the route of using WYSIWYG. Now I downloaded this and installed it. I've activated it in the modules section.

It says on the installtion guide of this to then open up configure and then go through the installation instructions but when I do this it's showing me a list of editors I can use like TinyMCE etc. So I downloaded this one and then it allows me to set Drupal to use this editor for editing in FULL HTML etc but when I go to create content and basic page it doesnt bring up the editor to use.

i want to use MYSQL but Drupal keeps forcing me to use SQLlite

I want to use MYSQL but Drupal keeps forcing me to use SQLlite. I

Any idea why ?

The mysql server is running.
Wordpress can find it.

pamphile
http://01edit.com

Node conditional CSS

Hi We would like to add conditional CSS depending on NODE (site section).

So that each section of the site has a different style.
-Product section background-image would be 1.jpg
-Blog section background-image would be 2.jpg

Please guide on proper integration?
thanks!

[SOLVED] Multi-site install with sites/example3.com aliased as example3.example1.com

I'm pretty new to Drupal. I've been Googling and searching Drupal.org trying to get a multi-site installation going.

So far I have a main Drupal (D7) installation at public_html, which has it's own domain (call it example1.com). This site is working fine.

I also have public_html/sites/example2.com with parked domain example2.com, which installed fine and works great.

Now I have a third site, whose domain is going to be example3.com, but I'm in development with that site, so prefer not to use the domain just yet.

I would like the file structure to be public_html/sites/example3.com and have a subdomain alias pointing example3.example1.com to public_html/sites/example3.com while I'm in dev, and then switch to the actual domain when I'm ready.

Do I have to use symlinks, or can I use the sites/sites.php to create an alias? I'm new to subdomains in general. Do I need to set up the example3.example1.com in cPanel or anything? How would I set this up?

I'm trying to use sites.php for this. I have "$sites['example3.example1.com'] = 'example3.com';" in sites.php. I have a clean settings.php in sites/example3.com. I've got that folder, its setting.php, and its files folder set to 777 for permissions. I try to go to example3.example1.com or example3.example1.com/install.php but this doesn't seem to be working. My browser(s) cannot find the site.

Forms api ststes and ajax selector

I'm trying to get form states to function within a nested array, It works fine when I don't address the higher levels in the input selector; but, I need it to address the levels to pick them up at submit time. The code is:

----------------------------------------------------------------------
$form['schname'][$i]['school_contact_forms'] = array(
'#type' => 'checkboxes',
'#options' => drupal_map_assoc(array(t('SAT'), t('ACT'))),
'#title' => t('Is there a form prof must complete?'),
// This #states rule says that this checkboxes array will be visible only
// when $form['student_type'] is set to t('High School').
// It uses the jQuery selector :input[name=student_type] to choose the
// element which triggers the behavior, and then defines the "High School"
// value as the one that triggers visibility.

);

$form['schname'][$i]['sat_score'] = array(
'#type' => 'textfield',
'#title' => t('Your SAT score:'),
'#size' => 4,

// This #states rule limits visibility to when the $form['tests_taken']
// 'SAT' checkbox is checked."
'#states' => array(
'visible' => array( // action to take.
':input[name="school_contact_forms[SAT]"]' => array('checked' => TRUE),
),
),
);
$form['schname'][$i]['act_score'] = array(
'#type' => 'textfield',

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x