Comic Easel

Plugin your WebComic
  • Home
  • About
  • Archive
  • Download
  • FAQs
    • HOW TO
      • Multiple Comics Per Post
    • Installation
      • Integration
        • single.php Edits
      • Migrating
        • CP2CE Plugin
    • Reference
      • Action List
      • Constants
    • Shortcodes
      • cast-page
      • comic-archive
    • Showcase
    • Troubleshoot
  • Forum
Twitter Email RSS
Home » Page 3

Comic Easel 1.0.10, 1.0.11 AND 1.0.12

Jul05
by Frumph on July 5, 2012 at 4:46 am
Posted In: Comic Easel (Plugin)

1.0.11
Removed the URL Rewrite that was put in, in 1.0.10 (it’s behaving badly)
NOTE: Go to settings -> permalinks and click save after upgrading.

Also fixed an RSS issue that persisted through 1.0.10 as well.

Update 1.0.12 ^^
Made a new configuration page for the archive toggle to include comics with the blog in with the archive.
That “fix” for RSS issue was written wrong so for real fixed it.

└ Tags: Release
 Comment 

Comic Easel 1.0.9

Jul01
by Frumph on July 1, 2012 at 5:07 pm
Posted In: Comic Easel (Plugin)

In Comic Easel 1.0.9 the following were addressed:

  • hovertext from old ComicPress archives is also checked when checking for comic-hovertext
  • Password Protected comics are now not shown in archives and feeds
  • new URL rewrite for dates for the comics,  example:  http://comiceasel.com/comic/2012/  will show all comics that were made in 2012, /comic/2012/06/  will show all comics in 2012 in June and so on.   You will need to go to Settings -> Permalinks and click save once to enable this to work.

Also in this code is the start of the Import Page, which is currently not showing but if anyone was wondering what the extra code is for.

If anyone finds any bugs, please report them.

└ Tags: Release
 Comment 

Comic Easel 1.8 + Updates

Jun24
by Frumph on June 24, 2012 at 4:25 am
Posted In: Comic Easel (Plugin)

Updated 1.0.8 – Get fresh version from REPO.

Galleries can be made for each comic post. With or without the featured image, you can setup comic galleries for the individual comic post, so you can have as many comics per post display with gallery images displaying in the post area.  Each comic post has toggles in it for displaying galleries of comics.  Default is off.

Can now password protect comics, will stop display of comics/galleries & post info – until password entered.

New action location comic-post-extras – Shows the “related comics” information, list of 5 possible comics that relate to this comic by characters, locations and tags.

The thumbnails for RSS and Archives can now bet set with custom image sizes created by the theme.

Can now set individual bio information per character,  cast-page character=character_slug

New comic blog post widget and updated French Translation (looking for more languages)

Fixed it so you can create a template for the front page and it will act as if it is the front page for the comic. (home)

Chapter Navigation AND Ordering.

└ Tags: Release, Update
5 Comments

CP2CE 1.3

Jun20
by Frumph on June 20, 2012 at 4:33 am
Posted In: CP2CE (Plugin)

There was a bug in 1.2 where the encoded filename returned back and wrote as encoded, instead of decoding the url string appropriately, this made it so things like spaces returned back as %20′s.

I added the decode, all should be well in the land of oz.

- Phil

└ Tags: Release
3 Comments

Adding another button to the Navigation Widget

Jun19
by Frumph on June 19, 2012 at 12:59 am
Posted In: Code Snippets

These function examples are meant for people who have a minimal grasp of adding code to their functions.php, preferably in the child theme.

Comic Easel has an action location inside the navigation widget for the center section of it. In this section you can add additional buttons or text clicks like a buy now button or even a share click link.

add_action('inside-comic-navigation', 'custom_insert_into_navigation');

function custom_insert_into_navigation() { ?>
<script type="text/javascript" language="javascript">
function toggle() {
    var ele = document.getElementById("Share");
    var text = document.getElementById("displayShare");
    if(ele.style.display == "block") {
        ele.style.display = "none";
        text.innerHTML = "show";
    } else {
        ele.style.display = "block";
        text.innerHTML = "hide";
    }
} 
</script>
<div><a id="displayShare" href="javascript:toggle();">Share</a></div>
<?php }

This is an example of adding a function to execute into the inside-comic-navigation action location. What it does is output the script and a href to toggle the javascript necessary to open the CSS Share Element.

You could even do something really simple:

add_action('inside-comic-navigation', 'custom_insert_into_navigation_forum_link');

function custom_insert_into_navigation_forum_link() { ?>
      <a class="navi navi-forum" title="Frumph.NET Forums" href="http://forum.frumph.net/">Forum</a>
<?php }

In this example, all you are injecting is an href – link to go to the forums, it’s adding the appropriate classes so you can CSS them like the rest of the buttons/links in the navigation widget, and a unique class “navi_forum” specifically for that link.

└ Tags: add_action, Navigation Widget
2 Comments
  • Page 3 of 5
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
Comic Easel
Proudly powered by WordPress Theme: Easel - Comic Easel.

Latest Anomaly

comic-2010-09-05-Segway.jpg

What peoples are saying.

  • migrating from Comic Press to Comic Easel=painless. #ComicEasel Cuz I'm Joe
    Twitter: @CuzImJoe

Control Panel

  • Register
  • Recover password

Categories

  • Information (1)
  • Tutorials (7)
    • Code Snippets (3)
    • Video (4)
  • Uncategorized (1)
  • WordPress (16)
    • Comic Easel (Plugin) (13)
    • CP2CE (Plugin) (1)
    • Easel (Theme) (2)

Recent Posts

  • Place the chapter archive dropdown into the Easel menubar.
  • Adding another custom taxonomy to your comics
  • cast-page shortcode faq added
  • Changelog 1.3.6 – Introducing Comic Easel – Import (bulk comic upload)
  • Jetpack Mobile Theme & Comic Easel (Revisited / Easier for non-coders)

Latest Showcase

  • Cat Nine: Take Two!
  • AdrianaGameOver
  • Plus Infinity
  • Control Your Offspring
  • Rival Angels

Latest Comics

  • Earth Crunchy
  • Segway
  • Confrontations P
  • Moving Over Meandering3
  • Meandering2 1977

©2008-2013 Comic Easel | Powered by WordPress with Easel | Subscribe: RSS | Back to Top ↑