Wednesday, 5 February 2025

wp table list in wordpress

 List.php code 

<?php

if(!class_exists('WP_List_Table')){

    require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );

}


class Custom_Listings_Table extends WP_List_Table {

    function __construct(){

        global $status, $page;

                

        //Set parent defaults

        parent::__construct( array(

                'singular' => 'listing',

                'plural'   => 'listings',

                'ajax'     => false

        ) );

        

    }

function search_box( $text, $input_id ) {

    if ( empty( $_REQUEST['s'] ) && !$this->has_items() ) {

        return;

    }


    $input_id = $input_id . '-search-input';


    ?>

    <p class="search-box">

        <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label>

        <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php echo esc_attr( $_REQUEST['s'] ?? '' ); ?>" />

        <?php submit_button( $text, 'button', '', false, array('id' => 'search-submit') ); ?>

    </p>

    <?php

}

    function column_default($item, $column_name){

        switch($column_name){

               case 'ID':

                return $item[$column_name];  

case 'first_name':   

return $item[$column_name]; 

case 'surname':  

return $item[$column_name];

case 'email':  

return $item[$column_name];

case 'phone':  

return $item[$column_name];

case 'action':  

return $item[$column_name];

            default:

                return print_r($item,true); //Show the whole array for troubleshooting purposes

        }

    }

    function column_title($item){

        

        //Build row actions

        $actions = array(

            'Delete'      => sprintf('<a href="?page=%s&action=%s&movie=%s">Delete</a>',$_REQUEST['page'],'delete',$item['ID']),

        );

/* array(

            'pending'      => sprintf('<a href="?page=%s&action=%s&movie=%s">Pending</a>',$_REQUEST['page'],'pending',$item['ID']),

            'completed'    => sprintf('<a href="?page=%s&action=%s&movie=%s">Completed</a>',$_REQUEST['page'],'completed',$item['ID']),

        ); */

        

        //Return the title contents

        return sprintf('%1$s%3$s',

            /*$1%s*/ $item['domain'],

            /*$2%s*/ $item['ID'],

            /*$3%s*/ $this->row_actions($actions)

        );

    }

    function column_cb($item){

        return sprintf(

            '<input type="checkbox" name="%1$s[]" value="%2$s" />',

            /*$1%s*/ $this->_args['singular'],  //Let's simply repurpose the table's singular label ("movie")

            /*$2%s*/ $item['ID']                //The value of the checkbox should be the record's id

        );

    }

    function get_columns(){

        $columns = array(

               'cb'=> '<input type="checkbox" />',

                'first_name'  => 'First Name',

                'surname'     => 'Surname',

                'email'       => 'Email',

                'phone'       => 'Phone',

                'action'   => 'Action'

        );

        return $columns;

    }


    function get_sortable_columns() {

        $sortable_columns = array(

            'doamin' => array('domain',false),

);

        return $sortable_columns;

    }


    function get_bulk_actions() {

        $actions = array(

            'delete'    => 'Delete'

        );

        return $actions;

    }


