Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 1 Add-ons:
Regarding my last post, now it works. Dont bother. Thanks.

 

 


affi
User

Oct 23, 2002, 8:50 AM

Post #1 of 6 (4468 views)
Shortcut
Regarding my last post, now it works. Dont bother. Thanks. Can't Post

 


Damon
Staff / Moderator


Oct 23, 2002, 3:33 PM

Post #2 of 6 (4464 views)
Shortcut
Re: [affi] Regarding my last post, now it works. Dont bother. Thanks. [In reply to] Can't Post

Great :) That's always an easy post to reply to.

--------------------------------------------------- 
Cheers
Damon Edis
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/


affi
User

Oct 25, 2002, 1:54 PM

Post #3 of 6 (4452 views)
Shortcut
Regarding my last post, now it works. And a read-question [In reply to] Can't Post

Yeah I bet Wink

But, I actually have one question regarding this task. How do we remove the ***image1:right*** things which also appears in the vbulletin-forum? It isnt quite nice to display these tags. Could the script parse these text-values and clean them?

And one other thing, we need to know how many people have read each article - and also display this in each article. An easy solution for this?

Regards!


Lionel
User

Oct 26, 2002, 6:43 PM

Post #4 of 6 (4447 views)
Shortcut
Re: [affi] Regarding my last post, now it works. And a read-question [In reply to] Can't Post

instead of removing it, is there a way to actually translate it with vbulletin vbcode for image? Usually the summary includes a thumbnail.

BTW, I love using AM with Vbulletin. I am using the same vbulletin permissions: only members can read articles.Tongue

And two thumbs up for your support. I sent a few customers your way, telling them that you are one of the handful honest and helpful people on the web.


Damon
Staff / Moderator


Oct 28, 2002, 9:29 AM

Post #5 of 6 (4429 views)
Shortcut
Re: [affi] Regarding my last post, now it works. And a read-question [In reply to] Can't Post

Hi Affi,

We should be able to put something together to remove those image tags. I will check with our developers and have one of them reply to you.

--------------------------------------------------- 
Cheers
Damon Edis
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/


dlo_itools
Staff


Oct 28, 2002, 10:51 AM

Post #6 of 6 (4418 views)
Shortcut
Re: [affi] Regarding my last post, now it works. And a read-question [In reply to] Can't Post


In Reply To
How do we remove the ***image1:right*** things? Could the script parse these text-values and clean them?


To refine the article summary that is posted to the forum, edit the goforum.cgi file at around line 115. This is where the text for the forum subject and forum body is built. Look for the line that begins with:


Code
my $forum_body = "SUMMARY: $rec{'summary'}...


This lines puts the summary of the article as the forum body. After this line, you can add you customization code for massaging the text. For example, to remove all the ***image*** placeholders, add this line:


Code
 $forum_body =~ s/\*\*\*image[\d]+(:(left|right|center|url))?\*\*\*//gis;

/Dave Lo