Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Ok, you simple create a couple of views which have the same dir path and all appear in one view as tabs with one being the set default... /myviews/view2
But what if I want to add to let's say to the category node type an extra view tab menu (Showing it in a different order by date)? If I make a view of mine default then it is shown but does not work since it merely copies the "other" already default...
Is there a way to now simply tell Drupal that whenever it is in a path like node/55/ to check the views index if there are any customized views to be added as menu tabs?!
I installed the flashvideo module, after some slight problems concerning the ffmpeg part it works fine.
MY PROBLEM IS: The "preview" of the video ( before you click on the play button ) is black. It would be nice if the first frame of the
video would be shown in the player. How to do that?
I enabled locale module, so (I think) I have a timezone select in edit user tab. Now I'd like to add timezone select in register new user screen too. I have problems looking for piece of code that performs that select, Could anybody help me?
Hi people, I look for a module to increase and to decrease the size of the font for my site drupal on version 4.7
There is a module called " Font size ", however he was forgotten for the version 4.7 and 5
Does anybody have a solution for my problem?
How can I add a new Item in the primary links using the api, the following add a new item in the navigation block. I try to replace the 'path' property but without success.
=========================
function mymenu_menu($may_cache) {
// Create an array to hold the menu items we'll define.
$items = array();
if ($may_cache) {
// Define a static menu item.
$items[] = array(
'title' => t('Greeting'),
'path' => 'mymenu',
'callback' => 'mymenu_hello',
'access' => TRUE
);
}
return $items;
}