Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Eliot Akira

    (@miyarakira)

    Hello,

    To change the date format, you can use the date_format parameter:

    [field date date_format="Y-m-d"]

    This will display like: 2015-08-13. For details, please see the documentation in the section Main Features -> Content.

    The font style of the post content is up to your theme’s CSS. For example, you can wrap your content with an element class:

    [loop type=post count=3]
      <h2>[field title]</h2>
      <div class="post-text-style">
        [content]
      </div>
    [/loop]

    Then in your theme’s style.css:

    .post-text-style p {
      font-family: serif;
    }
    Thread Starter arcadehoney

    (@arcadehoney)

    Dear Sir,

    Thanks, Very much, my issue is solved. I need one more help from you.

    Plz check this link. https://i57.tinypic.com/2wr0rpl.png

    i am using this shortcode.

    [for each=division]
    [loop type=project count=1]
    [field title-link]
    [field date]
    [/loop]
    [/for]

    I have two custom type categories on page and getting 1 post from 3 categories means divisions.

    But after this there is extra space at bottom of each post title. if i am checking there is 4 tags showing. You will see extra space in post layout. I want space like this link : https://i60.tinypic.com/do87yf.png

    Which i made using simple [loop] shortcode.

    Thanks

    [ No bumping please. ]

    Plugin Author Eliot Akira

    (@miyarakira)

    Hello,

    Sorry it took me a few days to get back to you.

    ..there is extra space at bottom of each post title

    This is probably due to the post content being automatically formatted. To avoid this, you can use the [raw] shortcode (must be enabled in settings):

    [raw]
      ..the whole code section..
    [/raw]

    ..or you can put the code in one line where you don’t want any break lines.

    [for each=division][loop type=project count=1][field title-link]
    [field date][/loop][/for]
    Thread Starter arcadehoney

    (@arcadehoney)

    Thanks Very much for you precious support, my issue is resolved. Thanks very much.

    Plugin Author Eliot Akira

    (@miyarakira)

    I’m glad to hear it. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Date Format’ is closed to new replies.