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)
-   -   Forum Display Enhancements - Article Forums v4.x (https://vborg.vbsupport.ru/showthread.php?t=237116)

BirdOPrey5 03-22-2014 06:38 PM

This mod isn't active on thread pages, whatever your problem it's not this mod.

mdreamer 04-26-2014 06:16 PM

but the section(example) that I placed above is not a forum/thread its the mod part. When I try to publish it as an article it loses the full scale screen image and just places a link instead.

cdoyle 05-17-2014 10:38 PM

Love this mod, it makes our article/tutorial section so much better.

QQ: Is there a way to enable/display the pageviews of an article?
I'm just curious if an tutorial is being read or not, and I can't seem to find a setting to turn the pageviews on/off.

cdoyle 06-12-2014 05:05 PM

Quote:

Originally Posted by cdoyle (Post 2498254)
Love this mod, it makes our article/tutorial section so much better.

QQ: Is there a way to enable/display the pageviews of an article?
I'm just curious if an tutorial is being read or not, and I can't seem to find a setting to turn the pageviews on/off.

anyone know if this is possible?

Love the mod, just wish I could see the pageviews

cdoyle 06-19-2014 03:04 PM

bummer, was hoping this would be possible.

BirdOPrey5 06-19-2014 04:28 PM

Since an "Article" here is just a fancy thread in a forum, if you turn off the mod temporarily or go direct to the forumdplay.php page for the forum, the thread views should be listed just like they are for any other thread.

Bluefin221 07-15-2015 06:36 PM

Quote:

Originally Posted by cdoyle (Post 2501662)
anyone know if this is possible?

Love the mod, just wish I could see the pageviews

I was just in looking for this myself.

rotor 08-11-2015 07:19 PM

I plan to have an articles area that may have quite a few directories, is there a way to hide it in the forum view and only use the navbar link to open it from?

Never mind ..... just set the option "Forum is active" to no and it cannot be seen on the forum from the frontend ......

BlackxRam 03-27-2016 10:46 PM

Two things, just tried this mod as I needed something just like it.

Any way to collapse the categories based on Existing Sub Categories? I have about 150 total sub categories covering different things across 10 MAIN CATEGORIES. But, the category list is just a huge output.

Second, the custom post bit is showing overlapping links where the EDIT/DELETE and Quote links are located. Two kinds of edit text and two kinds of quote text overlapping eachother.

Nice mod so far.

Cody.9791 03-31-2016 10:51 PM

Does this mod work better than the default CMS Article Page that is included with vB4?

BirdOPrey5 04-01-2016 07:20 PM

Quote:

Originally Posted by Cody.9791 (Post 2568308)
Does this mod work better than the default CMS Article Page that is included with vB4?

No, it's just different. As nice as it is I wouldn't recommend using it, it will screw up any mobile style you might try to use. It was great in its day but if you are going to have mobile users, skip it.

Ov3rrun 07-13-2016 07:05 AM

Thanks for the mod. Article Forums mod on mobile style dont let to show the forum acting as Article Forum, just blank content when I click on forum.

Is there any incompatibility with mobile style?

BirdOPrey5 07-13-2016 07:25 AM

It's because there are no templates for the article forum on the mobile style. The mod was created before the mobile style even came with 4.x.

I made a plugin that disables the mod on the mobile style so the content is visible like normal threads and posts.

The only other option is creating custom mobile templates.

the plugin code I wrote was:

Code:

global $vbulletin;
$vbo = &$vbulletin->options;
$vbu = &$vbulletin->userinfo;

if (THIS_SCRIPT == 'articles' AND $vbu['styleid'] == 2)
{
  //Redirect to forumdisplay id 4
  $newurl = 'forumdisplay.php?f=4';
  header( 'Location: ' . $newurl ) ;
}

hook: globala_bootstrap_init_start

the 2 is the styleid of the mobile style and the 4 is the forumid that was the Articles forum.

gnrx 07-31-2017 10:01 PM

Hi,
Recently, I activate in my forum the mobile style, I have, the same issue that some user here.
When click in Articles, appears a error message: This content, isn't compatible with mobile style.

BirdOprey5m I add the plugin that you indicate, but in my case, not works, when access to articules forum, appears redirecting always, enter in bucle mode.

Can you help me?

Thanks and regards!

Rafa-el 07-31-2017 11:17 PM

Quote:

Originally Posted by gnrx (Post 2589042)
Hi,
Recently, I activate in my forum the mobile style, I have, the same issue that some user here.
When click in Articles, appears a error message: This content, isn't compatible with mobile style.

BirdOprey5m I add the plugin that you indicate, but in my case, not works, when access to articules forum, appears redirecting always, enter in bucle mode.

Can you help me?

Thanks and regards!

Was the forumID changed?

gnrx 08-01-2017 05:44 AM

Quote:

Originally Posted by Rafa-el (Post 2589043)
Was the forumID changed?

Yes, I type, in plugin, my forum ID of article forum (change the 4 for my forum ID).

In other question, when create a plugin, create for vbulletin or article?

And order to run, 5?

Thank you very much!!

BirdOPrey5 08-02-2017 05:03 PM

the forum id (4) in my plugin code needs to match the forumid you specified as the Articles forum.

And the styleid (2) needs to match the forumid of the mobile style.

Adjust both numbers to match the values you use on your forum.

gnrx 09-12-2017 04:09 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2589094)
the forum id (4) in my plugin code needs to match the forumid you specified as the Articles forum.

