vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v3.0 Support > "How Do I..." Questions

Reply
 
Thread Tools Display Modes
  #81  
Old 02-02-2011, 11:31 AM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

I'm sure there's some way to do it, but I'm not familiar with the auto-tagging mod and I'm sure it would be a little more complex than basing things on the forumid.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #82  
Old 02-02-2011, 12:13 PM
scalemotorcars's Avatar
scalemotorcars scalemotorcars is offline
Member
 
Join Date: Jul 2007
Posts: 91
Default

Thanks Brian. Tags use $tags- correct? Couldn't I substitute that variable somehow to pick the correct module?

By the way this is the auto tagger mod. All it does is tag the thread so tags would still be default VB

http://www.vbulletin.org/forum/showthread.php?t=218350
Reply With Quote
  #83  
Old 02-02-2011, 12:30 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

Sorry, but I don't think it's going to be anywhere near that easy.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #84  
Old 02-02-2011, 03:55 PM
scalemotorcars's Avatar
scalemotorcars scalemotorcars is offline
Member
 
Join Date: Jul 2007
Posts: 91
Default

I can dream cant I.

OK Ill try and figure this out. I already have it working in Wordpress, now to get it going on VB. Thanks Brian
Reply With Quote
  #85  
Old 04-03-2011, 05:49 PM
Alfa1 Alfa1 is offline
Senior Member
 
Join Date: Dec 2005
Posts: 144
Default

Quote:
Originally Posted by scalemotorcars View Post
Thanks Brian. Tags use $tags- correct? Couldn't I substitute that variable somehow to pick the correct module?

By the way this is the auto tagger mod. All it does is tag the thread so tags would still be default VB

http://www.vbulletin.org/forum/showthread.php?t=218350
I have requested this functionality from IB. Consider to vote for it here: http://tracker.vbulletin.com/browse/VBIV-11152

Brian, what do you think about my question below?
Quote:
Originally Posted by Alfa1 View Post
I would be extremely interested in adding this functionality to show content relevant to the (sub)forum in the sidebar on my showthread.php pages. I have almost 400 (sub)forums(of which I would like to do this for 200 different subforums) and wonder if this can be done without too many queries and affecting performance.

Having this function in vba CMPS by default would be awesome.
Do you think this is possible with vba somehow?
Reply With Quote
  #86  
Old 12-18-2011, 07:51 AM
iguanairs iguanairs is offline
Senior Member
 
Join Date: Mar 2004
Location: MA
Posts: 116
Default

I encountered a few issues that should be easily cleared up.

I started with this:

Code:
if (isset($_REQUEST['f']))  
{  
    $_REQUEST['forumid'] = intval($_REQUEST['f']);  
} 

switch($_REQUEST['forumid']) 
{ 
    case 12: 
    case 13: 
    case 14:
    case 15: 
    case 16: 
    case 17:
    case 22:
        $getpage = 'myintegration'; 
    break; 
}
That showed on every forum so I needed to add this to stop that:

Code:
    default: 
        $getpage = 'defaultlandingpage'; 
    break;
That worked great but it broke my homepage (vbacmps) so I added this:

Code:
   case 0: 
        $getpage = 'home'; 
    break;
Now everything works except custom pages because they also fall under the case 0: statement. lol How can I get this all to work together?
__________________
Herp Center | Reptile Forums
Reply With Quote
  #87  
Old 12-19-2011, 10:21 AM
HenrikHansen HenrikHansen is offline
Senior Member
 
Join Date: Jul 2004
Location: Copenhagen
Posts: 741
Default

Quote:
Originally Posted by iguanairs View Post
I encountered a few issues that should be easily cleared up.

I started with this:
Did you make a normal integration (used for integration on all pages) before you implemented you code? The default setting should not be necessary.
Reply With Quote
  #88  
Old 01-16-2012, 05:26 AM
volvoholic volvoholic is offline
Junior Member
 
Join Date: Feb 2007
Posts: 25
Default

I can't get the getpage to work. I am running VB4 with vBa 4.1.2

The integration works fine with a blank page with no modules called "Home". I have tested "Home" with stock modules and it works.

The page (called test) I am trying to wrap around forum id 2 is not wrapping around that forum when I click on it. "test" comes with stock modules and I don't see any modules.

I have integrated Forumdisplay and Showthread with "Home"

Plugin is called Specific Forum based on Product vBadvanced CMPS in hook location vba_cmps_include_getpage (vbacmps).

Quote:
if (isset($_REQUEST['f']))
{
$_REQUEST['forumid'] = intval($_REQUEST['f']);
}

switch($_REQUEST['forumid'])
{
// Quick example for just one forumid
case 2:
$getpage = 'test';
break;
}
Reply With Quote
  #89  
Old 01-18-2012, 04:49 AM
volvoholic volvoholic is offline
Junior Member
 
Join Date: Feb 2007
Posts: 25
Default

Does anyone know if the plugin for wrapping a specific forum with a specific page still works in VB 4? I am having trouble... Please help !
Reply With Quote
  #90  
Old 01-24-2012, 05:48 PM
Brian's Avatar
Brian Brian is offline
Administrator
 
Join Date: Jan 2004
Location: Georgia, USA
Posts: 34,240
Default

If you have friendly URL's enabled in vBulletin then the forumid is not passed in the same way, and I'm not seeing an easy way to extract the forumid from the URL in those cases.
__________________
Frequently Asked Questions
CMPS Users Manual

For vBadvanced software assistance, please use the support forums.
Unsolicted PMs, IMs, and email will not be responded to.
If you have a non-software related question or problem with your account, please submit a support ticket.
Reply With Quote
  #91  
Old 03-17-2012, 02:27 AM
volvoholic volvoholic is offline
Junior Member
 
Join Date: Feb 2007
Posts: 25
Default

Hi Brian,

How do I get all the threads within a specified wrapped forum to display the same page wrap as the parent forum?

Thanks in advance!
Reply With Quote
  #92  
Old 05-03-2012, 06:25 PM
JulianD JulianD is offline
Junior Member
 
Join Date: Oct 2005
Posts: 17
Default

I need something similar to this but it is just not possible or at least I don't know how without initializing the userinfo array or the threadinfo array.

I need this for a site that will have vBSEO installed. My URL scheme is something like site.com/forumid/thread_threadid. I will extract the forumid from the URL because that's the only place in the code at that excecution time where the forumid is available.
Reply With Quote
  #93  
Old 11-11-2012, 09:40 AM
bongda99 bongda99 is offline
Junior Member
 
Join Date: Nov 2012
Posts: 1
Default

Hello Brian, you can use the mod supports the latest version of VB
vBSEO 3.6
wish you success
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
disable modules for specific style/theme wildo69 "How Do I..." Questions 9 04-15-2011 03:36 PM
Trying to add links to specific forums, in between nav items.. Emraith "How Do I..." Questions 1 03-21-2007 10:38 AM
left side modules - specific forums Rebecca "How Do I..." Questions 2 03-25-2006 07:13 AM
Modules for specific pages angelosms Troubleshooting & Problems 8 12-25-2005 01:08 AM
Modules only one a specific style e-steki "How Do I..." Questions 7 12-23-2005 01:19 PM


All times are GMT -4. The time now is 09:46 PM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.