Latest EPIK UPDATE

Homepage Community Forums Epik Theme Support Latest EPIK UPDATE

Tagged: , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #19288
    Serio
    Customer

      Hi,

      Was hoping someone could point me to where I download the latest EPIK update – I don’t see it in my account/downloads area.

      Also, I notice on the newer version that the .entry-title on blog posts is now below the featured image, is this something that’s easily changed? I would like to keep that part of the structure in place if possible.

      Thanks

      #19302
      Serio
      Customer

        Okie, I found the Epik 1.5 update – didn’t realize it would be unmarked and in the place of the original download.

        Now, If someone could help me understand the structural changes made to the blog post format I would really appreciate it:

        Before I update, I’d like to make sure that I am able to keep the .entry-title (Blog Title) above the featured image (like the version 1.4.1 that I currently have). Is this possible? Or would I need to keep my current version to retain this feature?

        Thank you =)

        #19314
        Wes
        Moderator

          “I notice on the newer version that the .entry-title on blog posts is now below the featured image, is this something that’s easily changed? “

          Yes this can be changed. Give me a sec, and let me grab the code right quick…

          You are talking about Single pages right?

          #19315
          Serio
          Customer

            Hi Wes,

            I added display: none; to the image above the .entry-title. which seemed to work.

            If there’s a cleaner way to do it though, that would be great.

            Yes, single blog/pages…

            #19316
            Wes
            Moderator

              The Blog page layout are the same on the “Posts” pages. The title is still above the featured images.

              Here is the old version – http://demo.appfinite.net/test/templates/blog/

              Here is the new version – http://demo.appfinite.net/epik/templates/blog/

              So if you’re referring to the Single Post pages, you can remove the Featured Image from showing up on those pages by removing this code from your functions.php file –

              //* Add featured image above the entry content
              add_action( 'genesis_entry_header', 'epik_featured_photo', 5 );
              function epik_featured_photo() {
              
              	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
              		return;
              
              	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
              		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
              	}
              
              }

              Here is the single post page from the Old version – http://demo.appfinite.net/test/2016/03/13/hello-world/

              And here is the single post page from the New version – http://demo.appfinite.net/epik/2016/02/02/hello-world/

              Notice in the new version the Featured Image is added in (from that code I posted earlier). If you remove that code, it will look just like the old version (which doesn’t include a Featured Image on the Single Post page).

              Is this what you were referring to?

              #19319
              Serio
              Customer

                Perfect, yeah, single post pages – I prefer the old style. Thank you very much for the code.

              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Latest EPIK UPDATE’ is closed to new replies.