Forum Replies Created

Viewing 15 replies - 481 through 495 (of 1,361 total)
  • Forum: Themes and Templates
    In reply to: [Easel] error
    Theme Author Frumph

    (@frumph)

    The ‘glob’ is used in the options pages as well, just a reminder to set that myglob into those as well

    Plugin Author Frumph

    (@frumph)

    Does 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

    Plugin Author Frumph

    (@frumph)

    the 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
    Theme Author Frumph

    (@frumph)

    // 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] error
    Theme Author Frumph

    (@frumph)

    Actually 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.

    Plugin Author Frumph

    (@frumph)

    With 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.

    Theme Author Frumph

    (@frumph)

    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.

    Theme Author Frumph

    (@frumph)

    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

    Theme Author Frumph

    (@frumph)

    #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 width
    Plugin Author Frumph

    (@frumph)

    HOWEVER
    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 width
    Plugin Author Frumph

    (@frumph)

    You 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

    Thread Starter Frumph

    (@frumph)

    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

    Thread Starter Frumph

    (@frumph)

    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? …

    Theme Author Frumph

    (@frumph)

    Dunno what you did to do that, did you change something in the settings -> reading to make the front page the archive page?

    Theme Author Frumph

    (@frumph)

    appearance -> easel options, general tab – footer section, disable default text in footer [x] checkmark that, click save settings.

Viewing 15 replies - 481 through 495 (of 1,361 total)