Log in

View Full Version : vbcms_widget_recentarticle_page formatting


fili
06-13-2012, 05:23 AM
hello

I want to remove the formating text of {vb:raw article.previewtext}

in

vbcms_widget_recentarticle_page

I want this text without <br> <b> etc like a plain text

Someone can help ?

BirdOPrey5
06-13-2012, 03:32 PM
I believe the preview is stored in: $view->previewtext and the hook you need is vbcms_article_populate_end.

At least that is how I manipulate the preview in my mods.

The php function strip_tags should remove HTML tags so just make a new plugin on the hook above with this code:


$view->previewtext = strip_tags($view->previewtext);


See if that does it.

Off hand I know my "Word Linker" mod has code on this hook if you want to see a real example.

fili
06-13-2012, 05:48 PM
I'm looking :)

I see your website... i will soon register, i found some great mod in :p

--------------- Added 1339614103 at 1339614103 ---------------

Question :
my Template Name is : vbcms_widget_recentarticle_page

i understand that i have to find the code before... but where ?

I search in "Style Manager=> Search in templates => Search in all Styles" for "previewtext" to add :
$view->previewtext = strip_tags($view->previewtext);

but nothing :(

--------------- Added 1339621026 at 1339621026 ---------------

ok i found in article.php (version 4.2 of vb) :

$view->previewtext = $this->content->getPreviewText(false, false);

so :
$view->previewtext = $this->content->strip_tags(getPreviewText(false, false));

=> Fatal error: Call to undefined method vBCms_Item_Content_Article::strip_tags()

oops :(

--------------- Added 1339657958 at 1339657958 ---------------

Ok i found the solution :)

here is :

It's in : /vbcms/widget/recentarticle.php

change line 365 :
$article['previewtext'] = strip_bbcode($pagetext);
in :
$article['previewtext'] = strip_tags($pagetext);