Quote:
Originally Posted by martin1
yes, it's removing the image content completely :up:
can you make it just to leave a link or code to original image external location, without actually showing the bbcode thumbnail?
LOL I was trying to find that variable whole evening!
|
That would require some actual coding. The CSS I provided is just masking things, instructing it not to be displayed, but they are still in the DOM.
Here's what I would do instead. Remove the CSS you added to the "additional.css" template. Now, create a plugin hooked at "postbit_display_complete" with the following code:
PHP Code:
if (STYLEID == XX)
{
$show['avatar'] = 0;
$post['signature'] = 0;
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
$post['pagetext'] = $bbcode_parser->parse($post['pagetext'], $post['forumid'], 1);
$post['pagetext'] = html_entity_decode($post['pagetext']);
$post['message'] = $post['pagetext'];
}
Replace XX with the id of the style you wish to affect.