Jump to content

Day_

Clients
  • Posts

    1,025
  • Joined

  • Last visited

  • Days Won

    5

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Day_

  1. 4 minutes ago, David T. Cole said:

    Ha yes, the last 2% took forever. I ended up troubleshooting by replacing all the default color calls in the theme admin to hot pink to see what I wasn't overriding.

    I've just ran an invert tool in Pixelmator on the Mac and it's actually saved me a bunch of CSS overwrites.

    Uploaded the file if it's any use for anyone looking to take the challenge on.

     

    icons_hidpi.thumb.png.9380fb71770540f384dfb9e5ba2ec2ca.png

  2. 7 minutes ago, David T. Cole said:

    @dayh I overwrote the editor icon calls with CSS using FontAwesome icons like so:

    
    .cke_button__bold:after {
    background: none !important;
    font-size: 1.4rem !important;
    font-family: "FontAwesome";
    content: "\f032";
    position: relative;
    top: 0rem;
    left: 0rem;
    }

    FontAwesome 4.7 cheatsheet: https://fontawesome.com/v4.7.0/cheatsheet/

    Nice one, will take a look at doing this, pretty much done now apart from this and embedded content. Although saying that I thought I was almost done several times then something else pops up I've missed. 

  3. Sat down this morning, 9am UK time and thought I'm doing a night mode, it's happening.

    It's now almost 8pm and I'm 98% there.

    Although I must confess I took a 2hr afternoon nap.

    It all comes down to this editor toolbar, the image sprite has all kinds of shading on the icons so it's not a simple whack a white layer on the top. 😫

    1535805581_Screenshot2019-03-08at19_46_47.thumb.png.2d9ce85f68fe47113869e0e9e465cc81.png

    Also I need to figure out how to darken the lazy loading backgrounds whilst loading in as it's bright white, and taking a few screenshots just now I'll probably change the follow button and that's it.

    Possible but like I said earlier, a real ball ache.

  4. On 2/25/2019 at 6:11 PM, Joel R said:

    For IPS communities, however, individual communities can develop and customize the theming to their hearts content, and that can include any variations like regular or dark mode.  

    True, but it’s a ball ache creating a dark theme, the editor in particular. I must have started one at least 5 times and gave up as there’s so many areas and pages fearing that by time I finished 5.0 would be released.

    How many customers don’t feel comfortable using web inspect and creating a custom.css file so end up using the default theme with a logo uploaded? Fair few I would imagine.

    IPS are really missing a trick not bundling in a Night Mode in the package and using it as a selling point, would it take those that created the templates that long to create one? A day or two maybe, being generous allowing for coffee and toilet breaks. 

    Twitter has by far the best night mode on any site, the dark blue would be a nice alternative to the default IPS white and blue theme.

  5. Can't just be my forum where members are hitting enter several times to enlarge the editor, which leaves empty paragraphs at the end of posts. It's now officially taken over as my major annoyance with this software, previous being all links should take you to first unread post grrrrr. 

    Anyway, IPS Dev Gods, is there not a way the system can automatically detect and remove these on post submit? Or even reintroduce a editor resize tab in the bottom corner.

    Please, pretty please.

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

  6. 1 hour ago, Lindy said:

    So many misconceptions. :(

    If @daveoh were to share his site, you would see it's very clean, well organized, has high quality content and a glance shows his backlink profile is strong. He also has little to no apparent ads.

    It's really nothing special to look at like myself, but it's https://dcfcfans.uk . We've been online 9 years yesterday. I've not looked but would imagine our backlink profile is strong through natural sharing, never went in for all those link exchange things.

    When visiting though please disable your ad blockers unlike Lindy :p 

  7. I have been using both his plugins now since they were made available. For this month I have 2 ads in between posts with a 65.99% active view viewable, I also have the other plugin with 2 ads between topics with 39.35% active view. Compare that to the header which is just using a custom key in the index, forum display and topic templates, no plugins 47.44%.

     

     

  8. 3 minutes ago, newbie LAC said:

    Hello,

    For topic view 

    
    {{if \IPS\Request::i()->app == 'forums' and \IPS\Request::i()->module == 'forums' and \IPS\Request::i()->controller == 'topic'}}
    	{{$forumId = 0; try { $topic = \IPS\forums\Topic::loadAndCheckPerms( \IPS\Request::i()->id ); $forumId = $topic->forum_id; } catch( \Exception $e ) {};}}
    {{endif}}
    
    {{if !in_array($forumId, array(9))}}
        code
    {{endif}}

     

    Yes.

    Wow wow wow, you're a superstar, works a treat!! Many many thanks, if this could be included in the next plugin update to save template edits that would be super awesome.

  9. @newbie LAC I've seen the thread with you talk through the code to exclude if on a certain page

    Is it possible to add a setting to this plugin so only ads after X posts are shown if it is in X forum? would be a nice addition to your other plugin ads after x topics.

    I'm using both this and your ads after x topics plugin, to keep Google happy I'm trying to remove all ads from one board so I can make it private.

    If I add 

    {{if ( \IPS\Request::i()->controller == 'forums' AND isset( \IPS\Request::i()->id ) AND ! in_array( \IPS\Request::i()->id, array( 9 ) ) ) }}
    
    {{endif}}

     

    Around the custom ad key for the header ads in forumDisplay and into your nbAdsAfterXTopics template it works fine, ads show in all but this one board. But if I add it in to the topic template and nbAdsAfterXPosts it removes ads from posts within all boards.

     

     

×
×
  • Create New...