The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
51 views

How to get notified when a user is blocked?

Is there a way to get notified when a user is blocked ? like a hook in user module or ? or there are another way ?
0
votes
1answer
36 views

How to Display a Block on a Page with a Variable URL

I want to show a block only on these user pages: .../user/USER_ID/recurring-fees. What will be the code to be placed in the PHP box to make this work?
0
votes
2answers
32 views

how to block a user from publishing a node in drupal 7

Please tell me that the user creates a node and he or she cannot publish that node on website and administrator can review that node and then the administer publish that node....
1
vote
2answers
98 views

How to make a block visible on a particular page and as well as on taxonomy term page?

here is my situation, I have a Taxonomy menu block built using taxonomy_menu and taxonomy_menu_trails module. And I have used block_term module to display the menu on nodes with given term(s). Now, ...
0
votes
1answer
60 views

How can i add multiple instances of newsletter subscriptions?

I want to display newsletter subscribe in different pages, in different ways. Hence once I have set newsletter : subscribe to home page, it does not apply to other page by default. How can I can ...
0
votes
1answer
44 views

Editing a Custom Block

I have taken over the maintenance of a site that was built with Drupal 6.x Prior to this I have no Drupal experience, so I am rolling up my sleeves and getting stuck into how Drupal works, with ...
1
vote
1answer
126 views

Is it possible to set: “show block on specific pages” into “is only the listed pages”, programmatically?

Is it possible to set: "show block on specific pages" into "is only the listed pages"? I suppose that I should add a new item in this block info, but I don't know which one and can't find it in the ...
1
vote
0answers
132 views

How do I effectively ban users with dynamic IP address maybe using a cookie?

Is there a module available to ban users that are using dynamic IP addresses with setting a cookie? I read on several forums that there is such a module available for PHPBB and I am wondering if ...
0
votes
1answer
399 views

How can I hide blocks based on content type or for specific nodes?

In some of my nodes i need to show only "body" part of node. I don't want to show blocks etc. in that nodes. How can i do this ? Creating a new "content type" and put the data from existing nodes to ...
3
votes
3answers
288 views

Access callback for blocks

We have "access callback" and "access argument" for defining the access to pages. What is the way to restrict showing blocks? Can "access callback" also be defined in hook_block_info(), or through ...
0
votes
1answer
526 views

Setting the permission for editing block content with a specific role

I have installed the modules below, but still can not set the permission for editing a block body with an specific role. Does someone know how to solve this issue? Thanks Block Access Block Content ...
0
votes
2answers
448 views

Restrict block to specific pages is broken when using view pagination

I have a block I want displayed on a view page, which has filtering and pagination. The block shows fine when you change the filter, but if you go to page 2 (or any other page than the first), the ...
2
votes
1answer
462 views

Controlling blocks displayed in domain access for each sub-domain

I'm a noob in Drupal and have been exploring the Domain Access module ( http://drupal.org/project/domain ) in my local environment and till now has been doing pretty well. But when it comes to ...
0
votes
1answer
236 views

How to show a block only if a specific user is logged?

I have a block which act as a menu. And the block is created dynamically like that: $menu_block = array( 'module' => 'menu', 'delta' => 'clientmenu' . $account->uid, // the id of ...