vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Mini Mods - My Threads & My Posts Links in a Drop-Down Menu (https://vborg.vbsupport.ru/showthread.php?t=227856)

jar546 02-10-2011 08:14 PM

We are not aware of an "impex" folder

Videx 02-10-2011 10:42 PM

It sounds like you're using the wrong "import" button. It's been ages since I used Impex, but I think someone installed it and now you have it's Import button in your AdminCP. Read the manual for instructions how to remove that cuz I don't remember anything.

Anyway, to import a product you want the add/import link at AdminCP>Plugins and Products>Manage Products>Add/Import Products.

Milad 02-10-2011 11:19 PM

Quote:

Originally Posted by jar546 (Post 2161132)
We are not aware of an "impex" folder

This is not the right place to ask for vBulletin support,

reddyink 02-12-2011 06:24 PM

Great MOD. installed
I would like to move the menu from Forum to Home (CMS). How do I do that?

thank you!

jar546 02-12-2011 06:56 PM

Got it, fixed it, installed it. Thank you to the creator.

J-P 02-13-2011 04:38 PM

The installation worked fine. Moved it over to my "quick links tab" easily enough. As other posted commented:
1) it automatically takes you the the "what's new?" tab as opposed to the forum tab. (not cool)

2) it does not automatically update. If I were to post a new thread or reply to a post, it does not show up in the search results for some reason. This message is in the top right corner:
Quote:

Search took 0.03 seconds; generated 44 minute(s) ago.
(very NOT cool).

Any way to fix these 2 issues?

Update: The second part was fixed by :
Quote:

This option controls how threads and forums are marked as read.

Click the help icon on the right for more information on each option.
Inactivity/Cookie Based
Database (no automatic forum marking)
Database (automatic forum marking)


Enabling the Database (automatic forum marking) option in the Thread/Forum Read Marking Type section under general settings :)

The Rocketeer 05-06-2011 12:22 PM

Working with 4.1.3 :)

paulket 06-21-2011 08:48 PM

Working perfectly on 4.1.4, this should be a standard feature of vBulletin.

tomerl1 06-22-2011 08:07 PM

yes, working perfectly on 4.1.4 - in Austria :-)

The Rocketeer 07-12-2011 11:54 AM

Quote:

Originally Posted by AURFSCAN (Post 2008514)
Find in Navbar template

Code:

<a href="javascript://" class="popupctrl">{vb:rawphrase forum_actions}</a>
                                                <ul class="popupbody popuphover">

place after it

Code:

<vb:if condition="$show['member']">
<li><a href="search.php?{vb:raw session.sessionurl}do=finduser&amp;userid={vb:raw bbuserinfo.userid}&amp;contenttype=vBForum_Post&amp;starteronly=1">{vb:rawphrase my_threads}</a></li>
                <li><a href="search.php?{vb:raw session.sessionurl}do=finduser&amp;userid={vb:raw bbuserinfo.userid}&amp;contenttype=vBForum_Post&amp;showposts=1">{vb:rawphrase my_posts}</a></li>
</vb:if>

sweet mod milad :up:

I dont think that code displays the My Threads and My Posts thing, So I had to edit them in, here's the refined one.

Find

Code:

<a href="javascript://" class="popupctrl">{vb:rawphrase forum_actions}</a>
                                                <ul class="popupbody popuphover">

then add

Code:

<vb:if condition="$show['member']">
<li><a href="search.php?{vb:raw session.sessionurl}do=finduser&amp;userid={vb:raw bbuserinfo.userid}&amp;contenttype=vBForum_Post&amp;starteronly=1">My Threads</a></li>
                <li><a href="search.php?{vb:raw session.sessionurl}do=finduser&amp;userid={vb:raw bbuserinfo.userid}&amp;contenttype=vBForum_Post&amp;showposts=1">My Posts</a></li>
</vb:if>

:)

FReeSTER 08-23-2011 03:17 AM

What will be the link to pull my threads and my post so I can add the links into a navbar tab instead?

FReeSTER 08-24-2011 03:18 AM

anyone?

FReeSTER 08-25-2011 08:57 PM

Quote:

Originally Posted by FReeSTER (Post 2236857)
What will be the link to pull my threads and my post so I can add the links into a navbar tab instead?

I dont know If I explain myself but Im wondering what will be the code to add as link so it will pull any user posts or threads that cl ick on the link. I had the link but when I click on it it will only pull my own posts or threads

Thanks for the help

FReeSTER 08-26-2011 04:30 AM

These are the links I was trying to pull the user posts and the threads but it pull my own so I cant use them for a navbar shortcut

/forums/search.php?do=finduser&userid=?&contenttype=vBForu m_Post&starteronly=?

/forums/search.php?do=finduser&userid=?&contenttype=vBForu m_Post&showposts=?

any help will be greatly appreciated

hoadiem 08-29-2011 09:32 PM

will install when i get home

J-P 09-09-2011 12:42 PM

I recently upgraded the forum (to its latest version) and found an error that had not occurred before. This is the message:
Quote:

