Demo

討論

保持飢餓,保持愚笨 (Stay hungry, stay foolish)。 史蒂夫·賈伯斯

公告

本網站已取消討論區的討論方式,如果您有問題請至LINE群行動條碼圖片網址,或Facebook社團

Position位置請教

  • 黑輪
  • 黑輪 的個人頭像 Topic Author
  • Offline
  • 新手上路
  • 新手上路
More
2014-03-07 18:37 #25891 來自 黑輪
黑輪 created the topic: Position位置請教
Hi 各位高手

想請教一下,我能否設定我的文章預設在哪一個Position顯示
如下圖,我想要把我的文章預設顯示在 Position : bottom2 這個地方
我需要修改哪個部份呢???我花了一些時間去尋找他的元素,但找不太到要在哪邊更改

Please 登入 to join the conversation.

  • Velson
  • Velson 的個人頭像
  • Offline
  • 管理員
  • 管理員
  • 惡搞美工亂玩網頁的五年級設計師 亂玩資歷十六年
More
2014-03-08 12:40 #25892 來自 Velson
Velson replied the topic: Position位置請教
在原始檔 把 <jdoc:include type="component" /> 跟 module bottom2 對調,
如果不懂的話,就應該要買書來看或上網查資料了

UnoHat Joomla 元件、模組、外掛 開發 Email住址會使用灌水程式保護機制。你需要啟動Javascript才能觀看它

Please 登入 to join the conversation.

  • 黑輪
  • 黑輪 的個人頭像 Topic Author
  • Offline
  • 新手上路
  • 新手上路
More
2014-03-10 12:39 #25897 來自 黑輪
黑輪 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
  • Velson 的個人頭像
  • Offline
  • 管理員
  • 管理員
  • 惡搞美工亂玩網頁的五年級設計師 亂玩資歷十六年
More
2014-03-10 19:44 #25898 來自 Velson
Velson replied the topic: Position位置請教
改Layout要用到的程式有很多,如php/css/js/html,依你提供的語法來看,似乎是速成出來的layout,這我就沒辦法提供要學哪些的建議了

UnoHat Joomla 元件、模組、外掛 開發 Email住址會使用灌水程式保護機制。你需要啟動Javascript才能觀看它
The following user(s) said Thank You: 黑輪

Please 登入 to join the conversation.

  • 黑輪
  • 黑輪 的個人頭像 Topic Author
  • Offline
  • 新手上路
  • 新手上路
More
2014-03-11 10:14 #25902 來自 黑輪
黑輪 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
  • 新手上路
  • 新手上路
More
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跑版了

請教一下高手,還有沒有其它的嘗試方式可以試試呢?

Please 登入 to join the conversation.

  • 黑輪
  • 黑輪 的個人頭像 Topic Author
  • Offline
  • 新手上路
  • 新手上路
More
2014-03-24 10:35 #25935 來自 黑輪
黑輪 replied the topic: Position位置請教
該問題已解決了
解決方法:我重新製作一個佈景主題
讓我的bottom1、bottom3去配合<jdoc:include type="component" />的區塊就行了

之前太堅持要去移動<jdoc:include type="component" />區塊
其實反過來想,我去變更其它區塊位置來配合他也是可行的!~xd

Please 登入 to join the conversation.