    function process_bulk_action() {

        

        //Detect when a bulk action is being triggered...

        if( 'delete'===$this->current_action() ) {

           foreach($_GET['listing'] as $fID){

global $wpdb;

$table = $wpdb->prefix."custom_form_data_new";

//$wpdb->delete($table, array( 'id' => $fID ));

}

echo '<script>window.location.href = "../wp-admin/admin.php?page=custom-form-listing";</script>';

            //wp_die('Items deleted (or they would be if we had items to delete)!');

        }   


if( 'pending'===$this->current_action() OR 'completed'===$this->current_action()) {

global $wpdb;

$table_name = $wpdb->prefix."custom_form_data_new";

//$ereminders = $wpdb->query($wpdb->prepare("UPDATE ".$table_name." SET status='".$_GET['action']."' WHERE id='".$_GET['movie']."'"));

echo '<script>window.location.href = "../wp-admin/admin.php?page=custom-form-listing";</script>';

        }

        

    }

function prepare_items() {

    global $wpdb; //This is used only if making any database queries

    $per_page = 15;

    $columns = $this->get_columns();

    $hidden = array();

    $sortable = $this->get_sortable_columns();

    $this->_column_headers = array($columns, $hidden, $sortable);

    $this->process_bulk_action();


     $table = $wpdb->prefix."custom_form_data_new";

     $current_page = $this->get_pagenum();

     $offset = ($current_page - 1) * $per_page;

$search = isset($_REQUEST['s']) ? sanitize_text_field($_REQUEST['s']) : '';


        $example_datas = [];

        //$total_items = $wpdb->get_var("SELECT COUNT(*) FROM $table_name");

  $where_sql = "";

            if (!empty($search)) {

                $where_sql = "WHERE first_name LIKE '%$search%' OR surname LIKE '%$search%' OR email LIKE '%$search%'";

            }

//$getalls = $wpdb->get_results("SELECT * FROM $table LIMIT $per_page OFFSET $offset", ARRAY_A);

          // Fetch filtered data

            $query = "SELECT * FROM $table $where_sql LIMIT $per_page OFFSET $offset";

            $getalls = $wpdb->get_results($query, ARRAY_A);


foreach($getalls as $getall){

$example_datas[] = [

                'id'    => '1',

                'first_name'  => $getall['first_name'],

                'surname'     => $getall['surname'],

                'email'       => $getall['email'],

                'phone'       => $getall['phone'],

                'action'   => 'See All Data'

                ];

}

    $data = $example_datas;


    function usort_reorder($a, $b) {

        $orderby = (!empty($_REQUEST['orderby'])) ? $_REQUEST['orderby'] : 'title';

        $order = (!empty($_REQUEST['order'])) ? $_REQUEST['order'] : 'asc';

        $result = strcmp($a[$orderby], $b[$orderby]);

        return ($order === 'asc') ? $result : -$result;

    }

    @usort($data, 'usort_reorder');

    $current_page = $this->get_pagenum();

    @$total_items = count($data);


    @$data = array_slice($data, (($current_page - 1) * $per_page), $per_page);

    $this->items = $data;

    $this->set_pagination_args( array(

        'total_items' => $total_items,

        'per_page'    => $per_page,

        'total_pages' => ceil($total_items / $per_page)

    ));

}


}

?>

Main file 

function custom_form_listing_menu() {
    add_menu_page(
        'Custom Form Data',     // Page title
        'Form Submissions',     // Menu title
        'manage_options',       // Capability
        'custom-form-listing',  // Menu slug
        'render_custom_form_list_page', // Callback function
        'dashicons-list-view',  // Icon
        20                      // Position
    );
}
add_action('admin_menu', 'custom_form_listing_menu');

function render_custom_form_list_page() {
    require_once plugin_dir_path(__FILE__) . 'list.php';
//include 'list.php';

    $list_table = new Custom_Listings_Table();
    $list_table->prepare_items();

    echo '<div class="wrap"><h1>Custom Form Submissions</h1>';
        // Add the search box
    echo '<form method="get">';
    echo '<input type="hidden" name="page" value="' . esc_attr($_REQUEST['page']) . '" />';
    $list_table->search_box('Search Listings', 'search_id');
    echo '</form>';
    echo '<form method="post">';
    $list_table->display();
    echo '</form></div>';
}

Monday, 3 February 2025

nocache headers in the template issue

 <?php

header('Cache-Control: no-cache, no-store, must-revalidate');

header('Pragma: no-cache');

header('Expires: 0');

?>


Friday, 31 January 2025

Add meta boxes for Video url and text multiple in wordpress using code

 
function business_add_custom_metaboxes() {

    add_meta_box(

        'business_video_url',

        'Video',

        'business_video_url_callback',

        'business',

        'normal',

        'high'

    );
}

add_action('add_meta_boxes', 'business_add_custom_metaboxes');


function business_video_url_callback($post) {

    $videos = get_post_meta($post->ID, 'business_video_urls', true);

    if (!is_array($videos)) {

        $videos = []; // Ensure $videos is an array

    }

  echo '<div id="business-video-container">';

    foreach ($videos as $video) {

        echo '<input type="text" name="business_video_urls[]" value="' . esc_attr($video) . '" style="width:100%; margin-bottom:10px;" />';

    }

    echo '</div>';

    

    echo '<button type="button" id="add-video-url">Add Video URL</button>';

    

    echo '<script>

        document.getElementById("add-video-url").addEventListener("click", function() {

            var container = document.getElementById("business-video-container");

            var input = document.createElement("input");

            input.type = "text";

            input.name = "business_video_urls[]";

            input.style = "width:100%; margin-bottom:10px;";

            container.appendChild(input);

        });

    </script>';

}


function business_save_metaboxes($post_id) {

    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;

    if (!current_user_can('edit_post', $post_id)) return;


    if (isset($_POST['business_video_urls'])) {

        $video_urls = array_map('esc_url_raw', array_filter($_POST['business_video_urls']));

        update_post_meta($post_id, 'business_video_urls', $video_urls);

    }

}
add_action('save_post', 'business_save_metaboxes');


Monday, 28 October 2024

Woocommerce product review tab rename on single product page

 add_filter('woocommerce_product_tabs', 'change_additional_information_tab_title', 98);

function change_additional_information_tab_title($tabs) {

    if ( isset($tabs['additional_information']) ) {

        $tabs['additional_information']['title'] = __('Ytterligere informasjon', 'tab-additional_information');

    }

if ( isset($tabs['reviews']) ) {

        $tabs['reviews']['title'] = __('Anmeldelser', 'reviews'); // Change 'Your New Review Title' to your desired title

    }

    return $tabs;

}

Checkbox in metabox with extra field save data

 // Hook into the 'add_meta_boxes' action

add_action('add_meta_boxes', 'custom_post_type_tags_as_checkboxes', 10, 2);


