Recent Posts
Kerem Er

Kerem Er

0 followers·0 following
Showing everything matching: clear

How to change URL query parameter with Javascript

URL query parameters can be easily modified using URLSearchParams and History interfaces: // Construct URLSearchParams object instance from current URL querystring. var queryParams = new URLSearchParams(window.location.search); Set new or modify existing parameter value. queryParams.set("myParam", "myValue"); // Replace current querystring with the new one. history.replaceState(null, null, "?"+queryParams.toString()); Alternatively instead of modifying current history entry... Read More
Posted 1 year and 8 months ago
JavaScript,

WordPress Code List

I collected the parameters I used while creating a WordPress theme on one page. This content contains codes suitable for general use and includes all the necessary general codes when creating a theme. To help others as a WordPress lover…   Title parameter <?php global $page, $paged; bloginfo( 'name' );... Read More
Posted 2 years and 4 months ago
HTML, PHP,

MyBB Değişkenleri

<?php define("IN_MYBB", 1); require_once "./global.php"; if($mybb->user['uid'] == KULLANICI_ID) { echo '<pre>'; var_dump($mybb); echo '</pre>'; } ?> KULLANICI_ID bölümüne sadece sizin görebilmeniz için int şeklinde kullanıcı idsi girilmesi gerekmekte. Read More
Posted 5 years and 4 days ago
PHP,

Programlama için en iyi 5 yazım editörü

1. Atom.io (atom.io) Atom.io GitHub tarafından geliştirilen açık kaynak kodlu ve genel anlamda ortalama 2 yıllık deneyimlerime göre hem Windows hemde Mac üzerinde gayet stabil çalışan bir yazım editörü. Atom'un Artıları Ücretsiz ve Açık Kaynak Kullanımı Kolay Zengin Eklenti ve Tema Marketi Kişiselleştirmeye Müsait Git Kontrolü Atom'un Eksileri Büyük Dosyaları... Read More
Posted 5 years and 2 months ago

Add gag query to BaseChat

By default, sending a message to the authorities via chat, which is set to the "@" tag, sends it without checking if the sender has found an active gag penalty. This issue can cause the player to still annoy the authorities from the authorized chat, even though the player has... Read More
Posted 6 years and 4 months ago
PHP,

WordPress Login sayfasına CSS

Aşağıda ki kodları functions.php içerisine eklemeniz yeterli. function my_login_stylesheet() { echo ' <style type="text/css"> body {background: #FFF !important;max-width: 400px;width: 95%;margin: 0 auto !important} #login {width: 100% !important;padding-top:30%} #login_error #login_error {display: none !important} #login form {box-shadow: none;margin-top:0;background:none} .login .button.wp-hide-pw .dashicons {top: 1.25rem !important;} #login form input {transition:.3s;} #login form input[type="text"]:focus, #login input[type="password"]:focus... Read More
Posted 6 years and 5 months ago
CSS, PHP,