Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Archive Chapter list with page thumbnailsthe <body class= element has classes that you can use to prefix CSS specific for those, it uses the archive.php page as well .. you can find the CSS to the table and images and shrink them a little bit to fit properly
/chapter/<chapter-slug> will give an archive list of the chapter you requested
the /comic/ end will display all comics regardless of chapter, you can set the amount to display of each page in the settings -> reading section (blog post amount to display) line
(the blog posts on the home page amount is in comicpress options, seperating the two)
- This reply was modified 7 years, 6 months ago by Frumph.
Forum: Plugins
In reply to: [Comic Easel] Archive Chapter list with page thumbnailshttp://teachmetokill.com/en/comic/
http://teachmetokill.com/chapter/prologue/
You will notice your archive can already be displayed as a list of thumbnails for the chapter, issue is that the css is a little bad for it but i’m sure you can fix that appropriately
or maybe i’m not understanding?
Forum: Plugins
In reply to: [WooCommerce] Product Previews Not Workingif you disable the menu in the comcpress options, you need to also disable the menu jquery, it’s another option in the same place.
(the reason its left a toggle is cause you can use the menu widget instead which will use the same jquery)
So find the option in the appearance -> comicpress options and disable the menu jquery since you have the menu disabled, that will make it not load
Forum: Plugins
In reply to: [Comic Easel] Custom Navigation / TitleThe post title can only be displayed within the loop of the comic-area display.
If you use a plugin that allows ‘code’ for widgets, For example: https://wordpress.org/plugins/php-code-widget/
you can add
<?php $post_title = $get_the_title(); if (!empty($post_title)) echo $post_title; ?>Inside of the code widget and it will add the post title to whatever ‘comic’ sidebar you put it into. (has to be in the comic sidebars if on the home page)
Forum: Plugins
In reply to: [Comic Easel] Private comic postswell if they’re set to private, what did you expect them to to display like?
also the delay could be the cache you have on your hosting/wordpress as well
Forum: Plugins
In reply to: [Comic Easel] Only display navigation bar on certain chaptersSo are you still stuck with it? It’s easier to get help from me on the comic easel facebook page (btw)
Forum: Plugins
In reply to: [Comic Easel] How do i change the order of comic pages?order is determined by the post-date and time that it is published, so when you to slide things around just set their post date and time to be between others
changing the date and it not showing .. make sure that the chapter is set on the update
- This reply was modified 8 years, 5 months ago by Frumph.
Forum: Plugins
In reply to: [Comic Easel] Centering graphic navigationlooks like you need to write the words “previous” and “first into the widget content boxes for the graphical navigation which will line the graphics up a little better
Forum: Plugins
In reply to: [Comic Easel] How do I reorder new pages so they’re in a previous chapter?comic posts are organized by chapter AND date-time .. so if you want to squeeze some comics someplace, make sure the date published is set to a time/date between thos

Here is an image showing the extra membership – this membership [member] does *not* exist in membership 2 and so it’s still seeing it AND using it for peoples ms_has_membership() which causes protected content to fail being seen.
— Also note the additional bug of the start date and end date’s are all the day that they were imported and *not* the proper ones they are supposed to be.
- This reply was modified 9 years, 5 months ago by Frumph.
basically registered users in a paid membership couldn’t see protected content
— solved —
Bad logic in the ms_has_membership() and associated functions that check for if the user is in an appropriate membership continues to return a value of false.
This makes it so people in memberships cannot see protected content because of bad logic gate.
Because of this bad logic, the horribly not-so-intuitive controls of the protection rules needed to be adjusted.
Without having a ‘visitor’ membership that includes not-logged-in users and logged in users that are not in any other memberships no matter what you do it returns false.
—————–
So – a default visitors membership should be added to the code base to solve this for everyone else who also updated from old membership that didn’t have a ‘default’, and even then the ‘default’ needs to include logic for logged in users that are not in any other memberships.
— NOTE: This made the capabilities add-on also fail it’s logic
Added fix for (my) usage for having paid memberships become contributors and then back down again if they are not paid. (if anyone is so inclined to want an example of how-to switch from subscriber to contributor based on a certain membership – adjust membership # and roles to what your needs are.
if (function_exists('ms_has_membership')) { $current_user = wp_get_current_user(); if ($current_user->ID) { if ( ms_has_membership(18017) ) { if (in_array( 'subscriber', (array)$current_user->roles )) { $current_user->remove_role('subscriber'); $current_user->add_role('contributor'); } } elseif (in_array( 'contributor', (array)$current_user->roles)) { $current_user->remove_role('contributor'); $current_user->add_role('subscriber'); } } }Forum: Plugins
In reply to: [Comic Easel] displaying the comic navigation instead of archives in pagesThose latest comics in those chapters do not have featured images set to them it appears
Forum: Plugins
In reply to: [Comic Easel] displaying the comic navigation instead of archives in pagesGo to appearance -> menus and fix the links they’re pointing to (assuming you’re talking about the mainmenu links)
They should be pointing to (as example):
For the Captain Anchovy one:
http://mrfart.be/chapter/ansjovis/so they’re http://mfart.be/chapter/chapter-slug
where chapter-slug is the slug name found in comic -> chapters
- This reply was modified 9 years, 5 months ago by Frumph.
Forum: Plugins
In reply to: [Comic Easel] breaks my themeGo to comic -> config -> general tab -> there’s a new option there to disable post thumbnails on non-comicpress themes, uncheck that.
I’ll make a patch for it to not be auto-on for other people and make sure it’s on is_single(singular) pages only
Forum: Plugins
In reply to: [Comic Easel] How to Post Multiple ComicsBest to contact me on facebook via the comic easel group
https://www.facebook.com/comiceasel/where you can message back and forth with me real time