2

我正在使用“qtranslate”插件进行文字新闻,以便在我的网站中使用元语言,

如何创建一个仅显示其中标志的组合?

我尝试使用以下代码生成下拉列表,但它仅在列表中显示标志:

echo qtrans_generateLanguageSelectCode('image');
$header_shortcodes = html_entity_decode(get_option(PREFIX.'_header_shortcodes'), ENT_QUOTES, 'UTF-8');
echo $header_shortcodes = apply_filters('themefuse_shortcodes',$header_shortcodes);

谢谢

4

2 回答 2

2

我最终在这里采用了一种解决方案并将其与msdropdown插件结合使用

第 1 步:转到插件文件夹并打开 qtranslate/qtranslate_widget.php。有在行号。112 你会发现 case:'both'; 现在该案例在第 123 行结束的地方添加以下代码(另写案例)

case 'bothkria': ?>
     <div id="language_chooser">
        <select name="langchooser" id="langchooser" onchange="$(window.location).attr('href',this.value);">
        <?php 
            /************************
            * go over the enabled languages and create all the languages options
            * the first marked "selected" is reffered to the current chosen language
            * the value is the relevant url and the title is the url of the image.
            * 
            * After creating the selectbox we will run the msdropdown plugin to make it a designed select box
            * Of corse dont forget to have a reference to the msdropdown js library
            * <script type="text/javascript" src="js/jquery.dd.js"></script>
            * you can find it here http://www.marghoobsuleman.com/jquery-image-dropdown
            *************************/
            foreach(qtrans_getSortedLanguages() as $language)
            {
                if($q_config['language']==$language) {?>
                    <option selected="selected" value="<?php echo qtrans_convertURL($url, $language);?>" title="<?php echo get_option('home');?>/wp-content/<?php echo $q_config['flag_location'];?><?php echo $q_config['flag'][$language] ?>"><?php print strtoupper($q_config['pre_domain'][$language]); ?></option>
          <?php } else {  ?>
                    <option value="<?php print qtrans_convertURL($url, $language);?>" title="<?php echo get_option('home');?>/wp-content/<?php echo $q_config['flag_location'];?><?php echo $q_config['flag'][$language] ?>"><?php print strtoupper($q_config['pre_domain'][$language]); ?></option>
          <?php }
            } ?>
        </select> 
        <div id="selectbox_script" style="display:none;">
                 <script type="text/javascript">
                 /* <![CDATA[ */
                    $(document).ready(function(e) {
                        try {
                        $("#langchooser").msDropDown();
                        } catch(e) {
                        alert(e.message);
                        }
                    });
                 /* ]]> */
                 </script>
        </div>
     </div>
    <?php break; ?> 
于 2012-02-23T10:37:39.717 回答
0

我从您的问题中了解到的是,您需要一个包含标志图像和语言的下拉列表,如果是这样,请使用以下代码。

我在 qtranslate 版本 2.5.28 上编写和测试了这段代码,尽管它适用于其他版本,参考行号也根据这个版本给出。

第 1 步:转到插件文件夹并打开 qtranslate/qtranslate_widget.php。有在行号。112 你会发现case:'both'; Now where that case end its line no 123 在下面添加以下代码(另一个案例编写)`

case 'bothkria':
            if($_REQUEST['lang']!=""){ $kria = $_REQUEST['lang'];}else{$kria = $q_config['default_language'];}
            echo '<span class="s_selected"><img src="'.get_option('home').'/wp-content/'.$q_config['flag_location'].''.$q_config['flag'][$kria].'" alt="'.$q_config['flag'][$kria].'" /> '.$q_config['language_name'][$kria].'</span>
                    <ul class="s_options">';
            foreach(qtrans_getSortedLanguages() as $language){
                      echo '<li><a href="'.qtrans_convertURL($url, $language).'"><img src="'.get_option('home').'/wp-content/'.$q_config['flag_location'].''.$q_config['flag'][$language].'" alt="'.$q_config['language_name'][$language].'" />'.$q_config['language_name'][$language].'</a></li>';
            }
                    echo '</ul>';
            break;

第2步:你想显示它只需粘贴下面的代码 <div id="language_switcher" class="s_switcher"><?php echo qtrans_generateLanguageSelectCode('bothkria'); ?></div>

第 3 步:CSS 类它是在此处为您提供帮助而设计的,您可以根据您的主题进行更改。`

.s_switcher {
              z-index: 10;
              position: absolute;
              top:6px;
              right:255px;
              font-size: 11px;
              background: #f6f6f6 url(../images/dropdown.gif) no-repeat 100% 6px;
              border-top: 1px solid #e9e9e9;
              border-left: 1px solid #e9e9e9;
              border-right: 1px solid #f6f6f6;
              border-bottom: 1px solid #f6f6f6;
              border-radius: 3px;
              -moz-border-radius: 3px;
              -webkit-border-radius: 3px;
            }
            .s_switcher ul {
              margin-bottom: 0;
            }
            .s_switcher span.s_selected,
            .s_switcher li,
            .s_switcher li a
            {
              display: block;
              height: 22px;
              line-height: 20px;
              text-indent: 7px;
            }
            .s_switcher span.s_selected {
              cursor: default;
              color: #999;
            }
            .s_switcher .s_options {
              cursor: pointer;
              display: none;
            }
            .s_switcher img {
              display: inline;
              margin: -1px 3px 0 0;
              vertical-align: middle;
              margin-left:10px;
            }

            #language_switcher .s_selected, #language_switcher .s_options li a {
                font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
                text-decoration:none;
                font-size:12px;
                color:#333;
                }

            #language_switcher .s_options li a{
                color:#999;}
            #language_switcher .s_options li a:hover{
                color:#333;}

` 完成上传文件并检查。希望这是你想要的。享受

谢谢!

于 2012-02-07T19:05:53.697 回答