مرحباً،
لا يمكنك تعديل سمة بعيدة مباشرةً منذ Restrict editing of remote themes.
بدلاً من تعديلها مباشرة، يمكنك إنشاء مكون جديد يمكنك إرفاقه بالسمة.
أفترض أنك تريد إضافة أيقونة إلى زر التسجيل في الرأس.
اتبع هذه الخطوات لتحقيق ذلك:
-
انتقل إلى
/admin/customize/themes/
التخصيص ← السمات -
انقر فوق علامة التبويب المكونات ثم زر تثبيت
Install -
في النافذة المنبثقة، انقر فوق زر إنشاء جديد
Create new واكتب اسم المكون الجديد.
-
انقر فوق زر إنشاء
Create. -
تم إنشاء المكون. الآن حدد سمة FKB Pro لتفعيلها.
-
انقر فوق زر تعديل CSS/HTML
Edit CSS/HTML.
-
انقر فوق علامة التبويب الرأس والصق الكود أدناه في هذا القسم.
<script type="text/discourse-plugin" version="0.8.13">
api.reopenWidget("header-buttons", {
tagName: "span.header-buttons",
html(attrs) {
if (this.currentUser) {
return;
}
const buttons = [];
if (attrs.canSignUp && !attrs.topic) {
buttons.push(
this.attach("button", {
label: "sign_up",
className: "btn-primary btn-small sign-up-button",
action: "showCreateAccount",
icon: "user"
})
);
}
buttons.push(
this.attach("button", {
label: "log_in",
className: "btn-primary btn-small login-button",
action: "showLogin",
icon: "user"
})
);
return buttons;
}
});
</script>
- انقر فوق زر حفظ
Save



