HTML BBCode (permission protected) [Deleted]

No they won't as the post html content would need to be wrapped in the parsehtml bbcode.

Example:
[parsehtml]...your html code...[/parsehtml]

You would have to either edit each post or come up with some way to do it in the database.

I've got a way to make it work, I'll add your Mod to my list of action items during the migration.
 
Luke, is there any way you can update this to work in the Resource Manager? Was thinking of using the RM as a Article Library but I would need to be able to use html in some of the articles that I include in it.
So this addon is not working in the Resource Manager?
 
XenPorta Support:

In library/EWRporta/ViewPublic/Custom.php, replace:

PHP:
$bbCodeParser = new XenForo_BbCode_Parser(XenForo_BbCode_Formatter_Base::create('Base', array('view' => $this)));
$bbCodeOptions = array('states' => array('viewAttachments' => true));
XenForo_ViewPublic_Helper_Message::bbCodeWrapMessages($params[$block['block_id']], $bbCodeParser, $bbCodeOptions);

With:

PHP:
$formatter = Dark_ParseHTML_BbCode_Formatter_Ritsu::create('Dark_ParseHTML_BbCode_Formatter_Ritsu', array('view' => $this));
$bbCodeParser = new Dark_ParseHTML_BbCode_Parser($formatter);               
$bbCodeOptions = array('states' => array('viewAttachments' => true));
Dark_ParseHTML_ViewPublic_Helper_Message::bbCodeWrapMessages($params[$block['block_id']], $bbCodeParser, $bbCodeOptions);

Does one still need to to this?
 
Does one still need to to this?

I tried to apply the custom code the EWRporta/ViewPublic/Custom.php, but it created several dramatic layout issues on my entire site. Reverted back quickly. It would helpful if I could display some articles in my XenPorta Recent News Blocks, that also contain html wrapped with parsehtml. I'm on Xenporta 1.6.0.
 
How fast did you guys get this after payment? I need to set up something really quickly, but it hasn't been sent to my email yet, I made the payment 15' ago.

edit: nevermind,got it :)
 
Last edited:
I tried to apply the custom code the EWRporta/ViewPublic/Custom.php, but it created several dramatic layout issues on my entire site. Reverted back quickly. It would helpful if I could display some articles in my XenPorta Recent News Blocks, that also contain html wrapped with parsehtml. I'm on Xenporta 1.6.0.

Figured out what I did wrong, but nonetheless I had to revert back to standard again. Whenever parsehtml is shown on an XenPorta Recent News block it causes site-layout issues.
 
Thanks for the addon. It works great on regular threads, however, I'm curious if there is a way to make it work in the Resource Manager? I have seen several people ask but I still don't see any answer! Any help would be appreciated.

Thanks.
 
Thank sir,

But why when finish install add-on, on post i used same

PHP:
[parsehtml]<embed bgcolor="#000000" style="display:inline-block;*display:inline;height:100%;margin:0;padding:0;position:relative;vertical-align:top;width:100%;zoom:1;" flashvars="controlsVisibleOnLoad=true&customColor=8db63e&hdUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Feb9456990db5e49d9e668bdf46ddb13a7a6bccb8.bin&mediaDuration=24.64&playButtonVisible=true&referrer=http%3A%2F%2Fwww.distilled.net%2Fu%2Fsearch-engine-basics%2F&showAbout=true&showVolume=true&stillUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fc4be66e449d08b3ef440a62889a08e118efc7a4c.jpg%3Fimage_crop_resized%3D960x540&allowSwitchToHtml5=true&trackingTransmitInterval=20&unbufferedSeek=true&videoUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fc08e72a53d097a234b0f4cb23e02e6d6b2f4ffb3.bin&wmode=opaque&embedServiceURL=http%3A%2F%2Fdistillery.wistia.com%2Fx&accountKey=wistia-production_13641&mediaID=wistia-production_2585429" wmode="opaque" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" name="wistia_3" src="http://embed.wistia.com/flash/embed_player_v2.0.swf?2013-10-04"> [/parsehtml]

But it don't display video, it display code :-? how do fix it
 
Thank sir,

But why when finish install add-on, on post i used same

PHP:
[parsehtml]<embed bgcolor="#000000" style="display:inline-block;*display:inline;height:100%;margin:0;padding:0;position:relative;vertical-align:top;width:100%;zoom:1;" flashvars="controlsVisibleOnLoad=true&customColor=8db63e&hdUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Feb9456990db5e49d9e668bdf46ddb13a7a6bccb8.bin&mediaDuration=24.64&playButtonVisible=true&referrer=http%3A%2F%2Fwww.distilled.net%2Fu%2Fsearch-engine-basics%2F&showAbout=true&showVolume=true&stillUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fc4be66e449d08b3ef440a62889a08e118efc7a4c.jpg%3Fimage_crop_resized%3D960x540&allowSwitchToHtml5=true&trackingTransmitInterval=20&unbufferedSeek=true&videoUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fc08e72a53d097a234b0f4cb23e02e6d6b2f4ffb3.bin&wmode=opaque&embedServiceURL=http%3A%2F%2Fdistillery.wistia.com%2Fx&accountKey=wistia-production_13641&mediaID=wistia-production_2585429" wmode="opaque" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" name="wistia_3" src="http://embed.wistia.com/flash/embed_player_v2.0.swf?2013-10-04"> [/parsehtml]

But it don't display video, it display code :-? how do fix it

Have you configured the permissions correctly?
 
Top Bottom