drupal-panels

Drupal question: Views, arguments and nodequeues

Hello :) I posted this same question on a drupal-oriented site, but didn't get any replies at all. I grumbled to myself and wished that the site was more like StackOverflow, so I thought, why not try asking it here :) I'm playing around with a view that displays nodes belonging to a taxonomy term. The vocabulary also has a taxonomy node...

Node relations in Drupal Views

I'm struggling a little bit with a View that gets data from a node that uses two node reference fields, that points to the same type of content. From my path I'm getting one string as the argument, let's call it $fruit. The query I would make if I was writing the query myself would be something like SELECT * FROM recipe WHERE (fruit_1=...

Possible pitfalls on a multilingual Drupal site?

I'm about to embark on a journey to build a multilingual Drupal site, where I will most likely have to use Views, Panels and Taxonomy pretty heaily. I am a bit worried about the new-node-for-every-language approach, especially using Panels. So far I've gotten it to work similarly to what I want by not having multilingual support for th...

Drupal not printing view inside panel

I inherited a D5 site with Printer, e-mail and PDF versions module enabled that is used for printing. I have a Country page which contains a view with most recent country news inserted in a panel for placement purposes. When I print the page, the view is absent from both screen and source code. One thing I noticed is that each content...

Why does the content of a Panel not display when you set a Panel content type to be a group node within OG?

I noticed that if I set my content type, Panel, to be a group node for Organic Groups that all the Panel Content I have setup no longer shows. It appears that only the body shows up once you set Panel to be a group node. There must be something set within the code or something that does this. Does anyone know why this happens and is ...

Drupal panel / view not showing in print view

I have a Drupal 5 site that is using the Printer, e-mail and PDF versions module that appears to be creating a print version of a URL like so: screen: country/uk print: print/country/uk Each page is set up using panels and has the country image and a view of most recent country news below. On the print/country/xxx the view isn't pr...

Drupal Panels, Tabs - How do I create a link to a tab within a panel node?

How do I create a link to a tab within a panel node? I'm working on a Drupal website and have tabs within panel nodes (Modules: Tabs, Panels, Tabs Panel Style). When I click on the tabs it takes me to the correct tab. When I click on the 'next' and 'previous' links they take to the correct page. When I hover over those links they show m...

Embed Panel in Drupal

So, the default actions of panels have them taking the place of a node, or existing like a view outside of the node system. For reasons outside of the context of this discussion I want to have a panel embeded in a node. I have yet to find a "Panel Reference CCK" module, or anything that would do something similar. I've tried creating ...

Drupal: how to see the query when the node is created or any content type is created

I want to know the insert query when the content is created or any node is created. What is a simple example for that? The main purpose of doing this is I want to log the entries when the node is created. So I have created a history content. When the user creates certain type of content, I have inserted his/her details in to the table...

drupal custom created actions doesn't show up in the rules list

my actions doesn't show in the Triggered rules list i have to flush the cache or restart the system most annoying when i try to create a 'execute custom php script' action next time when i open to make few changes it shows a blank script where i have written some code. my task is to save the selected nodes in the cck field i have g...

drupal how to pass parameters from panels to views

i have to design a page with multiple views, so thought of using panels is there is any other way to use views in views in panels how can we pass token parameters to the views and the final one what is variants(in panels) all about ... urgent guys help me please..... ...

drupal Can we write a rule to send email to the customers on particular date

i have calendar module each user can create his schedules,meetings. now i want to send emails to the user before one hour( or one day before) of their schedule meetings... is that possible in drupal i thought of working with rules but not sure that will work any ideas guys please ...

drupal 6 can we write a php file in drupal which changes the headers

i have written a small code which creates a word document but i got the following errors require_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); global $user; $fp = fopen("test.doc", 'w+'); $str = "<B>This is the text for the word file created through php programming</B><br>test to create a doc file from ph...

drupal edit attachment field of a node

i have a content type named Properties, users can create the content types i have file cck field in the content type(properties) now i want to add the attachments to the or edit the attachments field only in a block or panel for the particular property, not showing all the fields when user try to edit the content type. i have heard th...

drupal 6 passing arguments to panels then to contexts

how to pass arguments to panels then to contexts in drupal, when we add the context node edit in panels 3 it shows a autocomplete field where i have to enter the NID is there is any way where this node ID can get from arguments, so that editing of the content is made more dynamic.... thanks and regards.... ...

Drupal-- How to place an image in Panels 3 panels and mini-panels, w/o views or nodes?

Is it possible, through any modular functionality, to insert an image into a (mini-)panel, either through token replacement, or through an upload dialog, or through a file selection menu? Do I have to use views? Do I have to create nodes? Would the best way be to make a panel node, and then embed it in a mini-node, if I want a block...

drupal how to refresh the page when the content is created in the popups

i have designed a panel where i have to used to popup links and automodal class for creation of content.... <a href ="/testviewprintpdf/<?php echo $object; ?> " class ="popups-form-noreload">view objects</a> now after saving the content , and closing the popup the panel page is to be refreshed how it is done..... it sounds simple ...

Drupal - Panels - use variants according to NID

I'm using Panels to overwrite node template (node/%node). I would like the system to use specific variant when a node is loaded. E.g. node 123 should use variant A and node 223 should use variant B. There isn't an option for me to determine that under Selection rules, I'm wondering if I should use PHP Code, and if I do, how should I go a...

Panels-style UI for arbitrary CCK fields?

I have a Drupal content type that has unlimited photo, textbox, and external link CCK fields, but while fields themselves can be reordered via drag-drop (i.e. photo B before photo A), I can't arbitrarily order amongst fields (i.e. photo B, link A, photo A, text A, link B). Panels is awesome, with its drag and drop, and just what I'm loo...

Overriding Node Paths

Can a PAGE override the priority of a NODE? I want to use the power of "Pages" to override my links from the nodes... For example: A nodes link is /content/202/hello-world I want to use my Panels to use the URL to create a "PAGE"... The panels can use the arguments from the URL to create a pretty cool page around the content of a no...