Joomler!.net - Decided on Joomla!

デル株式会社

Wiki or Wordpress? No it is JContentPlus.

Latest Posts

Re:Thumbnails
Avatar Emociones 2010/02/28 22:22
Maybe thumbshots.com I'm testing now this service at my site (http://www.trastornolimite.com/e...
Display weblinks in a nice table-grid
Avatar in93r 2010/02/15 23:06
I would like to have the weblinks wich I displayed in 3 colums, grouped by category, also display...
Relace text link under thumb nail
Avatar in93r 2010/02/15 22:52
Hi! Change the lines 51 - 53 of the file /modules/mod_weblinkinfo/tmpl/default_groupcolumns.ph...
Re:Target
Avatar shalb 2009/12/14 21:07
Hi, it works perfectly. This is the best module of that kind. I will write a review on extensi...
Re:ja purity template - need to customize css
Avatar gpseymour 2009/11/25 00:18
That's not the answer I wanted. I'm not saying you're wrong, just that I don't know a thing about...

Popular Posts

Google翻訳ツールいいですね~
Avatar retro 2008/03/27 17:53
お疲れ様です^_^ リリースされてたのに気づいたので、 Google翻訳ツール導入してみました!かなりいい感じですね~…。 海外からのお客さんも、これとサイト全文翻訳つければ グロー...
Joomla全般の雑談
Avatar retro 2008/02/12 17:54
Joomlaに関する雑談スレッドです http://joomlaeasy.net/multithumb-for-joomla-15.html Joomla Easy.netさんの先日の記...
サイトデザインリニューアルおめでとう&お疲れさまです
Avatar retro 2008/05/13 08:31
お久しぶりです~。ようやくJoomla1.5.3にアップデートできました サイトがいつの間にかカッコヨクなってますね^_^ AjaxVoteがついてて、あれっ、これもう出たんだっ?と思っ...
Joomla!での携帯対応について質問させてください。
Avatar eiichi 2009/03/10 00:57
いつも参考にさせていただいてます。有益な情報ありがとうございます。 ●Joomla!と携帯に関して質問させてください。 Joomla!をお使いの方って、Joomla!で携帯対応のサイトを...
バナー二題
Avatar kaba101 2008/11/27 22:42
どうも毎度お世話になってます。 ちょっとバナーの話題をふたつばかり。 現在、日英二言語対応のサイトを作っているわけですが…。 文字コンテンツはだいたいJoom!fish(なんで魚...

Forum Stats

All times are UTC + 9 hours
Total Topics:160
Total Posts:989
New Members:
Avatar Afzal Avatar pippol Avatar huno Avatar yolandal

Forum Online

Total Online:125
Total Guest:125
Bottom
Home » Support » Modules » Free Module » WebLinkInfo » Wrapper
Wrapper
Wrapper
Thursday, 05 November 2009 06:41
0 votes
Is there a way to display your links in a Joomla 1.5 wrapper when they are clicked?
Lexchess
Fresh Boarder
Fresh Boarder
3
2009/11/05
Re:Wrapper
Friday, 06 November 2009 06:50
0 votes
I think that the thing displayed with Wrapper of Joomla is impossible.
However, if as follows is done, it is possible to do.

<?php if(JRequest::getInt('Itemid') == 48 /** Menu ID of your web link **/):?>
	<?php JHTML::_('behavior.mootools');?>
<script type="text/javascript">
window.addEvent('domready', function(){
	if(document.adminForm){
		weblinkWrapper = 'maincolumn';// maincolumn is example of rhuk_milkyway template. It is Element ID that wraped Content.
		document.adminForm.getElements('a').each(function(e, i){
			var href = e.getProperty('href');
			var coordinates = $(weblinkWrapper).getCoordinates();
			e.addEvent('click', function(eve){
				new Event(eve).stop();
				var container = new Element('div').injectAfter($(weblinkWrapper));
				var elem = new Element('input').setProperties({
					'type':'button',
					'class':'button',
					'value':'Close',
					'onclick':"$(weblinkWrapper).remove();$('displaynone').setStyle('display','').setProperty('id',weblinkWrapper);"
				}).injectInside(container);
				new Element('iframe').setProperties({
					'id': 'iframe'+i,
					'src':href,
					'width':'100%',
					'height':'100%'
				}).setStyles({
					'border':'none'
				}).injectInside(container);
				$(weblinkWrapper).setStyle('display', 'none').setProperty('id','displaynone');
				container.setProperty('id', weblinkWrapper).setStyles({
					witdh:coordinates.width,
					height:coordinates.height
				});
			});
		});
	}
});
</script>
<?php endif;?>
Joomler!
Platinum Boarder
Platinum Boarder
430
2007/08/26
Re:Wrapper
Saturday, 07 November 2009 04:34
0 votes
I'm not exactly following where you want to place that code above. If I create a normal menu item for each weblink, then Joomla will allow me to show each weblink in a Wrapper. That is a base Joomla option for any menu item.

I'm sure I am just confused on what you are attempting to do. Should the code above be placed in one of the PHP files found in the "weblinkInfo" directory?

I see where I can edit the mod_weblinkinfo.xml to place "Wrapper" as an option in the dropdown box. However, I can not even begin to figure out what code I am suppose to place in the default.php file to make links appear in a Wrapper.
Lexchess
Fresh Boarder
Fresh Boarder
3
2009/11/05
Re:Wrapper
Saturday, 07 November 2009 06:28
0 votes
The file that added Code was put on the following links.

WEBLINKINFO WITH WRAPPER AND CUTOM WEBLINK TEMPLATE WITH WRAPPER
Joomler!
Platinum Boarder
Platinum Boarder
430
2007/08/26
Re:Wrapper
Saturday, 07 November 2009 10:41
0 votes
Excellent. With a bit of tweaking, I believe this will work. There are some strange quirks, but that is expected with a Beta version that you popped out so quickly. Amazing actually.

This does not affect my use, but some websites go into your wrapper and then jump to full screen. Joomla.org does this on FF and IE8 on my computers. Also, the CLOSE button does not work on IE8 on my work computer, haven't tested on another computer to verify this.

Off to try to implement this with the template I use. Super-duper, excellent support for this module. Thank you very, very, very much for your help. I had already typed up a Rentacoder submission for this, but I will gladly send that money, when I get back to work on Monday, to support this module and website instead.
Lexchess
Fresh Boarder
Fresh Boarder
3
2009/11/05
 
Home » Support » Modules » Free Module » WebLinkInfo » Wrapper
The Joomla!(R) name is used under a limited license from Open Source Matters in the United States and other countries.
joomler.net is not affiliated with or endorsed by Open Source Matters or the Joomla! Project.