<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.6000.16587" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=890195313-17122007><FONT face=Arial
color=#0000ff size=2>Can I place it on the content type template
area?</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=890195313-17122007><FONT face=Arial
color=#0000ff size=2></FONT></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN class=890195313-17122007><FONT face=Arial
color=#0000ff size=2>thank's a lot!</FONT></SPAN></DIV><BR>
<DIV class=OutlookMessageHeader lang=es dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>De:</B> support-bounces@drupal.org
[mailto:support-bounces@drupal.org] <B>En nombre de </B>William
Smith<BR><B>Enviado el:</B> dilluns, 17 / desembre / 2007 13:33<BR><B>Para:</B>
support@drupal.org<BR><B>Asunto:</B> Re: [support] emmbed a view on the bottom
of a node<BR></FONT><BR></DIV>
<DIV></DIV>You could also create a template file for the node type where you
want to display the view and manually render the View. Let's say your View
is called 'myview' and your node type is called 'journal': in your theme
directory, copy node.tpl.php to node-journal.tpl.php and after the "print $body"
in node-journal.tpl.php, add something like the following code
-<BR><BR><?php<BR> $view = views_get_view('myview');<BR> print
views_build_view('embed', $view); <BR>?><BR>
<DIV class=gmail_quote><BR>If you need to pass in arguments to your View or
anything more complex than that, you can pass in additional arguments to
views_build_view. See <A
href="http://drupal.org/node/48816">http://drupal.org/node/48816</A> for a bit
of info on doing so.<BR><BR>On Dec 17, 2007 6:42 AM, Marolijo - Pol maresma
<<A href="mailto:marolijo@yahoo.es">marolijo@yahoo.es</A>> wrote:<BR>
<BLOCKQUOTE class=gmail_quote
style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">Thank's
for the info, I'm goin' to try it.<BR><BR>See you<BR>
<DIV class=Ih2E3d><BR>-----Mensaje original-----<BR>De: <A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>
[mailto:<A href="mailto:support-bounces@drupal.org">
support-bounces@drupal.org</A>] En nombre<BR></DIV>de Bill
Fitzgerald<BR>Enviado el: divendres, 14 / desembre / 2007 17:29<BR>
<DIV>
<DIV></DIV>
<DIV class=Wj3C7c>Para: <A href="mailto:support@drupal.org">support@drupal.org
</A><BR>Asunto: Re: [support] emmbed a view on the bottom of a node<BR><BR>You
could also create a block with your view, and enable the block in
any<BR>region of your theme. You could use a php snippet to control the block
<BR>visibility so it only displays on nodes where it's relevant, and a
views<BR>argument to grab the nid of the current node.<BR><BR>This would
eliminate the need for the viewfield module, and the
view<BR>selector.<BR><BR>Cheers,<BR><BR>Bill<BR><BR>Marolijo - Pol maresma
wrote:<BR>> Hello again!<BR>> How can I hide the attached view selector
on node edit?<BR>> I don't wanna let user change it because I need it to be
a fixed view <BR>> with %nid as argument.<BR>><BR>> Thank's for
all!<BR>><BR>><BR>> -----Mensaje original-----<BR>> De: <A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>
[mailto:<A href="mailto:support-bounces@drupal.org">
support-bounces@drupal.org</A>] En<BR>> nombre de Marolijo - Pol maresma
Enviado el: dijous, 13 / desembre /<BR>> 2007 11:15<BR>> Para: <A
href="mailto:support@drupal.org">support@drupal.org</A><BR>> Asunto: Re:
[support] emmbed a view on the bottom of a node <BR>><BR>> Ok I see it
appears as default to new nodes and I only need to correct<BR>> the old
ones.<BR>><BR>> Thank's a lot!<BR>><BR>> -----Mensaje
original-----<BR>> De: <A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>
[mailto:<A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>]
En<BR>> nombre de Marolijo - Pol maresma Enviado el: dijous, 13 / desembre
/<BR>> 2007 11:00<BR>> Para: <A
href="mailto:support@drupal.org">support@drupal.org</A>; <A
href="mailto:z.stolar@gmail.com">z.stolar@gmail.com</A><BR>> Asunto: Re:
[support] emmbed a view on the bottom of a node<BR>><BR>> Thank's! I
have the viewfield working now! <BR>> I wanna attach the same view to a
specific content type, so I selected<BR>> the view on the Content Type
Manage Fields area, and passed the %nid<BR>argument.<BR>> But I still need
to select the view on each node of this content type. <BR>><BR>> How can
I force it as default? I can't find the solution on the<BR>> viewfield
project page.<BR>><BR>> Thank's again!<BR>><BR>> -----Mensaje
original-----<BR>> De: <A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>
[mailto:<A
href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A>]
En<BR>> nombre de Zohar Stolar Enviado el: dijous, 13 / desembre / 2007
10:19<BR>> Para: <A
href="mailto:support@drupal.org">support@drupal.org</A><BR>> Asunto: Re:
[support] emmbed a view on the bottom of a node<BR>><BR>> Two modules
may assist you:<BR>><BR>> <A
href="http://drupal.org/project/insert_view"
target=_blank>http://drupal.org/project/insert_view </A><BR>><BR>> <A
href="http://drupal.org/project/viewfield"
target=_blank>http://drupal.org/project/viewfield</A><BR>><BR>><BR>><BR>>
Marolijo - Pol maresma wrote:<BR>><BR>><BR>>> Hello, I have a view
wich show a list of nodes (B) related to another <BR>>> node
(A).<BR>>> I need to show B under A. How can I do it? I tried panels
without luck.<BR>>><BR>>> Thank's for
all!<BR>>><BR>>><BR>>> Pol Maresma / <A
href="mailto:pol@polnetwork.com">pol@polnetwork.com</A> <mailto:<A
href="mailto:pol@polnetwork.com">pol@polnetwork.com</A>><BR>>>
PolNetwork.com / Serveis d'Internet<BR>>> msn:
marolijo<BR>>><BR>>><BR>> --<BR>> [ Drupal support list | <A
href="http://lists.drupal.org/" target=_blank>http://lists.drupal.org/</A>
]<BR>><BR>> __________ Informacisn de NOD32, revisisn 2720 (20071212)
__________<BR>><BR>> Este mensaje ha sido analizado con NOD32
antivirus system <BR>> <A href="http://www.nod32.com"
target=_blank>http://www.nod32.com</A><BR>><BR>><BR>> --<BR>> [
Drupal support list | <A href="http://lists.drupal.org/"
target=_blank>http://lists.drupal.org/</A> ] <BR>><BR>> __________
Informacisn de NOD32, revisisn 2720 (20071212) __________<BR>><BR>> Este
mensaje ha sido analizado con NOD32 antivirus system<BR>> <A
href="http://www.nod32.com" target=_blank>http://www.nod32.com
</A><BR>><BR>><BR>> --<BR>> [ Drupal support list | <A
href="http://lists.drupal.org/" target=_blank>http://lists.drupal.org/</A>
]<BR>><BR>> __________ Informacisn de NOD32, revisisn 2720 (20071212)
__________ <BR>><BR>> Este mensaje ha sido analizado con NOD32
antivirus system<BR>> <A href="http://www.nod32.com"
target=_blank>http://www.nod32.com</A><BR>><BR>><BR>><BR><BR><BR>--<BR>Bill
Fitzgerald<BR><A href="http://www.funnymonkey.com"
target=_blank>http://www.funnymonkey.com</A><BR>Tools for
Teachers<BR>503.897.7160<BR><BR>--<BR>[ Drupal support list | <A
href="http://lists.drupal.org/" target=_blank>http://lists.drupal.org/</A>
]<BR><BR></DIV></DIV>__________ Informacisn de NOD32, revisisn 2727 (20071217)
__________ <BR>
<DIV>
<DIV></DIV>
<DIV class=Wj3C7c><BR>Este mensaje ha sido analizado con NOD32 antivirus
system<BR><A href="http://www.nod32.com"
target=_blank>http://www.nod32.com</A><BR><BR><BR>--<BR>[ Drupal support list
| <A href="http://lists.drupal.org/"
target=_blank>http://lists.drupal.org/</A>
]<BR></DIV></DIV></BLOCKQUOTE></DIV><BR></BODY></HTML>