Creating Conditions and Logic For Any Sections, Visibility Logic for Elementor
July 31, 2022On elementor we dont really have a logic system for sections or widgets. Yes we can make templates with Pro…Customizer Register WordPress Theme Setting Simple
July 23, 2022Very simple example... function sinan_customizer_register($wp_customize){ $wp_customize->add_section( 'section_name', array( 'title' => 'Text Title', 'description' => 'Text descripotion sometin hee'…WordPress Register Post Type
July 23, 2022Creating a new post type is really easy you don't need plugins to do it. Just add this post…PHP Check If Elementor is Used in The Page or Post
July 20, 2022PHP Check If Elementor is Used in The Page or Post With this 2 php controls you can check…WordPress Create User and Add Role, Lost Password Cant Login
July 16, 2022If you cannot log in to your site, you cant reset your password and you have your FTP connection this…How to Install Redis on Ubuntu Linux, WordPress Object Cache Redis
July 16, 2022My favorite caching solution lately is Redis. It is crazy efficient and fast. I am using Redis on Ubuntu 20.04…WordPress File Permission Problem Bypass FTP Update Theme Plugins
July 16, 2022WordPress File Permission Problem Bypass FTP Update Theme Plugins add this line to the wp-config.php file define('FS_METHOD','direct'); some…WordPress Cloudflare Redirect SSL Problem Fix Solution
July 12, 2022Add this to your wp-config.php. That's it... $_SERVER['HTTPS'] = 'on'; There is more ways to fix hosting ssl/Cloudflare ssl problem…WordPress WP Query Loop , WP_Query
June 7, 2022WP_Query is the advanced way to get posts, filter posts, and write custom queries. You can even write a SQL…WordPress Query Loop , Query_Posts
June 7, 2022Another way to get posts is using the query_posts() function. You can filter the posts with any type, category, author,…