Organic groups access to /og
How do you limit access to the /og page to only authenticated users? I don't see to see an option under /admin/user/permissions. ...
How do you limit access to the /og page to only authenticated users? I don't see to see an option under /admin/user/permissions. ...
Drupal uses this symbol for breadcrumb seperation: » However, it shows up really messed up when I put that in code. I.e. It shows this question mark thing. What is the correct markup to display this properly? ...
I know that I need to use theme_pager function to render the code: http://api.drupal.org/api/function/theme_pager/6 I know that it is pre rendered into the $content of the page.tpl.php and if I would like to theme it I only had to overwrite the theme_pager function into template.php. I know that in Views I only had to use the variable...
Is anyone successfully embedding webcam videos in nodes where those videos are private on the hosting service? I especially would appreciate hearing about OG-supporting solutions. Thanks. ...
I dont know if im asking the impossible, but i want to have a tab in my user edit area that houses all blog related items (ie blog theme, blog info, user blogroll) as opposed to them being inside the user/%/edit and user/%/edit profile. Im putting together a multi-user site and this is crucial for user-friendliness. Thanks for any idea...
Hello All, Thanks for your time. I am new to Drupal. I am working on a website and lets assume I am testing 10 modules and select that "X" module suits me well. Now I configure this module to my requirements and then see that this suits the project really well. As you know some modules like profile module may have 10's of form fields whi...
Hello guys, I have to add a few links to where the taxonomy terms are displaying, I am using a custom module. I tried hook_link but it add links at the end of the node, How can I add links to the right side of the node title Thank you very much ...
How can I add the Ubercart buttons (Update cart and Checkout) to the bottom and top of the cart page ? I currently have only on the bottom. thanks ...
I'd like to manage a timetable using Drupal 6, there are several pieces of equipment on which an administrator distributes people who get to use the equipment. Essentially I want a table of equipment versus day of the week. The plan shows the occupation of all equipment for the whole week. What makes it more complicated is that the ed...
Hi, What is mean by the following code, I found it in the comment module (drupal 6) return theme('box', $title, drupal_get_form('comment_form', $edit, $title)); I have used this theme function before, but I had defined some themes under hook_theme(). but I didn't see any themes defined as 'box', also I found same theme 'table' Could...
The task is relatively straightforward: A Drupal website displays a list of articles with thumbnails. Some visitors would like to view it without images by clicking on a button/link and have that preference saved. e.g. http://patterntap.com/collections/index/ The problem is all visitors are anonymous and given certain traffic, page ...
Making a search with Apachesolr, i want to add a couple of filters in hook_apachesolr_prepare_query(&$query). This works fine, except I want the filters to widen the search ('OR'), rather than narrow it ('AND'). For example, if I have 4 nodes of type:A and 3 of type:B that match a search, to filter by type:A and type:B should return 7 ...
Based on this post, I'm noticing that slideshow/ slider / rotator modules are still a bit of an unsettled issue in Drupal (6). My goal is to have a simple rotating gallery at the top of my homepage, rotating between several featured nodes, complete with a few cck elements (title, short summary, and an image). Right now I'm stuck betwee...
I want to be able to show or hide a text snippet on a node based on whether or not it was tagged with a specific taxonomy term. Something along the lines of: if (term('green')) { echo"this is green"; } else { echo "not green"; } What is the Drupal way of doing this? ...
I've implemented a view in Drupal, with 'Ajax' option enabled. How could I increase the speed of this website ? it is a bit too slow... is this a normal speed for drupal ? (to open an article, load the content, filter the content...) Update: 1) Also, saving the view settings from the back-end seems to be very slow 2) Filters (the fi...
Hi all, I would like to call a Ruby script when a user uploads an image to my Drupal content-type. I have a CCK image field that serves as the main image, and ImageCache takes care of resizing and creating thumbnails for me. I have a Ruby script that does some transformations to the image, however I don't exactly know how to call it (...
So I have been reading all i can for the last 2 hours and have not a solution. I moved my drupal site from one host to another, all works well minus: images in the the 'sites/defualt/files' folder are in the FTP and i can priview them there but when got to the URL I just a page not found message. example image URL: http://www.example....
I am creating a website with Drupal 6.x that will have several content editors and several menus. I would like to somehow lock down their ability to add a piece of content as a top level navigation item. Is there a way to accomplish this? Additionally, are there any modules that make the menu drop down in the content creation page a b...
Hi i am working with drupal 7 and trying to import data from xml by parsing it using php and later on creating nodes with node_save($node). So far i have been succeeded to create nodes from xml without any images. I want to attach image to the node while i am importing it. I know drupal 7 is still in alpha 6 but its good. node_save($n...
Is there a hook that I can implement in my module so that I can run some clean up code when my module is uninstalled. I create a number of variables using variable_set() and I would like to delete these variables when the module is uninstalled. ...