vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Social Group and Album Enhancements - View all your social group messages (https://vborg.vbsupport.ru/showthread.php?t=205163)

Lynne 03-30-2009 02:18 PM

It's a new page you will use. You would go to www.yoursite.com/messagelist.php to see the list. If you are wondering where to put a link to it, you can put it anywhere you want. I edited my navbar and put it under the Community Links dropdown.

TheLastSuperman 03-30-2009 02:30 PM

omdl... I cannot believe I never thought to click your profile Lynne :rolleyes: as I saw the "Moderator" title and no Coder/Designer so DUUUUHHHHH on my part and nice mod... will be checking out this week along w/ some of your others... now lol.

S-MAN

Charles_1 04-02-2009 02:20 PM

This mod is really useful, thanks Lynne.

Just one notice - "Message List" is not phrased, it is hardcoded in messagelist.php

Lynne 04-02-2009 02:54 PM

Quote:

Originally Posted by Charles_1 (Post 1782399)
This mod is really useful, thanks Lynne.

Just one notice - "Message List" is not phrased, it is hardcoded in messagelist.php

Whoops! If I do another release on this, I'll be sure to fix that.

bjhuang 04-07-2009 05:07 AM

works fine. but the sql queries have to be improved. it makes a query each time when a message do not have a title.

Lynne 04-07-2009 02:38 PM

Quote:

Originally Posted by bjhuang (Post 1785544)
works fine. but the sql queries have to be improved. it makes a query each time when a message do not have a title.

Yes, I know. I addressed that in this post - https://vborg.vbsupport.ru/showpost....65&postcount=3 I am more than open to a suggestion on how to change it.

Xencored 09-27-2009 03:16 AM

Omg cant belive i missed this mod!!
Installed!
Quote:

Originally Posted by Lynne (Post 1744035)
I added the link under the Community Links dropdown. This is what I have in place of just the Social Groups link in that dropdown:

HTML Code:

        <if condition="$show['quick_links_groups']">
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php?$session[sessionurl]do=grouplist">- View All Groups</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/messagelist.php?$session[sessionurl]do=list">- Your Group Messages</a></td></tr>
        </if>

The "Your Group Messages" is the link for this page.

Hey when i add this to my navbar it sends it crazy and there is no drop down box like you have Lynne

It didnt add it auto for me
Thanks

Lynne 09-27-2009 03:49 AM

That is from the actually dropdown part, not from the actual navbar. In the navbar is the Community Link, and then there are items under that dropdown and those are the lines I added under that dropdown.

Xencored 09-27-2009 02:38 PM

Quote:

Originally Posted by Lynne (Post 1891148)
That is from the actually dropdown part, not from the actual navbar. In the navbar is the Community Link, and then there are items under that dropdown and those are the lines I added under that dropdown.

Ahh right sorry
Ive added the Code and its still not showing

Code:

        <if condition="$show['communitylink'] AND $show['popups']">
        <td class="vbmenu_control"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
        <else />
          <if condition="$show['memberslist']">
                        <td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
            </if>
    <if condition="$show['quick_links_groups']">
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php?$session[sessionurl]do=grouplist">- View All Groups</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/messagelist.php?$session[sessionurl]do=list">- Your Group Messages</a></td></tr>
        </if>
        </if>

did i add it in the wrong place?
Thanks

Lynne 09-27-2009 03:33 PM

Quote:

Originally Posted by Animemike (Post 1891336)
did i add it in the wrong place?
Thanks

Yeah, that is the wrong place. That isn't where the dropdown items are defined.

Find this:
HTML Code:

    <if condition="$show['communitylink']">
    <!-- community link menu -->

And you should see a div and then a table right there and that is where you would add it.

This is from mine... your's may be different cuz I don't remember if I changed classes or spacing or anything:
HTML Code:

    <div class="vbmenu_popup" id="community_menu" style="display:none;margin-top:3px" align="$stylevar[left]">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr><td class="thead">$vbphrase[community_links]</td></tr>
        <if condition="$show['quick_links_groups']">
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php?$session[sessionurl]do=grouplist">- View All Groups</a></td></tr>
                    <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/messagelist.php?$session[sessionurl]do=list">- Your Group Messages</a></td></tr>
        </if>
more rows...
        </table>
    </div>



All times are GMT. The time now is 01:49 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02211 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (3)bbcode_html_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete