Plugin Directory

Changeset 3266692


Ignore:
Timestamp:
04/04/2025 04:27:50 AM (12 months ago)
Author:
wptaskforce
Message:

fix compatibility to version 6.7.2

Location:
wp-obituary
Files:
57 added
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • wp-obituary/trunk/admin/classes/class-obituary.php

    r2946083 r3266692  
    107107            'taxonomies'            => array( 'obituary_cat', 'obituary_tag' ),
    108108
    109             'hierarchical'          => false,
     109            'hierarchical'          => true,
    110110
    111111            'public'                => true,
  • wp-obituary/trunk/includes/functions.php

    r2946083 r3266692  
    647647
    648648}*/
     649
     650
     651
     652function obit_date_range_shortcode() {
     653  $dob=get_post_meta( get_the_ID(), 'ff-date_of_birth', true );
     654   
     655    $datedob=date_create( $dob);
     656$datedob= date_format($datedob,"F d, Y");
     657
     658
     659  $dod=get_post_meta( get_the_ID(), 'ff-date_of_death', true );
     660        $datedod=date_create( $dod);
     661$datedod= date_format($datedod,"F d, Y");
     662    // Things that you want to do.
     663$message = '<div id="obit_date_range">'.$datedob.' - '.$datedod.' </div>';
     664 
     665return $message;
     666}
     667
     668add_shortcode('obit_date_range', 'obit_date_range_shortcode');
     669
     670
     671function condolence_count_shortcode() {
     672
     673$message = '<div id="condolence_count"> 3 Condolences </div>';
     674 
     675return $message;
     676}
     677
     678add_shortcode('condolence_count', 'condolence_count_shortcode');
     679
     680function shortcode_post_published_date(){
     681 return get_the_date();
     682}
     683add_shortcode( 'post_published', 'shortcode_post_published_date' );
     684
  • wp-obituary/trunk/readme.txt

    r2983908 r3266692  
    33Plugin Name: WP Obituary Manager
    44Donate link: http://wpobituary.com/
    5 Tags: obituaries, WP Obituary,obituary manager,memorial, tribute, funeral, obituary, funeral home, cremation, crematorium, crematory, funeral press
     5Tags: obituaries, obituary, obituary manager, memorial, tribute, funeral, obituary, funeral home, cremation, crematorium, crematory, funeral press
    66Author: WPTaskforce.com
    77Plugin URI: https://www.wptaskforce.com/
    88Author URI: https://www.wptaskforce.com
    9 Requires at least: 4.2
    10 Tested up to: 6.2.2
    11 Requires PHP: 7.4
    12 Stable tag: 2.0.4
     9Requires at least: 6.2.2
     10Tested up to: 6.7.2
     11Requires PHP: 8.1
     12Stable tag: 2.0.5
    1313License: GPLv3
    1414License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1515
    1616
    17 WP Obituary is free plugin for obituary  and condolences management in your own Wordpress admin dashboard. This obituary management software is for funeral homes, crematory and cemeteries. WP Obituary allows enable you to display online obituaries on your  website and allow visitors to post moderated condolences. This plugin can be modify to make this plugin work for your needs. WP Obituary Manager is developed by  WPTaskforce.com a website and design agency in Iloilo City Philippines.
     17WP Obituary Manager is a free WordPress plugin that simplifies obituary and condolences management directly from your Wordpress admin dashboard. Designed for funeral homes, crematories, and cemeteries, it allows you to display online obituaries and moderate visitor condolences. The plugin's flexible design can be customized to meet your specific needs. Developed by WPTaskforce.com, a web design agency in Iloilo City, Philippines.
    1818
    1919
     
    2222[Demo](https://cremationarrangementwebsite.com/demo/obituaries/)
    2323
    24 WP Obituary is free plugin for managing your obituary and condolences in your own Wordpress admin dashboard. This obituary management software is for funeral homes, crematory and cemeteries. WP Obituary allows enable you to display online obituaries on your  website and allow visitors to post moderated condolences. This plugin can be modify to make this plugin work for your needs. WP Obituary Manager is developed by  WPTaskforce.com a website and design agency in Iloilo City Philippines.
    25 
     24WP Obituary Manager is a free WordPress plugin that simplifies obituary and condolences management directly from your Wordpress admin dashboard. Designed for funeral homes, crematories, and cemeteries, it allows you to display online obituaries and moderate visitor condolences. The plugin's flexible design can be customized to meet your specific needs. Developed by WPTaskforce.com, a web design agency in Iloilo City, Philippines.
    2625
    2726= Core Plugin Features =
     
    3332 
    3433Contact us to import or migrate your existing obituaries into WP Obituary Manager.
    35 Contact us on Skype: arni.cinco
     34Contact us on Teams: [arni.cinco@outlook](https://teams.live.com/l/invite/FEAY6fI1IPmCY6FeAo)
     35
     36
    3637
    3738
     
    8182
    8283== Changelog ==
     84= 2.0.5 =
     85
     86- Fix typo error
     87- Fix issue in 6.7.2
     88
    8389
    8490= 2.0.3 =
  • wp-obituary/trunk/templates/comments.php

    r2946083 r3266692  
    1212$comments_args = array(
    1313    'fields'                => $fields,
    14     'title_reply'           => __('Leave Your Condolenc', 'wp-obituary'),
     14    'title_reply'           => __('Leave Your Condolence', 'wp-obituary'),
    1515    'label_submit'          => __('Submit Condolence', 'wp-obituary'),
    1616    'comment_field'         => '<p class="comment-form-comment"><label for="comment">' . _x( 'Condolence', 'noun' ) .
  • wp-obituary/trunk/wp-obituary.php

    r2983908 r3266692  
    99 * Description: WP Obituary Manager plugin will helps you manage your obituary sites easy.
    1010
    11  * Version: 2.0.4
     11 * Version: 2.0.5
    1212
    1313 * Author: WPTaskForce.com
Note: See TracChangeset for help on using the changeset viewer.