function custom_post_type_tags_as_checkboxes($post_type, $post) {

    if ($post_type == 'properties') { // Change 'your_custom_post_type' to your custom post type slug

        remove_meta_box('tagsdiv-es_tag', $post_type, 'side'); // Remove the default tags metabox

        remove_meta_box('tagsdiv-es_amenity', $post_type, 'side'); // Remove the default tags metabox

        remove_meta_box('tagsdiv-es_feature', $post_type, 'side'); // Remove the default tags metabox     

remove_meta_box('tagsdiv-es_neighborhood', $post_type, 'side'); // Remove the default tags metabox

remove_meta_box('tagsdiv-es_category', $post_type, 'side'); // Remove the default tags metabox

        add_meta_box('tagsdiv-post_tag', __('Tags'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'post_tag'));

// Add custom checkboxes for Amenity taxonomy

        add_meta_box('tagsdiv-es_amenity', __('Amenity'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_amenity'));


// Add custom checkboxes for Features taxonomy

        add_meta_box('tagsdiv-es_feature', __('Feature'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_feature'));

// Add custom checkboxes for es_neighborhood taxonomy

        add_meta_box('tagsdiv-es_neighborhood', __('Neighborhoods'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_neighborhood'));


// Add custom checkboxes for es_category taxonomy

        add_meta_box('tagsdiv-es_category', __('Categories'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_category'));

    }

}


// Render checkboxes instead of the default tag input

// Render checkboxes with an option to add new terms

function render_tags_as_checkboxes($post, $box) {

    $taxonomy = $box['args']['taxonomy'];

    $terms = get_terms(array(

        'taxonomy' => $taxonomy,

        'hide_empty' => false,

    ));


    $post_terms = wp_get_post_terms($post->ID, $taxonomy, array('fields' => 'ids'));


    if (!empty($terms)) {

        echo '<div style="max-height: 150px; overflow-y: auto; border: 1px solid #ddd; padding: 5px;">';

        foreach ($terms as $term) {

            $checked = in_array($term->term_id, $post_terms) ? ' checked="checked"' : '';

            echo '<label style="display: block; margin: 3px 0;"><input type="checkbox" name="tax_input[' . $taxonomy . '][]" value="' . $term->term_id . '"' . $checked . '> ' . esc_html($term->name) . '</label>';

        }

        echo '</div>';

    }

    

    // Add new term field

    echo '<div style="margin-top: 10px;">

            <input type="text" id="new_' . $taxonomy . '_term" placeholder="Add new term" style="width: 70%;"/>

            <button type="button" class="button add-term" data-taxonomy="' . $taxonomy . '">Add</button>

          </div>';


    // JavaScript for AJAX request

    echo "<script>

        jQuery(document).ready(function($) {

            $('.add-term').click(function() {

                var taxonomy = $(this).data('taxonomy');

                var newTerm = $('#new_' + taxonomy + '_term').val();


                if (newTerm) {

                    $.ajax({

                        url: ajaxurl,

                        type: 'POST',

                        data: {

                            action: 'add_new_term',

                            taxonomy: taxonomy,

                            term_name: newTerm

                        },

                        success: function(response) {

                            if (response.success) {

                                location.reload(); // Reload to see the new term

                            } else {

                                //alert('Error adding term: ' + response.data);

                            }

                        }

                    });

                }

            });

        });

    </script>";

}



// Save the selected terms when the post is saved

add_action('save_post', 'save_custom_tag_checkboxes');


function save_custom_tag_checkboxes($post_id) {

    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {

        return;

    }


    if (isset($_POST['tax_input']['post_tag'])) {

        $tag_ids = array_map('intval', $_POST['tax_input']['post_tag']);

        wp_set_post_terms($post_id, $tag_ids, 'post_tag');

    } else {

        wp_set_post_terms($post_id, array(), 'post_tag'); // Clear tags if none are selected

    }

    // Save Amenity

    if (isset($_POST['tax_input']['es_amenity'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_amenity']);

        wp_set_post_terms($post_id, $feature_ids, 'es_amenity');

    } else {

        wp_set_post_terms($post_id, array(), 'es_amenity'); // Clear features if none are selected

    }

 

// Save Features

    if (isset($_POST['tax_input']['es_feature'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_feature']);

        wp_set_post_terms($post_id, $feature_ids, 'es_feature');

    } else {

        wp_set_post_terms($post_id, array(), 'es_feature'); // Clear features if none are selected

    }

// Save es_neighborhood

    if (isset($_POST['tax_input']['es_neighborhood'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_neighborhood']);

        wp_set_post_terms($post_id, $feature_ids, 'es_neighborhood');

    } else {

        wp_set_post_terms($post_id, array(), 'es_neighborhood'); // Clear features if none are selected

    }

// Save es_neighborhood

    if (isset($_POST['tax_input']['es_category'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_category']);

        wp_set_post_terms($post_id, $feature_ids, 'es_category');

    } else {

        wp_set_post_terms($post_id, array(), 'es_category'); // Clear features if none are selected

    }

}


add_action('wp_ajax_add_new_term', 'add_new_term');


function add_new_term() {

    if (!isset($_POST['taxonomy']) || !isset($_POST['term_name'])) {

        wp_send_json_error('Invalid request');

    }


    $taxonomy = sanitize_text_field($_POST['taxonomy']);

    $term_name = sanitize_text_field($_POST['term_name']);


    // Insert the term

    $new_term = wp_insert_term($term_name, $taxonomy);


    if (is_wp_error($new_term)) {

        wp_send_json_error($new_term->get_error_message());

    } else {

        wp_send_json_success($new_term);

    }

}


Convert meta box in checkbox in wordpress

 // Hook into the 'add_meta_boxes' action

add_action('add_meta_boxes', 'custom_post_type_tags_as_checkboxes', 10, 2);


function custom_post_type_tags_as_checkboxes($post_type, $post) {

    if ($post_type == 'properties') { // Change 'your_custom_post_type' to your custom post type slug

        remove_meta_box('tagsdiv-es_tag', $post_type, 'side'); // Remove the default tags metabox

        remove_meta_box('tagsdiv-es_amenity', $post_type, 'side'); // Remove the default tags metabox

        remove_meta_box('tagsdiv-es_feature', $post_type, 'side'); // Remove the default tags metabox     

remove_meta_box('tagsdiv-es_neighborhood', $post_type, 'side'); // Remove the default tags metabox

remove_meta_box('tagsdiv-es_category', $post_type, 'side'); // Remove the default tags metabox

        add_meta_box('tagsdiv-post_tag', __('Tags'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'post_tag'));

// Add custom checkboxes for Amenity taxonomy

        add_meta_box('tagsdiv-es_amenity', __('Amenity'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_amenity'));


// Add custom checkboxes for Features taxonomy

        add_meta_box('tagsdiv-es_feature', __('Feature'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_feature'));

// Add custom checkboxes for es_neighborhood taxonomy

        add_meta_box('tagsdiv-es_neighborhood', __('Neighborhoods'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_neighborhood'));


// Add custom checkboxes for es_category taxonomy

        add_meta_box('tagsdiv-es_category', __('Categories'), 'render_tags_as_checkboxes', $post_type, 'side', 'default', array('taxonomy' => 'es_category'));

    }

}


// Render checkboxes instead of the default tag input

// Render checkboxes with an option to add new terms

function render_tags_as_checkboxes($post, $box) {

    $taxonomy = $box['args']['taxonomy'];

    $terms = get_terms(array(

        'taxonomy' => $taxonomy,

        'hide_empty' => false,

    ));


    $post_terms = wp_get_post_terms($post->ID, $taxonomy, array('fields' => 'ids'));


    if (!empty($terms)) {

        echo '<div style="max-height: 150px; overflow-y: auto; border: 1px solid #ddd; padding: 5px;">';

        foreach ($terms as $term) {

            $checked = in_array($term->term_id, $post_terms) ? ' checked="checked"' : '';

            echo '<label style="display: block; margin: 3px 0;"><input type="checkbox" name="tax_input[' . $taxonomy . '][]" value="' . $term->term_id . '"' . $checked . '> ' . esc_html($term->name) . '</label>';

        }

        echo '</div>';

    }

}



// Save the selected terms when the post is saved

add_action('save_post', 'save_custom_tag_checkboxes');


function save_custom_tag_checkboxes($post_id) {

    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {

        return;

    }


    if (isset($_POST['tax_input']['post_tag'])) {

        $tag_ids = array_map('intval', $_POST['tax_input']['post_tag']);

        wp_set_post_terms($post_id, $tag_ids, 'post_tag');

    } else {

        wp_set_post_terms($post_id, array(), 'post_tag'); // Clear tags if none are selected

    }

    // Save Amenity

    if (isset($_POST['tax_input']['es_amenity'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_amenity']);

        wp_set_post_terms($post_id, $feature_ids, 'es_amenity');

    } else {

        wp_set_post_terms($post_id, array(), 'es_amenity'); // Clear features if none are selected

    }

 

// Save Features

    if (isset($_POST['tax_input']['es_feature'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_feature']);

        wp_set_post_terms($post_id, $feature_ids, 'es_feature');

    } else {

        wp_set_post_terms($post_id, array(), 'es_feature'); // Clear features if none are selected

    }

// Save es_neighborhood

    if (isset($_POST['tax_input']['es_neighborhood'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_neighborhood']);

        wp_set_post_terms($post_id, $feature_ids, 'es_neighborhood');

    } else {

        wp_set_post_terms($post_id, array(), 'es_neighborhood'); // Clear features if none are selected

    }

// Save es_neighborhood

    if (isset($_POST['tax_input']['es_category'])) {

        $feature_ids = array_map('intval', $_POST['tax_input']['es_category']);

        wp_set_post_terms($post_id, $feature_ids, 'es_category');

    } else {

        wp_set_post_terms($post_id, array(), 'es_category'); // Clear features if none are selected

    }

}

Thursday, 26 September 2024

Create testimonials custom post type in wordpress

function custom_testimonial_post_type() {

    $labels = array(

        'name'               => 'Testimonials',

        'singular_name'      => 'Testimonial',

        'menu_name'          => 'Testimonials',

        'name_admin_bar'     => 'Testimonial',

        'add_new'            => 'Add New',

        'add_new_item'       => 'Add New Testimonial',

        'new_item'           => 'New Testimonial',

        'edit_item'          => 'Edit Testimonial',

        'view_item'          => 'View Testimonial',

        'all_items'          => 'All Testimonials',

        'search_items'       => 'Search Testimonials',

        'not_found'          => 'No Testimonials found.',

        'not_found_in_trash' => 'No Testimonials found in Trash.',

    );

    

    $args = array(

        'labels'             => $labels,

        'public'             => true,

        'publicly_queryable' => true,

        'show_ui'            => true,

        'show_in_menu'       => true,

        'query_var'          => true,

        'rewrite'            => array( 'slug' => 'testimonials' ),

        'capability_type'    => 'post',

        'has_archive'        => true,

        'hierarchical'       => false,

        'menu_position'      => null,

        'supports'           => array( 'title', 'editor', 'thumbnail' ),

    );

    

    register_post_type( 'testimonial', $args );

}

add_action( 'init', 'custom_testimonial_post_type' );


add_shortcode( 'testimonials', 'wpdocs_testimonials_func' ); 


function wpdocs_testimonials_func( $atts ) {

    $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;

    $args = array(

        'post_type' => 'testimonial',

        'posts_per_page' => 5, // Number of testimonials per page

        'paged' => $paged

    );

    $testimonial_query = new WP_Query( $args );


    if ( $testimonial_query->have_posts() ) :

        while ( $testimonial_query->have_posts() ) : $testimonial_query->the_post();


$image_url = get_the_post_thumbnail_url(get_the_ID(), 'full'); 

     

 endwhile;


        // Pagination

        $total_pages = $testimonial_query->max_num_pages;

$total_posts = $testimonial_query->found_posts; 

$current_post_count = $testimonial_query->post_count; 

        if ( $total_pages > 1 ) {

echo '<div class="paginationcustom manjeet">';

            $current_page = max( 1, get_query_var( 'paged' ) );

    echo '<ul class="custom-pagination">';


    // Generate pagination links

    $pagination_links = paginate_links( array(

        'base'      => get_pagenum_link( 1 ) . '%_%',

        'format'    => 'page/%#%',

        'current'   => $current_page,

        'total'     => $total_pages,

        'prev_text' => '‹', // Previous arrow

        'next_text' => '›', // Next arrow

        'type'      => 'array', // Output as array to customize

    ));


    // Loop through the links and add custom class

    foreach ( $pagination_links as $link ) {

        if ( strpos( $link, 'current' ) !== false ) {

            echo '<li class="active">' . $link . '</li>'; // Add active class

        } else {

            echo '<li>' . $link . '</li>';

        }

    }


    echo '</ul>';

    echo '<div class="results-count">';

    echo 'Showing ' . $current_post_count . ' of ' . $total_posts . ' results';

    echo '</div>';

echo '</div>';

        }


        wp_reset_postdata();

    else :

        echo '<p>no.testimonial found</p>';

    endif;

    ?>

  </div>

</div>

<?php }


How can i put "posted x minutes ago on my posts?

 Just place this code in your functions.php

function time_ago( $type = 'post' ) {
    $d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';

    return human_time_diff($d('U'), current_time('timestamp')) . " " . __('ago');

}

To use it anywhere in your theme (for example, on single.php), place this code where you want the "time ago" feature displayed:

<?php echo time_ago(); ?>