อยากถามเกี่ยวกับ wordpress คร้า ใครที่พอรู้ช้วยหน่อยนะคร้า
มันเป็นคำถาม...เฉพาะ...ซึ่งต้องมี file ตัวอย่างหรือชื่อของ plugin และนำ code css หรือ php หรือ java การทำงานของ plugin นั้นๆมาแสดงให้พี่ๆใน thaicreate ช่วยแก้ไขนะครับ
Date :
2012-04-18 10:38:58
By :
time.toon
ไฟล์ มันเยอะมากค่ะ ที่เกี่ยวข้อง หนูหาแล้วไม่รุ้จะแก้ยังไง เพราะ ภาษา มันต้องใช้เปน widget แล้วไม่รุ้จะแก้ตรงจุดไหน
Date :
2012-04-18 13:09:17
By :
noony
ไม่เยอะหลอกครับลองไล่ดูที่เก็บ Module หรือ plugin ครับ
ว่า Module หรือ plugin ที่คุณติดตั้งไปมันอยู่ที่ไหน..ของ wp
แล้วใน Module หรือ plugin นั้นเองจะมี flie ที่เป็น นามสกุลต่างๆ เช่น *.css *.js หรือ *.php นะครับ
Date :
2012-04-18 13:18:34
By :
time.toon
เราต้องแก้ตรงที่ ในโฟลเดอร์ plugin หรอค่ะ qtranslate
Date :
2012-04-18 13:22:37
By :
noony
ง่า เยอะมากเลยนร้า ไม่รุ้ว่าหน้าไหน T_T
Date :
2012-04-18 16:17:51
By :
noony
ทำไงดีละที่นี้....
Date :
2012-04-18 16:41:16
By :
time.toon
T_T ถ้ารู้จุดหรือหน้าี่ต้องการแก้กะดีหน้อ อิอิ
Date :
2012-04-18 17:28:21
By :
noony
<?php // encoding: utf-8
/* Copyright 2008 Qian Qin (email : [email protected] )
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* qTranslate Widget */
class qTranslateWidget extends WP_Widget {
function qTranslateWidget() {
$widget_ops = array('classname' => 'widget_qtranslate', 'description' => __('Allows your visitors to choose a Language.','qtranslate') );
$this->WP_Widget('qtranslate', __('qTranslate Language Chooser','qtranslate'), $widget_ops);
}
function widget($args, $instance) {
extract($args);
echo $before_widget;
$title = empty($instance['title']) ? __('Language', 'qtranslate') : apply_filters('widget_title', $instance['title']);
$hide_title = empty($instance['hide-title']) ? false : 'on';
$type = $instance['type'];
if($type!='text'&&$type!='image'&&$type!='both'&&$type!='dropdown') $type='text';
if($hide_title!='on') { echo $before_title . $title . $after_title; };
qtrans_generateLanguageSelectCode($type, $this->id);
echo $after_widget;
}
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = $new_instance['title'];
if(isset($new_instance['hide-title'])) $instance['hide-title'] = $new_instance['hide-title'];
$instance['type'] = $new_instance['type'];
return $instance;
}
function form($instance) {
$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'hide-title' => false, 'type' => 'text' ) );
$title = $instance['title'];
$hide_title = $instance['hide-title'];
$type = $instance['type'];
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'qtranslate'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
<p><label for="<?php echo $this->get_field_id('hide-title'); ?>"><?php _e('Hide Title:', 'qtranslate'); ?> <input type="checkbox" id="<?php echo $this->get_field_id('hide-title'); ?>" name="<?php echo $this->get_field_name('hide-title'); ?>" <?php echo ($hide_title=='on')?'checked="checked"':''; ?>/></label></p>
<p><?php _e('Display:', 'qtranslate'); ?></p>
<p><label for="<?php echo $this->get_field_id('type'); ?>1"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>1" value="text"<?php echo ($type=='text')?' checked="checked"':'' ?>/> <?php _e('Text only', 'qtranslate'); ?></label></p>
<p><label for="<?php echo $this->get_field_id('type'); ?>2"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>2" value="image"<?php echo ($type=='image')?' checked="checked"':'' ?>/> <?php _e('Image only', 'qtranslate'); ?></label></p>
<p><label for="<?php echo $this->get_field_id('type'); ?>3"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>3" value="both"<?php echo ($type=='both')?' checked="checked"':'' ?>/> <?php _e('Text and Image', 'qtranslate'); ?></label></p>
<p><label for="<?php echo $this->get_field_id('type'); ?>4"><input type="radio" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>4" value="dropdown"<?php echo ($type=='dropdown')?' checked="checked"':'' ?>/> <?php _e('Dropdown Box', 'qtranslate'); ?></label></p>
<?php
}
}
// Language Select Code for non-Widget users
function qtrans_generateLanguageSelectCode($style='', $id='') {
global $q_config;
if($style=='') $style='text';
if(is_bool($style)&&$style) $style='image';
if(is_404()) $url = get_option('home'); else $url = '';
if($id=='') $id = 'qtranslate';
$id .= '-chooser';
switch($style) {
case 'image':
case 'text':
case 'dropdown':
echo '<ul class="qtrans_language_chooser" id="'.$id.'">';
foreach(qtrans_getSortedLanguages() as $language) {
$classes = array('lang-'.$language);
if($language == $q_config['language'])
$classes[] = 'active';
echo '<li class="'. implode(' ', $classes) .'"><a href="'.qtrans_convertURL($url, $language).'"';
// set hreflang
echo ' hreflang="'.$language.'" title="'.$q_config['language_name'][$language].'"';
if($style=='image')
echo ' class="qtrans_flag qtrans_flag_'.$language.'"';
echo '><span';
if($style=='image')
echo ' style="display:none"';
echo '>'.$q_config['language_name'][$language].'</span></a></li>';
}
echo "</ul><div class=\"qtrans_widget_end\"></div>";
if($style=='dropdown') {
echo "<script type=\"text/javascript\">\n// <![CDATA[\r\n";
echo "var lc = document.getElementById('".$id."');\n";
echo "var s = document.createElement('select');\n";
echo "s.id = 'qtrans_select_".$id."';\n";
echo "lc.parentNode.insertBefore(s,lc);";
// create dropdown fields for each language
foreach(qtrans_getSortedLanguages() as $language) {
echo qtrans_insertDropDownElement($language, qtrans_convertURL($url, $language), $id);
}
// hide html language chooser text
echo "s.onchange = function() { document.location.href = this.value;}\n";
echo "lc.style.display='none';\n";
echo "// ]]>\n</script>\n";
}
break;
case 'both':
echo '<ul class="qtrans_language_chooser" id="'.$id.'">';
foreach(qtrans_getSortedLanguages() as $language) {
echo '<li';
if($language == $q_config['language'])
echo ' class="active"';
echo '><a href="'.qtrans_convertURL($url, $language).'"';
echo ' class="qtrans_flag_'.$language.' qtrans_flag_and_text" title="'.$q_config['language_name'][$language].'"';
echo '><span>'.$q_config['language_name'][$language].'</span></a></li>';
}
echo "</ul><div class=\"qtrans_widget_end\"></div>";
break;
}
}
function qtrans_widget_init() {
register_widget('qTranslateWidget');
}
?>
Date :
2012-04-19 15:51:24
By :
noony
แก้ยังไงกะไม่ได้ อ่าคะ่ นี้คือ Code Qtranlate ค่ะ
Date :
2012-04-19 15:52:14
By :
noony
55 ผมไม่เคยใช้นะ
แต่ถ้าเป็นผม ไม่อยากแกะโค้ดหรือไปแก้ ตัวปลั๊กอินของมัน เผื่อเวลาอัพเดทจะได้ไม่มีปัญหา
ใส่ js ให้ ไม่แสดงภาพนั้นพอ
http://www.pjgunner.com
Date :
2012-04-19 18:18:39
By :
pjgunner.com
js 8ือไร ค่ะ
Date :
2012-04-20 11:01:01
By :
noony
wordpress ผมไม่แน่ใจนะครับลองไปที่เมนู plug-in แล้วไป setting ของตัว qtransalate ลองไล่ดูตรง
advanced setting ครับ เผื่อเจอ
-แต่ถ้าเป็น joomla ตั้งค่าได้นะครับ
-ผมว่าอย่าไปยุ่งกะโค้ดของมันเลยครับ(ตอนแรกผมก็คิดจะไปแก้เหมือนกันแต่ดูแล้วมึนตืบ เยอะจัด)
Date :
2012-04-24 16:51:44
By :
naskw
ผมอยากให้ลอง Joomla ดูครับสำหรับแว็บสองภาษาผมว่าปลั๊กอินของ Joomla มันโอเคกว่า
เพราะตอนแรกๆผมก็ลองใช้ wordpress ครับใช้ qtranslate นี่แหละ ทำไปทำมาไม่ได้อย่างที่ต้องการ
เลยลอง joomla ดูครับ ก็โอเคพอไหว แต่ก็ไม่ได้ตรงตามเราต้องการทั้งหมดนะครับ
ถ้าอยากลอง Joomla ก็ ไปหา tool มาดั้งนี้ครับ
- joomla 1.5(ต้อง 1.5 เท่านั้นนะ ถ้าเป็น 2.5 Joomfish ยังไม่ซับพอร์ตต้องรอก่อน)
- joomfish 2.3(ตัวล่าสุด)
- package ภาษาไทยสำหรับ joomla ด้วยนะ
ลองศึกษาดูเผื่อช่วยได้ครับ
Date :
2012-04-24 17:05:13
By :
naskw
Load balance : Server 00