Frumph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Easel] errorThe ‘glob’ is used in the options pages as well, just a reminder to set that myglob into those as well
Forum: Plugins
In reply to: [Comic Easel] Comic Easel PolylangDoes this happen with the comic -> config navigation set to navigate only individual chapters, or the other ‘[all]’ chapters ?
So I can track down it as a bug. The way it works it uses a custom sql query I wrote in the plugin and not the wordpress core next; so I would need to know how polylang figures out it’s languages to determine how to code it to navigate
Forum: Plugins
In reply to: [Comic Easel] Getting startedthe comic is constrained within the available space, if you don’t want it there move the do_action(‘comic-area’) to another area..
what theme did you choose?
Forum: Themes and Templates
In reply to: [Easel] error// These autoload foreach (glob(easel_themeinfo('themepath') . "/functions/*.php") as $funcfile) { @require_once($funcfile); }is the same as writing out:
@require_once(get_template_directory().'/functions/avatars.php'); @require_once(get_template_directory().'/functions/breadcrumbs.php'); @require_once(get_template_directory().'/functions/classes.php'); @require_once(get_template_directory().'/functions/comment-functions.php'); @require_once(get_template_directory().'/functions/custom-header.php'); @require_once(get_template_directory().'/functions/displaypost.php'); @require_once(get_template_directory().'/functions/facebook.php'); @require_once(get_template_directory().'/functions/footer-text.php'); @require_once(get_template_directory().'/functions/pagintaion.php'); @require_once(get_template_directory().'/functions/protect.php'); @require_once(get_template_directory().'/functions/syndication.php'); @require_once(get_template_directory().'/functions/wp-pagenavi.php');basically
Forum: Themes and Templates
In reply to: [Easel] errorActually I believe it had more to do with the theme not having access (permissions or doesn’t exist) to it’s own widgets and functions directories more then the php version, that particular php code doesn’t rely on a php higher then 5 from what I remember, could be wrong though.
Forum: Plugins
In reply to: [Comic Easel] Getting startedWith the comic easel plugin activated, in the left set of menu items there should be a new one that says “comic”
Unless another plugin is overwriting it.
Forum: Themes and Templates
In reply to: [Easel] How can i enable sidebars ONLY on home page?This is how you would write that in CSS (dependant on which layout you’re using):
/* this will be full width set as default */ .narrowcolumn { width: 970px; } /* then for each of the other pages that utilize the minor width */ body.page-id-35 .narrowcolumn, body.page-id-12 .narrowcolumn, body.page-id-52 .narrowcolumn, body.home .narrowcolumn { width: 560px; }See what I did there? basically setting the default for all pages as the wide width, then each of the ones that I want small width I used CSS (make sure it comes *after* the default in the css) I scrunched the width down.
Forum: Themes and Templates
In reply to: [Easel] How can i enable sidebars ONLY on home page?in the layout-head and layout-foot.php files you can put if statements for if (is_home()) in front of the loading of those sidebars then adjust the CSS for the widths of the narrowcolumn then make another one for body.home .narrowcolumn that has the original width in it
Forum: Themes and Templates
In reply to: [Easel] How to change the size of the text in header#header .description { font-size: 28px; }modify the css via the appearance -> editor and edit style-default.css, use jetpacks css editor and just paste that line in or use a child theme, however you want to do it
Forum: Plugins
In reply to: [Comic Easel] blog widthHOWEVER
I see what you did there 😉here’s the CSS
body.layout-2cl .narrowcolumn, body.layout-2cr .narrowcolumn { width: 590px; }That will set the width of your narrowcolumn for your layout to be 590px; wide to fill in the space
Forum: Plugins
In reply to: [Comic Easel] blog widthYou probably just need this CSS
.entry img { max-width: 100%; }so that the images appear correctly inside the post
you can add that css by going to appearance -> editor then selecting the style-default.css file (right column all the way down) and just adding that line to the bottom of the file
or if you use the jetpack plugin, enable the css editor then go to appearance -> edit CSS and just paste it in there (recommended)
bonus points for having a child theme
HAH! Wouldn’t you know it’s as something as simple as the the return being written as $chracter_list =
.. missing an a in my code. damnit! Thanks vtxyzzy you saying it worked gave me the pointer that it wasn’t the sql so it had to be the assignments !Appreciate it
Soo basically it’s finding all of the characters in the chapter for you? .. yow.. okay. It’s not for me; what is your taxonomies setup like? are they set to a post or a custom post-type? …
Forum: Themes and Templates
In reply to: [Easel] remove words on bottom each pageDunno what you did to do that, did you change something in the settings -> reading to make the front page the archive page?
Forum: Themes and Templates
In reply to: [Easel] remove words on bottom each pageappearance -> easel options, general tab – footer section, disable default text in footer [x] checkmark that, click save settings.