Jan
26
修改詢問頁面
components\com_virtuemart\themes\default\templates\pages\shop.ask.tpl.php
第34行
原始程式碼
修正程式碼
administrator/components/com_virtuemart/classes/ps_product.php
第2190行
原始程式碼
修正程式碼
使用版本
Joomla 1.5.22
VirtueMart 1.1.6
components\com_virtuemart\themes\default\templates\pages\shop.ask.tpl.php
第34行
原始程式碼
<textarea rows="10" cols="60" name="text" id="contact_text" class="inputbox"><?php echo utf8_decode($subject) ?></textarea><br />
修正程式碼
<textarea rows="10" cols="60" name="text" id="contact_text" class="inputbox"><?php echo urldecode($subject) ?></textarea><br />
administrator/components/com_virtuemart/classes/ps_product.php
第2190行
原始程式碼
$product_name = htmlentities( $this->get_field($product_id, 'product_name'), ENT_QUOTES );
修正程式碼
$product_name = htmlentities( $this->get_field($product_id, 'product_name'), ENT_QUOTES, 'utf-8' );
使用版本
Joomla 1.5.22
VirtueMart 1.1.6
Jan
25
Here is the solution
1. Go to your site's file manager
2. Go to Component > com_virtuemart > themes > default > templates > common
3. Open shopIndex.tpl.php in edit mode
4. Locate the following code:
5. Delete it.
資料來源
http://forum.virtuem...ex.php?topic=75103.0
1. Go to your site's file manager
2. Go to Component > com_virtuemart > themes > default > templates > common
3. Open shopIndex.tpl.php in edit mode
4. Locate the following code:
<?php if( isset($paypalLogo)) : ?>
<div class="vmRecent" style="padding: 10px; text-align: center;">
<?php echo $paypalLogo; ?>
</div>
<?php endif; ?>
<div class="vmRecent" style="padding: 10px; text-align: center;">
<?php echo $paypalLogo; ?>
</div>
<?php endif; ?>
5. Delete it.
資料來源
http://forum.virtuem...ex.php?topic=75103.0
Jan
4
找不到合適的網頁範本嗎...那乾脆自己DIY做一個可用於下列網站
Joomla templates, Drupal themes, Wordpress themes, DotNetNuke skins, Blogger templates
http://www.artisteer.com/
Joomla templates, Drupal themes, Wordpress themes, DotNetNuke skins, Blogger templates
http://www.artisteer.com/
Dec
16
Free
http://www.joomlatemplatesdownload.com/
http://joomla0.com/
http://www.themza.com/
http://www.joomla24.com/
http://www.siteground.com/
==$$$ ==
http://www.joomla-themes.co.uk/
http://www.joomlatemplatesdownload.com/
http://joomla0.com/
http://www.themza.com/
http://www.joomla24.com/
http://www.siteground.com/
==$$$ ==
http://www.joomla-themes.co.uk/
Dec
16
Joomla!使用 templates/system/error.php文件去处理几个HTTP 状态错误,包括"403禁止"错误,"404没有发现"错误,和"500 Internal Server"错误,如果你原意,你可以修改你的偏爱的样式.
认识error.php 是来自JOOMLA!的不受约束的独立文件是非常重要的.插件无法在这个文件里运行,当然也不能用声明将模块包含进去.
如果你将自定义格式的错误页面,将templates/system/error.php文件复制到templates/ 你的默认模板文件夹里,如果有的话,也就没有必要复制.Joomla!将优先使用该错误文件,你可以修改该文件以适就你的模板 .
如果你只是想改变页面的CSS样式,templates/system/css/error.css 文件复制到 templates//css 文件包里.然后将templates//error.php里面的CSS引用修改一下,如下:
这样,就可以将404等错误提示改成你需要的样式.你可以用特殊的错误代码来添加条件逻辑以使返回的错误提示多样化,下面就是一个关于404错误的例子:
HTTP status code
当一个请求你网站的某个页面发生时,服务器返回一个HTTP状态码作为该请求的回应,Joomla!返回 一个"200 - the server successfully returned the page"作为错误页面.这就是那些用GOOGLE网站管理工具的站长们的疑问并试图用网站地图来解决此问题.
如果你想JOOMLA!返回一个状态码作为错误时,你只需在页面的DOCTYPE 前添加以下代码:
資料來源
http://www.panenming...-Joomlazidingyi.html
认识error.php 是来自JOOMLA!的不受约束的独立文件是非常重要的.插件无法在这个文件里运行,当然也不能用
如果你将自定义格式的错误页面,将templates/system/error.php文件复制到templates/
如果你只是想改变页面的CSS样式,templates/system/css/error.css 文件复制到 templates/
<link rel="stylesheet" href="/<?php echo $this->baseurl; ?>/templates/system/css/error.css" type="text/css" />
这样,就可以将404等错误提示改成你需要的样式.你可以用特殊的错误代码来添加条件逻辑以使返回的错误提示多样化,下面就是一个关于404错误的例子:
<?php if ($this->error->code = '404') { ?>
<div id="errorboxheader">Page not found</div>
<div id="errorboxbody"><p>Sorry! That page cannot be found.</p>
</div>
</div>
<?php } ?>
<div id="errorboxheader">Page not found</div>
<div id="errorboxbody"><p>Sorry! That page cannot be found.</p>
</div>
</div>
<?php } ?>
HTTP status code
当一个请求你网站的某个页面发生时,服务器返回一个HTTP状态码作为该请求的回应,Joomla!返回 一个"200 - the server successfully returned the page"作为错误页面.这就是那些用GOOGLE网站管理工具的站长们的疑问并试图用网站地图来解决此问题.
如果你想JOOMLA!返回一个状态码作为错误时,你只需在页面的DOCTYPE 前添加以下代码:
<?php
if ($this->error->code = '404') {
header("HTTP/1.0 404 Not Found");
} ?>
if ($this->error->code = '404') {
header("HTTP/1.0 404 Not Found");
} ?>
資料來源
http://www.panenming...-Joomlazidingyi.html
Jun
30
Joomla 網頁連結的圖片,若沒有設定會無法顯示...
而圖片的超連結 http://{host}/images/M_images/ 呈現這種格式..
主要是圖片來源沒有設定,設定方法如下
在元件->網頁連結->連結 內的參數->圖示
選一個圖吧!!沒有你要的...就自己上傳吧!!...
修改完後記得點"X"之前先按儲存哦!!
而圖片的超連結 http://{host}/images/M_images/ 呈現這種格式..
主要是圖片來源沒有設定,設定方法如下
在元件->網頁連結->連結 內的參數->圖示
選一個圖吧!!沒有你要的...就自己上傳吧!!...
修改完後記得點"X"之前先按儲存哦!!
Jun
17
這兩天要用一家公司的網站...
測試了兩個CMS系統,Drupal & Joomla
如果純網站的系統來說我選擇了Joomla...
在安裝設定的過程中有些...#%@^,尤其在Joomla 台灣官網 1.5版的教學文件.少的可以
例如: 語系的安裝
在官網有提供中文語言檔的下載,可是檔案下完後要解到那裡!?搞不太清楚,因為說明沒寫到。這對我第一次安裝的真是有相當大的挫折感。終於在搜尋引擎的協助下,這兩個語系檔我終於知道要解到那裡去了。
Joomla 相關資源如下
http://www.joomla.org.tw/ 台灣官網
http://joycat.net/
www.joomla123.com.tw 台灣官網未成立之前第一次接觸Joomla 的網站
http://www.maycode.com/ 大陸站
未完待續...
測試了兩個CMS系統,Drupal & Joomla
如果純網站的系統來說我選擇了Joomla...
在安裝設定的過程中有些...#%@^,尤其在Joomla 台灣官網 1.5版的教學文件.少的可以
例如: 語系的安裝
在官網有提供中文語言檔的下載,可是檔案下完後要解到那裡!?搞不太清楚,因為說明沒寫到。這對我第一次安裝的真是有相當大的挫折感。終於在搜尋引擎的協助下,這兩個語系檔我終於知道要解到那裡去了。
Joomla 相關資源如下
http://www.joomla.org.tw/ 台灣官網
http://joycat.net/
www.joomla123.com.tw 台灣官網未成立之前第一次接觸Joomla 的網站
http://www.maycode.com/ 大陸站
未完待續...