<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><br></div><div>Thank you so much for your response. &nbsp;Since I saw this post, I opened the Drupal Dev book but this is beyond my head. &nbsp;I guess I need to study PHP first. &nbsp;The code example below, I assume I need to know all the variable names, but I couldn't figure them out from the book.</div><div><br></div><div>When you said 'put inside', what inside?</div><div><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><br class="Apple-interchange-newline">--- Hiro</div><div><br></div><div>Hiroaki Honshuku, A-NO-NE Music, Greater Boston</div><div><a href="http://a-no-ne.com">http://a-no-ne.com</a> &nbsp; <a href="http://anonemusic.com">http://anonemusic.com</a></div><div><br></div><div><br></div></div></div><br><div><div>On 09/02/01(日), at 17:35, KOBA | Hans Rossel wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">To control the OG Detail Block items: make a small module (so just a .info and .module file, give it whatever name you like, I called it modulename in the example) and put inside:<div><br></div><div>The following code has some commented out code, the drupal_set_message code gives you the names of all the $links so you know which ones to remove or change, then I changed the invite link text to blablabla and removed the subscribers and manger link.<br> <div><br></div><div><div>/**</div><div>* Implementation of hook_og_link_alter().</div><div>*/</div><div>function modulename_og_links_alter(&amp;$links, $group_node) {</div><div>//drupal_set_message('&lt;pre>'. var_export($group_node,TRUE) .'&lt;/pre>');</div> <div>//drupal_set_message('&lt;pre>'. var_export($links,TRUE) .'&lt;/pre>');</div><div>// Remove or change links from group details block.</div><div>&nbsp;&nbsp;$links['invite'] = 'Blablabla';</div> <div>&nbsp;&nbsp;unset ($links['subscribers']);</div><div>&nbsp;&nbsp;unset ($links['manager']);</div><div>&nbsp;&nbsp;//unset ($links['my_membership']);</div><div>}&nbsp;</div><div><br></div><div>Good luck,&nbsp;</div><div><br></div><div> Hans</div><div><br></div><br><div class="gmail_quote">2009/2/1 A-NO-NE Music <span dir="ltr">&lt;<a href="mailto:madflute@anonemusic.com">madflute@anonemusic.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> Drupal 6.8<br> <br> I am having a difficulty controlling OG Details Block.<br> <br> - I need to show OG Details Block shown to all the pages even the page<br> is not OG content.<br> - I need to control the OG Detail Block items, i.e., I don't want to<br> show the member list link.<br> <br> Any help would be appreciated.<br> <br> <br> --<br> - Hiro<br> <br> Hiroaki Honshuku, A-NO-NE Music, Greater Boston<br> <a href="http://a-no-ne.com" target="_blank">http://a-no-ne.com</a> &nbsp; <a href="http://anonemusic.com" target="_blank">http://anonemusic.com</a><br> <font color="#888888"><br> --<br> [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br> </font></blockquote></div><br><br clear="all"><br>-- <br>Hans Rossel<br>KOBA Webdevelopment<br>Kerkstraat 228<br>9050 Gent<br>09-334.52.60<br>0472-79.32.16<br><a href="http://www.koba.be">www.koba.be</a><br><a href="mailto:info@koba.be">info@koba.be</a><br> </div></div> -- <br>[ Drupal support list | <a href="http://lists.drupal.org/">http://lists.drupal.org/</a> ]</blockquote></div><br></body></html>