How to edit search presentation

Hi!

I installed a iframe-module that makes external links open in a iframe on my site. The problem is the internal nodes and pages in search result suddenly becomes external, even if i am hosting the page, so they also opens in a iframe. I need to add a:
a href="http://foobar.com" class="external-nofollow" to the search result links. How do i do this?

Drupal 7.4
Regards
Pontus

Display a list of CCK nodes

Hello folks,

I'm a newbie with Drupal so I would to ask you something to try to find a solution. I have created a content type to store the information about the teachers of a school (name, classroom, description, email address, photo, ...). I would like to link from a menu to a page with an alphabetical ordered list with all the nodes in my site but I'm not sure of what I have to do.

any ideas???

hide newsletter block after subscribing

hi guys,

I'm using drupal 7 and the module simplenews 7.x-1.x-dev. (+mimemail & mailsystem module).
I need to know if there is a possibility to hide the newsletter registration block as soon as a user subscribed to the newsletter. (at first I just disabled the "Unsubscribe" button by deleting some code in the simplenews.module)
And in addition I want to disable the site under newsletter/subscriptions.

Anyone in here who can help me? :/

greetings

edit:

btw. that's what I wrote in my simplenews-block.tpl.php

jQuery and iframes

Hi, i am new to the whole drupal core and its features.

I just installed a module called "External iframe" witch provides a iframe for every external link. It works fine, but with only one problem. Suddenly the links in searchindex "counts" as external, and local nodes in the search index opens in an iframe.

Heres the module .js file

/* $Id$ */
(function ($) {

Drupal.behaviors.externanaliFrame = {
attach: function(context, settings) {
// Set iframe height
function resizeframe() {
var buffer = $('#external-container').height();
var newHeight = $(window).height();
var newFrameHeight = newHeight - buffer;
$('#external-site-container').css('height', newFrameHeight);
}
$(window).resize(function() {
resizeframe();
});
$(window).load(function() {
resizeframe();
});

// Rewrite external links
var appendUrl = '/external?url=';
var http_host = location.hostname.split('.');
if (http_host.length == 3) {
var host = http_host[1] + '.' + http_host[2];
} else if (http_host.length == 2) {
var host = http_host[0] + '.' + http_host[1];
} else if (http_host.length == 1) {
var host = http_host[0];
}
$('a[href^=http:]:not(.external-nofollow)').each(
function(){

Book URL alias tokens

Hi,
how can I create aliases for book pages?
I want create aliases as follows:

mywebsite.com/book-title/page-parent1/page-parent2/page-title

I cannot find any tokens to achieve this. Is it possible in D7?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x