Fatal error: Call to a member function allow_icons() on a non-object in /home/invertpl/public_html/forum/vb/legacy/thread.php on line 184
This is what that section looks like:

Code:

// Derived getters

        /**
        * Get the url for the thread page
        *
        * @return string
        */
        public function get_url()
        {
                return fetch_seo_url('thread', $this->record);
        }

        /**
        *        Does the thread display an icon?
        */
        public function has_icon()
        {
                global $vbulletin;

                if (!$this->get_forum()->allow_icons())
                {
                        return false;
                }

                return ($this->get_field('iconid') OR $this->get_field('pollid') OR $vbulletin->options['showdeficon']);
        }

The underlined portion is line 184 ... any ideas what is going on here?

Thanks in advance.

bp323 09-13-2011 10:52 PM

been searching for this mod ported to vb4.........so many thanks!!!!

bp323 09-13-2011 11:01 PM

HELP!! Error in vB 4.1.5 PL1 :

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: Display_Visitors in [path]/includes/functions.php on line 4183

J-P 10-12-2011 09:27 AM

any word on this? It has been over a month...

Gorgasm 10-15-2011 01:00 PM

I've been looking for this for a while. Works just great!
Thank you.

Trevor Matthews 10-18-2011 09:08 PM

Just upgraded to 4.1.7

My posts works but My Threads crashes the database.

Will there be an update?

Pirate45 10-19-2011 11:07 PM

I really like this product a lot but it causes a problem on my forum that has caused me to uninstall it. If the problem can be fixed, it's back on.

I also use the VB Advanced Links Directory and when installed, this product causes the administrator controls for that software to bunch up on top of each other. The minute I disable this product, it all goes back the way it should be.

I have checked it with more than one browser and turned the product on and off several times to watch the behavior. There is some conflict that causes it to happen.

vanquish.securi 10-20-2011 02:33 AM

Works on vB 4.1.7 default style. Installed.

Trevor Matthews 10-21-2011 03:37 PM

I have re-installed it just now and it is working correctly again.
4.1.7

Tonje! 11-01-2011 04:26 AM

Is it possible for me to change the language?

imported_Vishalsachar 11-06-2011 05:26 AM

I love this!!!! Nominated for MOTM

Nirjonadda 02-25-2012 04:59 PM

Installed work on 4.1.10 but where Admin panel Options?

CSS59 03-31-2012 10:50 PM

how can I make this visible only to select usergroups?

Ikarrus2 03-31-2012 11:16 PM

Installed on 4.1.11, works great, Thank you !!

ywwz 04-23-2012 05:15 AM

good one.

K!nG 04-24-2012 01:43 AM

Thanks i never knew this mod exists somewhere in here :) My users were asking for this for quite sometime... Thanks working on 4.1.12 :)

hpidriver 04-24-2012 04:50 PM

Is there any way to make this display the user's threads on the forumhome like this mod did? https://vborg.vbsupport.ru/showthread.php?t=194840

thank you

gajinoz 04-28-2012 09:27 PM

Working great on 4.1.7

Thanks.

Geoff_M 05-22-2012 11:24 PM

1 Attachment(s)
Note: This does not work for vB 4.2.0 and above.

See my post here for instructions: 4.2 Post/Thread Links


To those who want it under quick links here is the XML.

Make sure to mark it as installed above and thank the developer. :up:

https://vborg.vbsupport.ru/external/2012/05/24.jpg

To change the location of the links

Find:
Code:

navbar_quick_links_menu_pos2
and change the number between 1 and 4.

For example:

To move the links to the top you would replace it with:
Code:

navbar_quick_links_menu_pos1

jcgriff2 05-23-2012 01:46 AM

Nice work, Geoff.

Thanks!

MikeF 05-23-2012 02:36 AM

If you are having problems with 4.2 here is a way to roll it out:

My Threads:
search.php?do=finduser&userid={userinfo.userid}&co ntenttype=vBForum_Post&starter only=1

My Posts:
search.php?do=finduser&amp;userid={userinfo.userid }&amp;contenttype=vBForum_Post &amp;showposts=1

Unless you have guest posting, member should be the permission name.

Geoff_M 05-23-2012 03:10 AM

Thanks Mike,

We are updating to 4.2 tonight and this may become an issue...

I will roll out another .xml if someone would like.

doubleclick 05-23-2012 09:41 AM

Yeah, I just upgraded to 4.2 and this mod no longer works.

rjerina 05-23-2012 09:42 AM

Added to my brand new 4.2 install. It doesn't seem to show up in the navbar at all. *shrug*

I'll wait! :)

billstelling 05-23-2012 04:03 PM

Quote:

Originally Posted by Geoff_M (Post 2331802)
Thanks Mike,

We are updating to 4.2 tonight and this may become an issue...

I will roll out another .xml if someone would like.

Yeah, I would like to still use it. This is a great add on.


All times are GMT. The time now is 01:05 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.01455 seconds
  • Memory Usage 1,819KB
  • 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
  • (7)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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