advice on affiliate feeds

Does anyone have experience with affiliate feeds into their drupal site?

I've research some approaches but none are optimal. I'm also looking at how to link the data once it is drupal (merchant & links).

If anyone has a solution they are happy with, please share.

Configuring og galleries and menus

I am trying (and failing miserably so far) to create a site that has groups (using organic groups) and picture galleries. I want a specified group of members within each group that have access to add content (blogs and pictures), but I want anyone to be able to view the data. I am having major problems getting galleries even set up. I have looked through all of the posts in the forums and still can't quite get the views part figured out. What I would like to do is add a link to the gallery for each group from the main page for the group as a submenu on the group page.

Need help. Many "denied access" in Log

I need help with this:
My log is getting flooded with denied access entries.
I set anonymous users to not have access to privatemsg module per "access control". It's like they (searchengine spiders i guess) want to private message each user. Where do they find the link to crawl to?

Site: www.pdsounds.org

Log:
access denied 15.04.2007 - 00:25 privatemsg/msgto/4 denied access. Anonymous view
access denied 14.04.2007 - 22:48 privatemsg/msgto/2 denied access. Anonymous view
access denied 14.04.2007 - 22:35 privatemsg/msgto/7 denied access. Anonymous view
access denied 14.04.2007 - 22:21 privatemsg/msgto/3 denied access. Anonymous view
access denied 14.04.2007 - 22:03 privatemsg denied access. Anonymous view
access denied 14.04.2007 - 21:55 privatemsg denied access. Anonymous view
access denied 14.04.2007 - 21:47 privatemsg denied access. Anonymous view
access denied 14.04.2007 - 21:39 privatemsg denied access. Anonymous view
access denied 14.04.2007 - 21:33 privatemsg denied access. Anonymous view
access denied 14.04.2007 - 21:20 privatemsg/msgto/12 denied access. Anonymous view
access denied 14.04.2007 - 21:13 privatemsg/msgto/10 denied access. Anonymous view
access denied 14.04.2007 - 21:06 privatemsg/msgto/13 denied access. Anonymous view

Acidfree node title

Hi,

Does anyone know how to override the acidfree theme such that the node title is not displayed.
The source of the problem stems from the acidfree gallery showing image names as node titles.

Thank you for any help,
Drasko

Problems themeing a form item

So apparently you can call theme functions to format your theme items:

$form  $form['contact']['phone_no'] = array(
    '#theme'        => 'divs_inline',
    '#type'         => 'textfield',
    '#title'        => t('Phone Number'),
    '#description'  => '10 digits, including the area code.',
    '#size'         => 15,
  );

and then the theme function:

function theme_divs_inline($form) {
  return '<div class="divs-inline">'. form_render($form) .'</div>';
}

Or at least that's my understanding of how to use it. The problem being that the form item is not actually printed to screen, But the '

' gets printed so the function is being called.

Further testing indicates that you can do something like:

<?php
$form['cc']['expiry'] = array(
'#theme' => 'children_inline',
);
$form['cc']['expiry']['ccmonth'] = array(
'#type' => 'textfield',
'#title' => t('Exp. Date'),
'#required' => TRUE,
'#maxlength' => 2,
'#size' => 2,
'#attributes' => array(
'onKeyPress' => 'return numbersonly(this, event)',
'onChange' => 'validateCCmonth();'
),
);
$form['cc']['expiry']['ccyear'] = array(
'#type' => 'textfield',
'#description' => t('(mm/yy)'),
'#required' => TRUE,
'#maxlength' => 2,

Drupal 5.1 to drupal 4.7 ?

I installed drupal 5.1 through fantastico but didn't liked it so want to go back to 4.7.

Now what I am looking to do is I will Uninstall it by fantastico and than manually install 4.7 (from the zip file). Is it OK? will this create some problem like file names or database issues ?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 4.7.x