Skip to content
  • Home
  • About
  • Contact

How To Find It

Tips For Program

  • Home
  • HTML
    • HTML
    • Jquery & Javascript
    • css
  • Php
  • sql
  • wordpress
    • woocommerce
      • Woocommerce Hooks
    • Plugin developement Tips
  • General
How to include styles and scripts on wordpress admin pages?

How to include styles and scripts on wordpress admin pages?

July 16, 2019 admin
How do I add CSS and JavaScript to WordPress admin area? In  “admin_enqueue_scripts” hook used to include scripts and css in admin area add_action(‘admin_enqueue_scripts’, fun... Read More
Page Template dropdown missing from page attribute in wordpress

Page Template dropdown missing from page attribute in wordpress

October 12, 2018 admin
Page Template dropdown missing from page attribute in wordpress: Either you are are added any page template or format is not correct while adding page template name It is because of space after the pa... Read More
How to add a logo uploading field in customize settings in wordpress

How to add a logo uploading field in customize settings in wordpress

October 3, 2018 admin
How to add a logo uploading field in theme customize settings in wordpress While creating our own theme, we need to add a logo adding field in in customize settings of theme (under appearance). add_ac... Read More
How to add a new page in wordpress admin

How to add a new page in wordpress admin

October 3, 2018 admin
In functions.php  file, Add following code add_action( ‘admin_menu’, ‘mycustompagemenu’ ); function mycustompagemenu(){ add_menu_page( __( ‘My own Settings’, ̵... Read More
Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.

Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.

July 30, 2018 admin
In WordPress themes showing error like : Broken Theme as below : Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style... Read More
Click function display and hide a div with jquery

Click function display and hide a div with jquery

July 18, 2018 admin
How to show/hide div content on click event (jquery)? $( document ).ready(function() { $(‘.searchbutton’).click(function(){ $(“.searchbox”).toggle(); }); });... Read More
How to create a instance of aws s3 class to upload files using php?

How to create a instance of aws s3 class to upload files using php?

July 12, 2018 admin
if (!class_exists(‘S3’)) require_once ‘s3.php’; // include s3.php file if (!defined(‘awsAccessKey’)) define(‘awsAccessKey’, ‘keyhere’); //aw... Read More
Difference between parse error and fatal error in php?

Difference between parse error and fatal error in php?

July 10, 2018 admin
Difference between parse error(syntax error) and fatal errors: Parse error or syntax error occurs if any syntax mistakes in code, example missing braces, semi column, quotes etc.. Fatal error occurs w... Read More
How to create and access buckets in amazon s3?

How to create and access buckets in amazon s3?

July 10, 2018July 12, 2018 admin
How to create and access buckets in amazon s3 with php? In amazon s3 storage, files(objects) are stored inside buckets,we need to create buckets to store the objects. To create buckets s3 provide diff... Read More
What is amazon s3?

What is amazon s3?

July 10, 2018July 10, 2018 admin
Amazon s3 or simple storage system is storage service by aws. Here files are stored as objects. Objects are stored in buckets. so we need to create buckets first and then store objects inside it. we c... Read More
  • 1 of 26
  • 1
  • 2
  • 3
  • …
  • 26
  • Next »

Recent Posts

  • How to include styles and scripts on wordpress admin pages?
  • Page Template dropdown missing from page attribute in wordpress
  • How to add a logo uploading field in customize settings in wordpress
  • How to add a new page in wordpress admin
  • Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.

Categories

  • css (13)
    • Bootstrap (2)
  • General (13)
  • HTML (10)
  • Jquery & Javascript (39)
    • OOP javascript (11)
  • Php (39)
    • Amzon s3 and Php (3)
  • sql (2)
  • wordpress (154)
    • Hooks & Filters (1)
    • Plugin developement Tips (7)
    • woocommerce (50)
      • Woocommerce Hooks (17)
Theme Designed by InkHive. howtofindit©2021