Under "content" search results, no hyperlinks to source pages are displaying.

Under "user" search results, nothing is displaying.

Tested search results using Bartik. Both "content" and "user" search results displed properly.

All browsers--IE, Chrome and Firefox--produced the same results.

CommentFileSizeAuthor
#3 search-results.png21.79 KBMochaMan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Lioz’s picture

Hi MochaMan,
I do see node links on the search result page of the theme demo

http://marinelli.netsons.org/search/node/test

can you post a screenshot of what's happening ?
thanks.

MochaMan’s picture

Here's a link to the site...

http://raleighudo.com/

MochaMan’s picture

FileSize
21.79 KB

I have reinstalled Marinelli, but search results page still doesn't output hyperlinks back to source page. See attached image.

Which file contains the code for the search results page? If someone has a file that works, is it possible to get a copy?

Drupal Designs 1’s picture

Hello all,

Subscribing to this post.

Having the same issue with the search functionality using Marinelli. When switching over to another theme, the site "Search" feature works fine.

Here is the link to our live site using Marinelli.

http://www.evarsys.com

The search results show up, however, there are no links to any content.

Thanks,

JK

Lioz’s picture

Status: Active » Needs review

maybe i got it

replace the block preprocess function with this one

function marinelli_preprocess_block(&$vars){ // title visibility
  $vars['blockhide'] = "";
  if (($vars['block']->region != "sidebar_first" && $vars['block']->region != "sidebar_second" && $vars['block']->region != "content"  && theme_get_setting('blocks') == 1) || ($vars['block']->region == "utility_top" || $vars['block']->region == "utility_bottom")) {
    $vars['blockhide'] = "blockhide ";
  }

  // block title tag depends on theme settings and region
  $vars['blocktag'] = "h2";
  if ($vars['block']->region == "topbar" || $vars['block']->region == "utility_top" || $vars['block']->region == "search" || $vars['block']->region == "advertise" || $vars['block']->region == "overcontent" || $vars['block']->region == "overnode") {
    $vars['blocktag'] = OUTTAG;
  }
}

let me know if it works

MochaMan’s picture

HELP! Where is the block preprocess function located?

UPDATE....

Found the code in marinelli/template.php. IT WORKS!!!! Thanks Lioz!

Lioz’s picture

Status: Needs review » Fixed
shinz83’s picture

Works! Thanks!

Note to other subthemers - I tried copying the original template.php file to my subtheme folder and updating the code there. It doesn't work that way. You actually have to update the marinelli theme folder's template.php file.

USBitcoinServices.com’s picture

Title: Search results problems » Show banner only in home page
Category: bug » support

Hello all,
I was trying to setup the banner in order to be shown only in one page (home page) but seems that this function is not at the setting place of the theme, any help? Thank you.

shinz83’s picture

Title: Show banner only in home page » Search results problems
Category: support » bug

title improperly changed..

shinz83’s picture

@globalcomercio the setting you are looking for is located...

Appearance > Theme Settings > Banner Management >

on each image uploaded for the banner, you'll need to change it's "Visibility" setting to <front>

USBitcoinServices.com’s picture

Title: Search results problems » showing banners only at home page
Category: bug » support
Priority: Major » Normal

Thank you shinz83, It did work! By replacing "front" for the wild card "*"

USBitcoinServices.com’s picture

Sorry about that, Can I change it from this section by myself, can I delete it, or a moderator only can do it? Thanks.

shinz83’s picture

Title: showing banners only at home page » Search results problems

you can change it in the comment section. if you're new-ish like me, try not to change the original titles.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

shinz83’s picture

@Lioz - I'm looking to add titles back to the footer section. I also added four footer regions and would love to have the title portion.

How can I tweak this code to not hide titles in certain regions?