Simple Machines Community Forum

Customizing SMF => Tips and Tricks => Topic started by: heavyccasey on February 15, 2009, 03:13:17 AM

Title: [Tip] Remove Images from Quotes!
Post by: heavyccasey on February 15, 2009, 03:13:17 AM
Here's a quick and simple way to display a link instead of an image in a quote, without hiding smileys (http://www.simplemachines.org/community/index.php?topic=30209.0) or complicated regular expressions (http://custom.simplemachines.org/mods/index.php?action=search;basic_search=image+quote):

This is tested for 1.1.5 - 1.1.8, as well as 2.0 RC1, although older 1.1 versions will probably work too.


Subs.php
Find:
array(
'tag' => 'img',
'type' => 'unparsed_content',
'parameters' => array(


Add Before:
// Remove images from quotes.
array(
'tag' => 'img',
'type' => 'unparsed_content',
'require_parents' => array('quote'),
'parameters' => array(
'alt' => array('optional' => true),
'width' => array('optional' => true, 'value' => ' width="$1"', 'match' => '(\d+)'),
'height' => array('optional' => true, 'value' => ' height="$1"', 'match' => '(\d+)'),
),
'content' => '<i>(<a href="$1" target="_blank" onclick="this.parentNode.innerHTML = \'<i\' + \'mg src=\\\'\' + this.href + \'\\\' /\' + \'>\'; return false;">Image removed from quote</a>.)</i>',
'validate' => create_function('&$tag, &$data, $disabled', '$data = strtr($data, array(\'<br />\' => \'\'));'),
'disabled_content' => '($1)',
),
array(
'tag' => 'img',
'type' => 'unparsed_content',
'require_parents' => array('quote'),
'content' => '<i>(<a href="$1" target="_blank" onclick="this.parentNode.innerHTML = \'<i\' + \'mg src=\\\'\' + this.href + \'\\\' /\' + \'>\'; return false;">Image removed from quote</a>.)</i>',
'validate' => create_function('&$tag, &$data, $disabled', '$data = strtr($data, array(\'<br />\' => \'\'));'),
'disabled_content' => '($1)',
),



Instead of an image, it'll look like...

Quote(Image removed from quote (#post_dontclick).)
...and when you click it, the image will appear. No JavaScript, no problem! In that case, it'll open a new tab/window with the image.

You can mess with the HTML ('content' => '<i>...</i>',) if you want. Just don't touch the Javascript, it's hell trying to figure out how to properly escape the quotes.  :P

That's it!
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 03:17:13 AM
Nice. Can you do the same for RC1?
Title: Re: [Tip] Remove Images from Quotes!
Post by: SA™ on February 15, 2009, 03:35:53 AM
aint that pretty much the same as my mod

http://custom.simplemachines.org/mods/index.php?mod=1302
Title: Re: [Tip] Remove Images from Quotes!
Post by: heavyccasey on February 15, 2009, 03:38:09 AM
Quote from: Antechinus on February 15, 2009, 03:17:13 AM
Nice. Can you do the same for RC1?
I don't know, I don't have a copy of RC1 installed.

I downloaded a copy of the source... the parse_bbc() array looks almost exactly the same as 1.1. I think the same code would work for 2.0, but I don't have anything to test on. Would you mind testing it? I'm almost certain it'll work.

Quote from: wdm2005 on February 15, 2009, 03:35:53 AM
aint that pretty much the same as my mod

http://custom.simplemachines.org/mods/index.php?mod=1302
Yes. In fact, I linked to it in my post. However, yours includes complicated regular expressions while this tip uses the SMF-included BBC manager.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 03:45:06 AM
Also this gives a hide/show option. I'm not sure if the mod does the same (because I haven't tested it) but it's a handy feature.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Marcus Forsberg on February 15, 2009, 03:47:50 AM
Moved to Tips and Tricks (http://www.simplemachines.org/community/index.php?board=72.0) and added to Tips and Tricks (index) (http://www.simplemachines.org/community/index.php?topic=15899.0). Thanks for your tip.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 04:36:48 AM
Doesn't appear to work in RC1.
Title: Re: [Tip] Remove Images from Quotes!
Post by: heavyccasey on February 15, 2009, 05:04:55 AM
Quote from: Antechinus on February 15, 2009, 04:36:48 AM
Doesn't appear to work in RC1.
Fixed in original post. Thanks for testing! Apparently SMF 2.0 doesn't automatically put in image dimensions anymore.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 05:15:47 AM
Yep, that works. Good job. :)

ETA: Prefer it in non-italic myself but that's easy to sort if anyone wants to.

In fact I think I'll install this on my forum right now. I get sick of people quoting the same damned image just to post a one line response. 
Title: Re: [Tip] Remove Images from Quotes!
Post by: heavyccasey on February 15, 2009, 05:22:07 AM
If you don't want the italics, you'd better replace <i></i> with <span></span> instead of just removing it, if you haven't already figured that out.

Drives me crazy too :P
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 05:32:09 AM
It works without the <span></span>. Dunno if it's supposed to but it does.

ETA: Validates that way too. No html or css or js errors. Go figure.
Title: Re: [Tip] Remove Images from Quotes!
Post by: heavyccasey on February 15, 2009, 05:46:17 AM
Quote from: Antechinus on February 15, 2009, 05:32:09 AM
It works without the <span></span>. Dunno if it's supposed to but it does.

ETA: Validates that way too. No html or css or js errors. Go figure.
It just looks like it's working. If you add text before or after the image, without the <span>, the text disappears too.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on February 15, 2009, 05:58:51 AM
Ah. I see what you mean. The text displays fine until you click the link to show the image. I added the span tags and as you say that sorts it.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Chas Large on August 11, 2009, 03:32:00 PM
Thanks for this tip, the mod works just fine in 1.1.10.
Chas
Title: Re: [Tip] Remove Images from Quotes!
Post by: Simplemachines Cowboy on August 11, 2009, 05:13:07 PM
Cool. Works nicely on 1.1.10.
Title: Re: [Tip] Remove Images from Quotes!
Post by: bbmtalk on September 04, 2009, 12:23:53 AM
Can this be done to resize the image to 300 pixels in quotes if the image is larger than 300 pixel?
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on September 05, 2009, 05:47:33 PM
Not without a lot of work. At that point the script does not know how big the image is, and won't without downloading it. At best you could make it scrollable, or else you'd have to enforce it go determine how big it is first.
Title: Re: [Tip] Remove Images from Quotes!
Post by: chrlsnicholas7 on September 15, 2009, 05:31:12 PM
Can we increase the pixel size if it is smaller than 100...
Will the clarity be maintained....
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on October 11, 2009, 05:48:17 AM
This is currently available as a mod: http://custom.simplemachines.org/mods/index.php?mod=1302
Title: Re: [Tip] Remove Images from Quotes!
Post by: heavyccasey on October 11, 2009, 06:46:36 PM
That mod uses its own regular expression code, while this edit uses the built-in SMF system.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on October 11, 2009, 06:50:51 PM
Ah, my bad. I just figured the two used the same method - I didn't check, but it's usually the case that if a mod is written where there is an existing tip/trick, that the mod may well have used the code from the tip.
Title: Re: [Tip] Remove Images from Quotes!
Post by: nwobhm on November 14, 2009, 01:37:53 PM
Has anyone tried if this works with RC2 :)
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on November 14, 2009, 01:47:43 PM
I see no reason why this wouldn't work on 2.0 RC2. The BBcode listing wasn't touched IIRC.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on November 14, 2009, 08:08:51 PM
I'll definitely be wanting this on RC2 so if it doesn't work now I'll find a way to make sure it does (if nobody beats me to it). AFAIK though it should work.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Costa on November 14, 2009, 08:13:22 PM
This work on RC2!
Title: Re: [Tip] Remove Images from Quotes!
Post by: Scratching my Head on March 10, 2010, 03:59:46 PM
Does not appear to work for 1.1.11  :-[
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on March 10, 2010, 04:03:03 PM
No, there was a rewrite of the img tag in 1.1.11.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Scratching my Head on March 10, 2010, 04:09:06 PM
Thanks Arantor. Is there a fix/mod that achieves the desired result?
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on March 10, 2010, 04:09:33 PM
Nope, it's a complete rewrite of the tip :S
Title: Re: [Tip] Remove Images from Quotes!
Post by: Scratching my Head on March 10, 2010, 04:12:14 PM
I'm not sure I follow. As I understand it there is nothing now available that hides images in quotes?
Title: Re: [Tip] Remove Images from Quotes!
Post by: Arantor on March 10, 2010, 04:14:18 PM
Correct. The tip is based on the old img tag code that was in versions prior to 1.1.11. It will need rewriting to work on 1.1.11.
Title: Re: [Tip] Remove Images from Quotes!
Post by: Scratching my Head on March 10, 2010, 04:16:42 PM
Very good. Thanks muchly, Arantor.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.mysmiley.net%2Fimgs%2Fsmile%2Fsign%2Fsign0201.gif&hash=38d538ff0608d275cebaac8ba7dd76d9a77813e5)
Title: Re: [Tip] Remove Images from Quotes!
Post by: gbsothere on March 10, 2010, 04:21:06 PM
Quote from: Arantor on March 10, 2010, 04:14:18 PM
Correct. The tip is based on the old img tag code that was in versions prior to 1.1.11. It will need rewriting to work on 1.1.11.



I've used the old Remove Images From Quote mod v1[1].0 for a long time; we have it now on my 1.1.11 board.  I can't remember, but I don't think I had to tweak anything for it to work. 

:-\

But then, I don't remember what I had for lunch, so....

:)

Title: Re: [Tip] Remove Images from Quotes!
Post by: Chas Large on March 10, 2010, 04:48:15 PM
I've written a mod for SMF 2.0 RC2 based on this tip but it's not been approved yet.

It also works for RC3.

It's title will be "Remove images from Quotes" I'll post here again when it's released.
Title: Re: [Tip] Remove Images from Quotes!
Post by: gbsothere on March 10, 2010, 05:12:48 PM
Quote from: Scratching my Head on March 10, 2010, 04:35:14 PM
Doesn't appear to work for 1.1.11

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwww.postimg.com%2F13000%2F12012.jpg&hash=58625dbb6c0ed6dc9db4d8a1e4b596e77fa33d27)




Pic of it working for 1.1.11

:)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fwhereitestmystuff.com%2Fimages%2Fquote.jpg&hash=1cec71d6e4c7b915dd1186aea82dd086c36fa268)

Title: Re: [Tip] Remove Images from Quotes!
Post by: Antechinus on March 11, 2010, 03:46:36 AM
Works in 1.1.11 for me too. Never changed a thing.

In fact I want to tweak it to remove the quotes from quotes. :D Having quotes collapsed by default and expandable onclick would be rather handy I think.
Title: Re: [Tip] Remove Images from Quotes!
Post by: waruna on March 11, 2010, 06:44:31 AM
I'm using SMF2.0 RC2. Just a quick question, is there any way to remove images from quotes only at the same page of the images? I mean the function will not work if the images are quoting from another page.

Thanks in advance.