Search found 3580 matches

by Don Chambers
Wed Sep 19, 2018 2:58 am
Forum: Development
Topic: Custom WYSIWYG Buttons
Replies: 30
Views: 49659

Re: Custom WYSIWYG Buttons

Many themes style <code>....</code>. Or <pre>...</pre>
by Don Chambers
Sun Sep 09, 2018 2:01 am
Forum: Installation
Topic: Editing Clean Blog theme
Replies: 6
Views: 8248

Re: Need Some Quick Help Please

Russ - some of your theme specific questions for Clean Blog might be answered here.
by Don Chambers
Thu Sep 06, 2018 9:01 pm
Forum: Themes
Topic: Timeline - a responsive, mobile first theme
Replies: 67
Views: 730938

Re: Timeline - a responsive, mobile first theme

Do you have any hints how you structured the add-on (caveat for certain files etc)? No worries if you don't have it at hand, I'll look it through otherwise. I'm not really sure what you are asking. However, I have a prototype running on the Timeline demo site now which allows images to be assigned ...
by Don Chambers
Thu Sep 06, 2018 1:58 am
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

onli wrote: Wed Sep 05, 2018 11:44 pm Yes, I think that it should still work regardless. But I would not be confident enough to deploy the change to old s9y versions without testing.
Nor would I. Just more of a curiosity question.
by Don Chambers
Wed Sep 05, 2018 11:05 pm
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

I'm about to make this change.... function timeAgoInWords($params, &$smarty) { to this as recommended function timeAgoInWords($params, $smarty) { I realize that changing this in the core means I don't need to worry about it working with older s9y versions, but it should still work in older versi...
by Don Chambers
Wed Sep 05, 2018 10:39 pm
Forum: Themes
Topic: Timeline - a responsive, mobile first theme
Replies: 67
Views: 730938

Re: Timeline - a responsive, mobile first theme

I can provide images in the static pages. If you want to change the header image, perhaps you should consider using Clean Blog. If the timeline look is more important, you could always borrow the code from Clean Blog that provides this functionality and use it in your own customized version of Timel...
by Don Chambers
Tue Aug 28, 2018 1:44 am
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

Thanks. I'll change it in Cleanblog. I think its in Timeline too, also a core theme.
by Don Chambers
Mon Aug 27, 2018 3:37 am
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

The core will be changed and will not require a theme change? Am I interpreting your response correctly?
by Don Chambers
Sat Aug 25, 2018 3:14 pm
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

Can the fix be merely what Roger suggested, or does there need to be a conditional test on the php and/or smarty version?
by Don Chambers
Sat Aug 25, 2018 6:13 am
Forum: Bugs
Topic: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference
Replies: 13
Views: 10371

Re: Clean blog Warning: Parameter 2 to timeAgoInWords() expected to be a reference

Happy to change this in the core if anyone else can confirm. I use this function in a few themes, so additional input will be greatly appreciated!
by Don Chambers
Wed Jul 18, 2018 3:24 am
Forum: Themes
Topic: Timeline - a responsive, mobile first theme
Replies: 67
Views: 730938

Re: Timeline - a responsive, mobile first theme

What would you do in the event the entry is assigned to more than one category, and each of those categories has custom images?
by Don Chambers
Fri Jun 22, 2018 9:52 pm
Forum: General discussions
Topic: $is_single_entry for category pages
Replies: 0
Views: 5769

Re: need help?

In your theme's entries.tpl file you can do this:

Code: Select all

{if not $is_single_entry and not $entry.is_extended and not $is_preview}
     <p>This view contains multiple entries</p>
{else}
     <p>This is a detailed entry view with comment form</p>
{/if}
by Don Chambers
Fri Jun 22, 2018 9:44 pm
Forum: Themes
Topic: Timeline - a responsive, mobile first theme
Replies: 67
Views: 730938

Re: Timeline - a responsive, mobile first theme

A small thing: The small top left post-info image on the post's detail page has no class assigned. One would be nice so that it can be resized or set to display:none if it is in the way of the article view. I looked at the theme's template files. On a detailed page view (ie, the full entry page vie...