And the styleid (2) needs to match the forumid of the mobile style.

Adjust both numbers to match the values you use on your forum.

In the first time, my apologies for the delay in my reply, but this last month, I was go out for holiday.

Well, I attach a screenshot, because I continue with the problem, and I don't know how are the problem :)

In this image, view my mobile style id:
Are the id: 7
https://vborg.vbsupport.ru/external/2017/09/5.png


In this other, what are my forum for Articles:
Are "Documentos / Manuales":
https://vborg.vbsupport.ru/external/2017/09/6.png


In this other, the forum id of articule forums:
Are 76:
https://vborg.vbsupport.ru/external/2017/09/7.png


And this last, my plugin:
https://vborg.vbsupport.ru/external/2017/09/8.png

With the forum id and mobile style id.

But, not works, when in my mobile, access to articule forum, appears redirecting in bucle mode.

I don't view what are the problem...

Thanks in advanced.

gnrx 09-21-2017 07:50 AM

No suggestion or idea about my problem? :)

Regards!!

BlackxRam 03-02-2018 05:53 AM

Any place in this mod to collapse the categories at the left? I am trying to find it in templates where I might do this but having no luck. I have like 100 categories that need to be trimmed otherwise the list at the left is way too long.

Any help on a quick alteration would be appreciated!!

Thanks!

gnrx 11-12-2018 12:31 PM

Hello.
Recently, I update my server to PHP 7, now, when access to Articles I have this error:

PHP Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in ..../articles.php on line 455

Its possible solved this?

Thanks and regards.

gnrx 01-26-2019 09:44 PM

Any fix for work fine with php 7.1?

cdoyle 02-14-2019 11:23 PM

This was such a great mod, but the not working in Mobile really kills it these days when everyone uses mobile to view your site.

Anyone willing to take it over and fix the mobile view?

Talk Hard 03-20-2019 12:50 AM

If people don't add image thumbnail does it put a default image? Or grab from post?

I am thinking I want this layound forwhen you go to homepage....looks slick.

Any advice?

Scam.com is so dead trying to bring it back to life.

Cheers

Talk Hard 03-20-2019 02:20 AM

Is it possible to have my 50,000threads imported into articles so I can have a new format?

gnrx 03-20-2019 06:09 PM

It would be great to be able to run articles in php 7.1 ...


All times are GMT. The time now is 01:03 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.01700 seconds
  • Memory Usage 1,777KB
  • 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
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (26)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