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

Author: admin

How to get the post id in wordpress

How to get the post id in wordpress

October 20, 2016October 20, 2016 admin
To get the id of a post, add following code: $id = get_the_ID(); echo $id;   In single page just paste the above code. Otherwise include inside the loop.... Read More
query_post parameters in for wordpress posts

query_post parameters in for wordpress posts

October 20, 2016December 26, 2016 admin
 To get a specific post using post id use: “p=101”. query_posts(“p=101”); To get a specific page using page id use: “page_id=101”. query_posts(“page_id=101&#... Read More
How to enqueue styles and script through word press theme function page

How to enqueue styles and script through word press theme function page

October 20, 2016October 20, 2016 admin
You can include styles and scripts through functions, rather than include inside head section of header file. In function.php file of active theme add script and styles as follows. function fun_name()... Read More
How to import woocommerce dummy datas

How to import woocommerce dummy datas

October 19, 2016 admin
Read More
Plugins help for woocommerce extending features

Plugins help for woocommerce extending features

October 19, 2016November 13, 2016 admin
 Ajax search for products Products start to listed in search column once we enter the leteers YITH WooCommerce Ajax Search https://wordpress.org/plugins/yith-woocommerce-ajax-search/ 2. Product zoom... Read More
assign height of a div to another div using jquery

assign height of a div to another div using jquery

October 13, 2016October 13, 2016 admin
$(“.out3”).css({‘height’:($(window).height()+’px’)});... Read More
How to get screen height, div height using javascript

How to get screen height, div height using javascript

October 13, 2016October 13, 2016 admin
Height of screen (based on our display resolution): Inside document.ready var height=screen.height; alert(height); Height of window:  var screenheight = $(window).height(); alert(screenheight); Heigh... Read More
Adding variable products to woocommerce

Adding variable products to woocommerce

October 12, 2016October 12, 2016 admin
How to add variable products in WooCommerce.... Read More
how to include shortcode inside custom fields of wordpress

how to include shortcode inside custom fields of wordpress

October 6, 2016November 17, 2016 admin
use short code below: <?php echo apply_filters(‘the_content’, get_post_meta($post->ID,’shortcode’, true)); ?> where shortcode field is custom field name.... Read More
Permalink setting in wordpress

Permalink setting in wordpress

October 5, 2016November 17, 2016 admin
Go to WordPress dashboard: select Settings >> Permalink select permalink structure Prefer to choose Post name, so it will be easily readable.... Read More
  • 26 of 26
  • « Previous
  • 1
  • …
  • 24
  • 25
  • 26

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