I’m trying to add the google custom search engine to the header of our discourse forum. I put in the javascript to the head tag and then in the body there is something like <gcse:search linkTarget="_self"></gcse:search> - which will show the google custom search engine.
When I put this in and save it however, it doesn’t show up on the site. I imagine it is being removed by some sort of html filter? (and I should add that by “doesn’t show up” I mean the code itself, not just that the javascript isn’t loading somehow - when I surround it with <!-- -->, the code passes through, but obviously doesn’t work).
This is just a proof of concept, so you’ll have to play around with it to see how/if it can work for your needs. Try adding this to the </head> tab of a theme:
Actually I may have spoke a little too soon… It’s fairly intermittent when it will show up. I had both versions of your script in so I thought this newer one was working (and it did once - minus putting the search bar on top of the menu, etc. - lower half of the header).
The first script appears to work on the front page only if I put in at the body close section - then it shows up at the top of the page oddly.
I’d like to try to get it right below the header bar on top on every page.
Instead of ‘header-contents:after’ - is there a ‘body-contents:before’? that I could try. I went through the api docs, but couldn’t find anything that showed such a declaration…
Sure, if you change it from header-contents:after to just header:after, that should do the trick. You will need to style it with CSS to get it exactly how you want it, but that should get you on track
للأسف، لا يمكنني تقديم الكثير من المساعدة لأنني لم أعد أستخدم GCSE. لقد نجح الأمر معي لفترة من الوقت، لكنني انتقلت بعيدًا عن Google بشكل عام وأزلت الإضافة منذ عدة إصدارات من Discourse. ما تم نشره أعلاه كان يعمل، لكنني اضطررت إلى تجربة العديد من التعديلات لحل مشاكل التمرير اللانهائي والتعامل مع التغييرات التي طرأت على Discourse.
ما الذي جربته؟ وما الأخطاء أو المشاكل التي واجهتها؟
قد تكون هناك خيار أنظف وأسهل لا يتطلب الكثير من الإدارة، وهو ببساطة إضافة زر في الأعلى ينقل إلى صفحة بحث مستضافة على Google، أو صفحة خاصة بك في مكان آخر.
لقد قمت بتنفيذ الكود. أجريت بعض التغييرات على CSS لإنشاء مربع بحث. ولكن، عند النقر على خيار البحث، يتم توجيهي افتراضيًا إلى بحث Discourse وليس إلى بحث Google. هنا علق الأمر.
إذا قمت بإعداده ولكنه يوجه إلى أداة بحث خاطئة، فهذا يعني على الأرجح أن معلمة استعلام البحث (query search parameter) تحتاج إلى تغيير بحيث لا يكون كلاهما q=.
queryParameterName (اسم معلمة الاستعلام): اسم معلمة الاستعلام — على سبيل المثال، q (الافتراضي) أو query. سيتم تضمين هذا في عنوان URL (على سبيل المثال، Example Domain).
لذلك، يجب عليك إعداد GCSE لاستخدام اسم معلمة استعلام مختلف، مثل qr=. عندئذٍ، عند تقديم البحث، سيجيب GCSE فقط لأن Discourse يتوقع أن تكون المعلمة q=.
أنا أستخدم سمة Overlay لـ GCSE، وأرغب في عرض نتائج البحث على نفس الصفحة وليس في صفحة مختلفة، حيث لا يمكنني استخدام تنسيق صفحتين مع discourse. ومع ذلك، لا يزال زر البحث يضيف سلسلة الاستعلام “?search=search+term”.
هذا لا يؤدي إلى ظهور أي نتائج بحث، حيث يُظهر الرسالة “لا توجد مواضيع حديثة”.