Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2783024
time in Block 10
Closed

Comments

  • hall3008 started the conversation

    Is it possible that instead of the date it says hour or time, because we work so that we have the 20th news of the day, so this way it turns out to be the same date, and it would be more interesting to write the time.

  •  2,495
    PenciDesign replied

    Hi,

    Please go to Plugin > Plugin Editor, then select Penci Framework at Select plugin to edit, then follow the path: shortcodes/block_10/content-items.php

    Find:

    $date_day   = ! $show_updated ? get_the_date( 'd' ) : get_the_modified_date( 'd' );
    $date_month = ! $show_updated ? get_the_date( 'M' ) : get_the_modified_date( 'M' );

    Replace with:

    $date_day = get_the_date('G:i');
    $date_month = get_the_date('d.m');

    Save and done.

    Best Regards,
    PenciDesign.

  • hall3008 replied

    Tnx percect