如何删除“编辑翻译”#39; Transposh的文字

时间:2016-09-30 03:14:41

标签: css wordpress

我试图删除“编辑翻译”' Transposh的文字。我只是按原样离开翻译。

我试图像这样添加css:

#transposh-3:nth-child(8){display:none;}

localizertextnode{display:none;}

但他们似乎没有工作。有什么想法吗?

我知道这更多地与WordPress有关,但我尝试使用CSS来解决这个问题,这是一种编码语言,所以我认为这可能只是标准。

此外,溢出的流量比WordPress上的流量更多。

1 个答案:

答案 0 :(得分:1)

我知道这是一个非常晚的答案,但我偶然发现了同样的问题。也许它可以在将来帮助其他人。

在插件的源文件中,编辑下一个文件: 可湿性粉剂内容/插件/通过Transposh平移滤波器换的wordpress / WP / transposh_widget.php

在第301- 306行编辑以下代码

if ($this->transposh->is_editing_permitted()) {
  $ref = transposh_utils::rewrite_url_lang_param($_SERVER["REQUEST_URI"], $this->transposh->home_url, $this->transposh->enable_permalinks_rewrite, ($this->transposh->options->is_default_language($this->transposh->target_language) ? "" : $this->transposh->target_language), !$this->transposh->edit_mode);
  echo '<input type="checkbox" name="' . EDIT_PARAM . '" value="1" ' .
  ($this->transposh->edit_mode ? 'checked="checked" ' : '') .
  ' onclick="document.location.href=\'' . $ref . '\';"/>&nbsp;Edit Translation';
 }

并将其更改为

if ($this->transposh->is_editing_permitted()) {
  $ref = transposh_utils::rewrite_url_lang_param($_SERVER["REQUEST_URI"], $this->transposh->home_url, $this->transposh->enable_permalinks_rewrite, ($this->transposh->options->is_default_language($this->transposh->target_language) ? "" : $this->transposh->target_language), !$this->transposh->edit_mode);
  echo '<input type="checkbox" name="' . EDIT_PARAM . '" value="1" ' .
  ($this->transposh->edit_mode ? 'checked="checked" ' : '') .
  ' onclick="document.location.href=\'' . $ref . '\';"/><p class="edittranslationtext">&nbsp;Edit Translation</p>';
}

我只是添加了一个带有类名edittranslationtext的p元素。在您的自定义CSS中,您可以立即添加:

.edittranslationtext {
  display: none;
}