Skip to main content

Posts

Showing posts from July, 2015

Get Google Calendar Event List in WordPress

<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function  get_calender_events() { $params = array(); /*Get current date*/ $current_date  = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key =  "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url,

Blog page in Wp

<?php /**  * Template Name: Blog Page  *  * This is the template that displays all pages by default.  * Please note that this is the WordPress construct of pages and that  * other "pages" on your WordPress site will use a different template.  *  * @package WordPress  * @subpackage Twenty_Fifteen  * @since Twenty Fifteen 1.0  */ get_header(); ?> <div class="container">  <div class="inner_content_section">      <header class="entry-header"><h1 class="entry-title">Blogs</h1></header>         <div class="entry-content">             <?php                 wp_reset_query();                 $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;                 $args = array('post_type' => 'post',                 'post_status' =>  array( 'publish', 'future' ),                 'paged' => $paged,         

You tube iframe video play one by one conterminously

<?php /**  * Template Name: Video Page  *  * This is the template that displays all pages by default.  * Please note that this is the WordPress construct of pages and that  * other "pages" on your WordPress site will use a different template.  *  * @package WordPress  * @subpackage Twenty_Fifteen  * @since Twenty Fifteen 1.0  */ get_header();      global $wpdb;  ?> <!-- This loads the YouTube IFrame Player API code You tube iframe video play one by one conterminously  --> <script src=" http://www.youtube.com/player_api"></script > <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/jquery.fancybox.js"></script>    <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/jquery.cookie.js"></script>    <link rel='stylesheet'  href='<?php echo esc_url( get_template_directory_uri() ); ?>/js/jquery.fancybox.css' t

All magento customer password change to your custom password

<?php //All magento customer password change to your custom password // save the file in root directory and run that file require_once('app/Mage.php'); //Path to Magento umask(0); Mage::app(); //$testModel = Mage::getModel("service/observer"); //$testModel->getSapCustomers(); function getcustomers() {  /* Get customer model, run a query */  $collection = Mage::getModel('customer/customer')       ->getCollection()       ->addAttributeToSelect('*');  $result = array();  foreach ($collection as $customer) {   $result[] = $customer->toArray();  }  return $result; } $result = getcustomers(); if(count($result) > 0){ foreach($result as $key => $value){ $customerid = $value['entity_id']; $newpassword = "samrat"; $customer = Mage::getModel('customer/customer')->load($customerid); $customer->setPassword($newpassword); $customer->save();  } } ?>

Add video category and video url of Youtube in WP

<?php // add_action( 'admin_menu', 'video_details_page' ); function video_details_page(){     add_menu_page( 'Video Details', 'Video Details', 'manage_options','video_details', 'video_details_options');     add_submenu_page(             'video_details', 'Add Video Category', 'Add Video Category', 'manage_options', 'video_category', 'video_category_display_here'     );  add_submenu_page(             'video_details', 'Edit Video Category', 'Edit Video Category', 'manage_options', 'edit_video_cat', 'edit_video_category'     );   add_submenu_page(             'video_details', 'Add Video', 'Add Video', 'manage_options', 'new_video_details', 'video_options_display_here'     );  add_submenu_page(             'video_details', 'Edit Video', 'Edit Video', 'manage_opti