全国ライブカメラの旅 第495回
2010年3月8日 – 10:30 | コメントは受け付けていません。

台北、良いところですね。
カメラレスポンスも良いです。
鮮明ズームのフルコントロールOK
機種 SONY SNC-RZ30N
http://59.120.82.105/home/homeJ.html

全文表示 Read the full story »
openSUSE

openSUSE11.2にバージョンアップ(2009.12.11)。DELL Power Edge 860 SAS 5/i5 RAID1 で稼働中。     

WordPress

プラグイン、テーマ、日本語化などWordPressって本当によく遊べます。設定などの覚書。

リンクサイト

北海道、東京、山口、宮崎他のライブカメラ関係サイトとお世話になっているサイトです。

全国ライブカメラの旅

検索でライブカメラを見つけて紹介しております。国内、海外のPanasonicを中心に紹介。

覚 書

いろいろ役に立つような情報を忘れないように覚書しております。いたって自分用です……

Home » Archive by Tags

Articles tagged with: プラグイン

Word Press ショッピングカートプラグイン uCart for Wordpress
2009年7月15日 – 15:01 | コメントは受け付けていません。
Word Press ショッピングカートプラグイン uCart for Wordpress

WordPressのショッピングカートプラグインを試してみました。
YAK for WordPress
WP e-Commerce
海外のプラグイン、日本に合うようにはカスタマイズが結構必要で挫折・・・
が、、、日 [...]

WP E-Commerce 文字化け
2009年7月11日 – 14:39 | コメント2件
WP E-Commerce 文字化け

覚書
wp-e-commerce.3.7Beta5
1、ショッピングカート内(買い物かご)
2、パンくずリスト
での商品名文字化け htmlentitiesをhtmlspecialcharsに変更。
/wp-content/plugins/wp-e-commerce/wpsc-includes/cart.class.php 174行目

* cart item name function, no parameters
* @return string the cart item name
*/
function wpsc_cart_item_name() {
global $wpsc_cart;
return htmlspecialchars(stripslashes($wpsc_cart->cart_item->product_name), ENT_QUOTES);
}

/wp-content/plugins/wp-e-commerce/wpsc-includes/wpsc_query.php 171、1516、1533行目

function wpsc_the_product_title() {
global $wpsc_query;
//return stripslashes($wpsc_query->the_product_title());
return htmlspecialchars(stripslashes($wpsc_query->the_product_title()), ENT_QUOTES, "UTF-8");
}

function get_breadcrumbs() {
global $wpdb;
$this->breadcrumbs = array();
$i = 0;
if( $this->category != null) {
if($this->is_single == true) {
$this->breadcrumbs[$i]['name'] = htmlspecialchars(stripslashes($this->product['name']), ENT_QUOTES);
$this->breadcrumbs[$i]['url'] = '';
$i++;
}

while ($category_info['category_parent']!=0) {
$category_info = $wpdb->get_row("SELECT * FROM ".WPSC_TABLE_PRODUCT_CATEGORIES." WHERE id='{$category_info['category_parent']}'",ARRAY_A);
$this->breadcrumbs[$i]['name'] [...]

YAK for WordPress 日本語化
2009年7月6日 – 13:54 | コメント3件
YAK for WordPress 日本語化

WordPressショッピングカートプラグイン バージョン 1.4.6
設定画面を日本語にしたい
見よう見まねでやったものです。万一使用する場合は元ファイルをリネームバックアップして下さい。
yak-ja.poはy [...]

Word Press プラグインの日本語化
2009年7月5日 – 11:05 | コメントは受け付けていません。
Word Press プラグインの日本語化

覚書
これでも、国際化された部分を読み込めます。
あとはプラグイン名-ja.mo

<?php
if (file_exists(ABSPATH . 'wp-includes/l10n.php') [...]

Popularity Contest 日本語化
2009年6月28日 – 13:52 | コメントは受け付けていません。
Popularity Contest 日本語化

Popularity Contest バージョン 2.0b2
/wp-content/plugins/popularity-contest/popularity-contest.php82、1,634行目変更

loa [...]

All in One SEO Pack 日本語化
2009年6月20日 – 12:55 | コメント1件
All in One SEO Pack 日本語化

All in One SEO Pack バージョン 1.5.6
WordPress 2.8
管理画面で日本語にならずいろいろやってみましたがこれでOK??かなっ
all_in_one_seo_pack.phpを秀丸 [...]

WP Grins – Lite
2009年6月18日 – 14:32 | コメント2件
WP Grins – Lite

フェイスアイコン表示にWP Grins(prototype.js)を使用していましたが、jQuery版がありました。
WP Grins – Lite http://www.raproject.com/wo [...]

Customizable Post Listingsで新着にNEWをつける
2009年2月28日 – 14:13 | コメントは受け付けていません。
Customizable Post Listingsで新着にNEWをつける

表示させることができたので覚書
Customizable Post Listings Version:3.0.1 Last update:03 April 2008
http://coffee2code.com/wp-plugins/#customizablepostlistings
うちのは
CPL日本語版 ver 2.0.1
http://hsuzuki.ddo.jp/weblog/?p=2339
参考HP ともかめ亭 WordPress Hacks : New / Up マーク
http://tomokame.moo.jp/archives/614
サンプルコード

function [...]

WordPress Post Updated
2009年2月13日 – 20:16 | コメントは受け付けていません。

覚書

<?php post_updated(‘Y年n月j日 H:s’, 1, ‘(最終更新日: ‘, ‘)’, false, true); [...]