- 文章: 8
- 謝謝您收到: 0
Position位置請教
- 黑輪
- Topic Author
- Offline
- 新手上路
Less
More
- Velson
- Offline
- 管理員
- 惡搞美工亂玩網頁的五年級設計師 亂玩資歷十六年
- 黑輪
- Topic Author
- Offline
- 新手上路
Less
More
- 文章: 8
- 謝謝您收到: 0
2014-03-10 12:39 #25897
來自 黑輪
Hi Velson
感謝您的回覆,我有嘗試去修改底下這段程式碼,但顯示出來的資訊,和我想要的還是不太一樣的說
<?php
echo $view->position('banner2', 'art-nostyle');
if ($view->containsModules('breadcrumb'))
echo artxPost($view->position('breadcrumb'));
echo $view->positions(array('user1' => 50, 'user2' => 50), 'art-article');
echo $view->position('banner3', 'art-nostyle');
echo artxPost(array('content' => '<jdoc:include type="message" />', 'classes' => ' art-messages'));
echo '<jdoc:include type="component" />';
echo $view->position('banner4', 'art-nostyle');
echo $view->positions(array('user4' => 50, 'user5' => 50), 'art-article');
echo $view->position('banner5', 'art-nostyle');
?>
如您所提到的,找書或谷歌一下,想請教一下如要找書的話,您有建議的書籍嗎?
谷歌我有找了一下,老實說看不是很懂,所以想先找一、兩本書來翻一翻
黑輪 replied the topic: Position位置請教
velson 寫了道:: 在原始檔 把 <jdoc:include type="component" /> 跟 module bottom2 對調,
如果不懂的話,就應該要買書來看或上網查資料了
Hi Velson
感謝您的回覆,我有嘗試去修改底下這段程式碼,但顯示出來的資訊,和我想要的還是不太一樣的說
<?php
echo $view->position('banner2', 'art-nostyle');
if ($view->containsModules('breadcrumb'))
echo artxPost($view->position('breadcrumb'));
echo $view->positions(array('user1' => 50, 'user2' => 50), 'art-article');
echo $view->position('banner3', 'art-nostyle');
echo artxPost(array('content' => '<jdoc:include type="message" />', 'classes' => ' art-messages'));
echo '<jdoc:include type="component" />';
echo $view->position('banner4', 'art-nostyle');
echo $view->positions(array('user4' => 50, 'user5' => 50), 'art-article');
echo $view->position('banner5', 'art-nostyle');
?>
如您所提到的,找書或谷歌一下,想請教一下如要找書的話,您有建議的書籍嗎?
谷歌我有找了一下,老實說看不是很懂,所以想先找一、兩本書來翻一翻
Please 登入 to join the conversation.
- Velson
- Offline
- 管理員
- 惡搞美工亂玩網頁的五年級設計師 亂玩資歷十六年
- 黑輪
- Topic Author
- Offline
- 新手上路
Less
More
- 文章: 8
- 謝謝您收到: 0
2014-03-11 10:14 #25902
來自 黑輪
感謝您的回覆,我了解要運用到的程式語言有相當的多,
請教一下,如想要研究PHP(主要)、Jommla的部份是否有推薦的書籍呢?
CSS的部份應該從網路上找就可以解決
Jommla的部份我有買了一本Jommla2.5 素人架站計畫,但覺得還是不太夠,
是否有建議的書籍可以提供一下書名呢?
黑輪 replied the topic: Position位置請教
velson 寫了道:: 改Layout要用到的程式有很多,如php/css/js/html,依你提供的語法來看,似乎是速成出來的layout,這我就沒辦法提供要學哪些的建議了
感謝您的回覆,我了解要運用到的程式語言有相當的多,
請教一下,如想要研究PHP(主要)、Jommla的部份是否有推薦的書籍呢?
CSS的部份應該從網路上找就可以解決
Jommla的部份我有買了一本Jommla2.5 素人架站計畫,但覺得還是不太夠,
是否有建議的書籍可以提供一下書名呢?
Please 登入 to join the conversation.
- 黑輪
- Topic Author
- Offline
- 新手上路
Less
More
- 文章: 8
- 謝謝您收到: 0
2014-03-12 12:56 #25914
來自 黑輪
黑輪 replied the topic: Position位置請教
研究了一下區塊的部份
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => 33, 'bottom3' => 34), 'art-block'); ?>
主要~~我需要把bottom2 替換成<jdoc:include type="component" />
我改寫了幾種方式
<?php echo $view->positions(array('bottom1' => 20, '<jdoc:include type="component" />', 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(會變空白)
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => '<jdoc:include type="component" />', 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(且bottom2會跑版)
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => <jdoc:include type="component" />, 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(且全畫面會白掉)
echo '<jdoc:include type="modules" name="bottom1" />';
echo '<jdoc:include type="component" />';
echo '<jdoc:include type="modules" name="bottom3" />';
這種寫法可以成功的顯示bottom1及component,但是bottom3跑版了
請教一下高手,還有沒有其它的嘗試方式可以試試呢?
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => 33, 'bottom3' => 34), 'art-block'); ?>
主要~~我需要把bottom2 替換成<jdoc:include type="component" />
我改寫了幾種方式
<?php echo $view->positions(array('bottom1' => 20, '<jdoc:include type="component" />', 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(會變空白)
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => '<jdoc:include type="component" />', 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(且bottom2會跑版)
<?php echo $view->positions(array('bottom1' => 20, 'bottom2' => <jdoc:include type="component" />, 'bottom3' => 34), 'art-block'); ?>
這種寫法無法正常的顯示component(且全畫面會白掉)
echo '<jdoc:include type="modules" name="bottom1" />';
echo '<jdoc:include type="component" />';
echo '<jdoc:include type="modules" name="bottom3" />';
這種寫法可以成功的顯示bottom1及component,但是bottom3跑版了
請教一下高手,還有沒有其它的嘗試方式可以試試呢?
Please 登入 to join the conversation.
- 黑輪
- Topic Author
- Offline
- 新手上路
Less
More
- 文章: 8
- 謝謝您收到: 0