If I choose "Include an edit link to the display" under "Content Profile" in the Content Types, I can get a link which shows the full view of the user's profile. Only through this am I able to see the GMap Macro that shows my user's location. I have already selected "Display the full content" but the map is not showing in the users/* screen. Is there a way to fix this?

Comments

Sansui’s picture

Curious if you ever found a solution to this Hanscraft.

I've noticed I have a view that works:

$block = module_invoke('views', 'block', 'view', 'profile_properties-block_1');
print $block['content'];

But this doesn't work when using "full content" on the user account View page

$block = module_invoke('gmap_location', 'block', 'view', '0');
print $block['content'];

The HTML is just blank where this information should be. Displays just fine when viewing the node by itself

Sansui’s picture

I worked around this by creating a custom view instead of using the supplied Gmap block. In the custom view, I just needed to specify uid as an argument, and setting the default argument by UID in the URL - once done, I had a map that worked on my "full content" profile display on the user account page.