Frumph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ComicPress] Hide transcript in archivei’ll just make sure in the next release of comic easel that it doesn’t show on the search / archive pages
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsIf your comics are in chapters you can specify /?latest=# (# = the chapter ID number) and it will directly go to the landing page of that comic chapter by link
use the [comic-archive] shortcode, you just add that text to your archive page and it recognizes it, faq’s are on comiceasel.com
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsWhat type of major problems?
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsWell I would load the “Jetpack” plugin (cause it has some great features)
One of them is the ‘edit css’ module, activate that and in the appearance -> menus a new option will appear called “Edit CSS”
You can then add that CSS to that section and click update and the site will use it without you having to edit any of the actual theme files
Forum: Themes and Templates
In reply to: [ComicPress] Hide transcript in archiveYou could put this into your child themes functions.php (or main themes functions.php if you’re not using a child theme)
global $wp_query; if (is_search() || is_archive()) remove_filter('the_content', 'ceo_insert_comic_transcript_into_posts');and see if that removes it completely from being seen on search and archive pages
Forum: Themes and Templates
In reply to: [ComicPress] Hide transcript in archivetry not being logged on and see if you see it on that page you linked ?
Forum: Themes and Templates
In reply to: [ComicPress] Hide transcript in archivehuh, yeah I can’t see it .. you’re talking the archive pages right? I don’t see anything passed the click here to read more link
Forum: Themes and Templates
In reply to: [ComicPress] Hide transcript in archiveLooks like you figured out a way?
comics -> config for comic easel
All of the options for the management of what comics do is in the comics -> config not the theme, the theme is just a theme now
Forum: Themes and Templates
In reply to: [ComicPress] Laundry list of problemsYou can find most of these answers (if not all) on comiceasel.com
centering menu items is just margin: 0 auto; on the inner menu css element, think I have a post on it on frumph.net
there’s options in comic -> config for displaying comic on the home page
there’s a comic easel calendar to use instead of the wordpress based one
Forum: Themes and Templates
In reply to: [ComicPress] change widthwidth is controlled by
#page
#content-column
#sidebar-right, #sidebar-left
You can use a browser based css developer tool like well chrome has it built in and I use firebug for firefox to see values
yes, you can go to the customizer and checkbox the box that sets the comic into the content column instead
it’s an option
Forum: Plugins
In reply to: [Comic Easel] more than one stripyoursite.com/?latest=#
replace the # with the chapter ID you want to go to the landing page for, the ?latest= will redirect the user to it, so you would make that your link
Forum: Plugins
In reply to: [Comic Easel] Seperate pages for seperate comicsthis url addition in your link will make it so that the links you have go speficially to the landing page of the comic you want
like .. shatteredking.com/?latest=34
^ the 34 being the chapter ID you want to go directly to, so replace it with the ID’s of your chapter that want it to go to
Forum: Plugins
In reply to: [Comic Easel] Empty Post Info at Top of Pagesthat’s coming from your child theme, has some .post-info css inside of the style.css of your child theme that is adding padding and all that
probably best to just do
body.page .post-info { display: none; }and just not have it display at all on pages