Jump to content

Marcel Iseli

Clients
  • Posts

    42
  • Joined

  • Last visited

 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 Marcel Iseli

  1. hi Marc

    Thank you for the answer.

    Yes, that is true. But a 410 error would be better to signal to Google that the item is not only gone temporarily, as 404 errors signal just that, while 410 errors signal to Google that an item is gone for good, which results in faster deindexing. 

    Anyway, thanks for the answer!

    Regards,

    Marcel

  2. Hey Guys

    I am wondering if there is a way to make sure that deleted content is served as a 410 GONE error instead of a 404 page. I want to signal to Google that the content is deleted for good, so a 410 would be much better than serving a 404. But I don't know if there is any way in IPB to do that. 

    Basically, every topic that I delete I would like to serve a 410, so that Google knows that the content is deleted for good and it can then quickly deindex it. 

    Kind regards,

    Marcel

  3. Hi there. Cool plugin. 

    Would it be possible that you add the option for 410 redirects as well?

    Because I am currently searching for a way to make sure that IPB serves a 410 redirect (Gone) instead of just a 404 when content is deleted!

    Kind regards, 

    Marcel

  4. Dear Everyone

    Does anybody know how I can fix this JS  render-blocking problem?

    Please have a look at the screenshot: 

     

    It's in German but it says "Remove Unused Javascript" on top. And then, the problematic JS files seem to be root_framework.j, root_library.js and plupload.full.min.js. Any help with this would be greatly appreciated. 

     

    Have a nice Sunday!

     

    Cheers.

    Could contain: File, Page, Text, Webpage

     

     

  5. 4 hours ago, PPlanet said:

    @Marcel Iseli you can try this. Add this in your theme's custom.css file

    /**
     * Font size for mobile */
    @media screen and (max-width: 767px){
    .ipsType_normal {
        font-size: 16px;
    }
    .ipsDataItem_title {
        font-size: 16px;
    }
    .ipsType_medium {
        font-size: 16px;
    }
    .ipsStreamItem_title {
        font-size: 18px;
    }
    .ipsStreamItem_titleSmall {
        font-size: 16px;
    }
    .cWidgetPrice {
        font-size: 11px;
    }
    }

    You can play with the sizes but I wouldn't recommend going larger than that.

    this works like a charm, thank you very much!

  6. 38 minutes ago, PPlanet said:

    @Marcel Iseli you can try this. Add this in your theme's custom.css file

    /**
     * Font size for mobile */
    @media screen and (max-width: 767px){
    .ipsType_normal {
        font-size: 16px;
    }
    .ipsDataItem_title {
        font-size: 16px;
    }
    .ipsType_medium {
        font-size: 16px;
    }
    .ipsStreamItem_title {
        font-size: 18px;
    }
    .ipsStreamItem_titleSmall {
        font-size: 16px;
    }
    .cWidgetPrice {
        font-size: 11px;
    }
    }

    You can play with the sizes but I wouldn't recommend going larger than that.

    Thank you, I will certainly try that! The standard font sizes are WAAAAY to small on mobile devices in my opinion. So I want to try that out. I need much bigger body font on mobile. Also, I just got an error because of that in google search console (text too small). that's the main reason I wanna do that...and it's much easier to read after all if its bigger. Thank you!

  7. Hey Guys

    I am using the IPB default theme. And in the backend, I am able to change the font size for desktop by using the scale font sizes option. 

    However this does not seem to change the body font size on mobile at all (only on desktop). Could somebody please tell me how I can change the body font size, so that it will appear bigger on mobile phones as well!

    Kind regards,

    Marcel

  8. to an add code like this (htmls), what do I need to add to make it centered on the page?

     

    <a target="_blank" href="https://shareasale.com/r.cfm?b=12842&u=2514300&m=65042&urllink=&afftrack="><img src="https://static.shareasale.com/image/65042/300x250-3.png" border="0" /></a>

     

    Kind regards,

     

    Marcel

  9. 5 minutes ago, Nathan Explosion said:

    Considering that a large amount of the suite uses fontawesome for icons, you don't want to disable it and I won't provide assistance on doing so.

    I respect that obviously. I thought that font awesome was just for the fonts itself but as it rather for the icons, I do understand that that wouldn't make any sense.

    I just find it super silly that iPB does not care about site speed. 2 seconds to load these icons, that's ridiculous. And no web-safe font to start with...why? I couldn't care less about small icons like that. I would like to have a built-in option to turn these things off or just use the most essential ones. 

    Thanks for all the help you provided. I think my website is running fine now on Helvetica.

    Best,

    M

  10. On 12/27/2020 at 12:24 PM, Nathan Explosion said:

    Yeah, custom css isn't going to change that. The site loads up the fonts defined in the theme....the custom css just overrides the one used.

    TOTALLY UNTESTED OPTION - USE AT YOUR OWN RISK

    Edit the global -> global -> includeCSS template and remove the chunk of code at the top which relates to loading of fonts.

    I have done that and the website is still loading fine. 

    However, the website is still loading this .woff file here, which has a very bad impact on site speed (see screenshot).

    I would like to prevent fontawesome from loading at all and use Helvetiva for everything. 

    It looks everything is running on Helvetica now but it is still loading this .woff file ;(

     

    Screen Shot 2020-12-28 at 9.06.46 PM.png

    On 12/27/2020 at 6:40 PM, Davyc said:

    There will be some CSS with specific fonts assigned to an element - if you use the browser console to discover these you will find the elements affected and you can change the CSS to whatever font you want and add it to your custom CSS file.

    An example would be on this site - your user name, as below:

    image.png.dca93eae3a2eaf40acf3c7ae29d5cdb2.png

    The font can be changed using:

    
    .ipsType_break {
        word-wrap: break-word;
        word-break: break-word;
        font-family: "tahoma";
    }

    And makes it into this:

    image.png.022d6bbf173dced92e641254cf4df798.png

    You can drill this right down to a specific element on a specific page if you find the right combination of elements to group. The trick is not to allow one change to affect other elements, which can happen if you're not careful.  Playing with CSS can be both fun and frustrating, but have a go 🙂

     

    I changed everything to Helvetica and it looks great. In fact I would just like a single font (Helvetica) and make sure nothing else is loaded. Especially not fontawesome, which has a very bad influence on sitespeed (in general). 

    Any idea on how to stop font awesome from loading at all? If yes, please let me know. I would highly appreciate that. :=)

     

     

    Screen Shot 2020-12-28 at 9.06.46 PM.png

  11. That's interesting, Nathan. Thank you very much for your message!

    Well. One thing that has not changed is that all kinds of other Google Fonts still get loaded (as far as Google Pagespeed is concerned), which has a very bad impact on my SiteSpeed. (see screenshot).

    I would like to make sure that Google Fonts are NOT loaded at all and just my web-safe Helvetica font is used for absolutely everything.

    There's still a couple of .woff fonts that get loaded (open sans, roboto) and so on.

    Screen Shot 2020-12-27 at 11.47.21 AM.png

  12. 50 minutes ago, Adlago said:

    Critical CSS is an inline presented CSS. This CSS rules  is tagged ...

    
    <style>
      
      your Critical CSS rules
      
    </style>

    and placed in a head site before closing the tag head. (</head>)

    I am sorry but I am still not sure how I would need to do this. Do I need to create a template first in the default theme? and then I will just add the rest of that code before the closing head-tag or would I just need to put the whole code (with the first line which includes the template-info) as it is before the closing head tag?

  13. On 3/24/2019 at 7:39 PM, Adlago said:

    I have written a lot about this subject, incl. and i have a design to use the critical CSS to remove the Render-blocking CSS. Yes, it works, but it takes a lot of time to analyze and develop a good critical CSS.
    For a few days I've been exploring another idea that came to my mind.
    Code in IncludeCSS works perfectly and this code tells the browser - download all those CSS and use them to represent the site. But this code does not tell the browser when and how to use them.

    The idea I'm using right now is - I created a new template that I put before closing the tag head. In my experiment, this template looks like this:

    
    {template="preload_css" app="core" location="global" group="analysis" params=""}

    In this template I placed this code

    
    {{foreach array_unique( \IPS\Output::i()->cssFiles, SORT_STRING ) as $file}}
    <link rel='preload' href='{expression="\IPS\Http\Url::external( $file )->setQueryString( 'v', \IPS\CACHEBUST_KEY )"}' as="style">
    {{endforeach}}
    {{$customCss = \IPS\Theme::i()->css( 'custom.css', 'core', 'front' );}}
    {{foreach $customCss as $css}}
    <link rel='preload' href='{expression="\IPS\Http\Url::external( $css )->setQueryString( 'v', \IPS\CACHEBUST_KEY )"}' as="style">
    {{endforeach}}

    Now, besides a browser command to download all CSS, I send the browser a command - use these CSS as a matter of priority.
    And the result of over 100 my tests - no render-blocking CSS ...
    There are no side effects or any other bad impact.
    I've installed it on my live site and it works perfectly.

    If a development team wishes, let him test it and apply it in later releases. This will speed up all sites using this really good platform.

    Could you please tell me in which file I would need to add this? in the custom.css file? best wishes, Marcel

  14. This plugin RULES! So I need to give it some shine here.

    And it still does work even on IPB 4.5. Just wanted to let everybody know.

    Also I wanted to personally thank the developer for this awesome plugin. Great job. 

    Well worth 10 bucks. I would have paid 30 as well (one guy was complaining that 10 bucks is too much...)

    The functionality of the plugin is simple...but if you do understand the value of having more members, then 10 dollars is absolutely NOTHING. And this is exactly what this plugin does: It will make sure you get MORE members each and every day. So would I pay 10 dollars for that? ABSOLUTELY!

     

  15. 1 minute ago, newbie LAC said:

    Hello,

    I can not reproduce on the latest version.

     

    Maybe I haven't the last version then. Let me check this. Thanks a lot for the quick reply. I think I have 1.0.8.

    oh I did not yet pay the renewal fee. I just did that. and will now try with the latest version!

  16. Dear Newbie LAC

    I am now using your plugin again.

    It still works fine there is just one small problem. When I try to restrict an ad for just desktop and then in the settings I will tick that option, after saving that option will not be saved. When I go back into the settings then, it always shows "All devices". So I am not able to only show a certain ad only on desktop devices which is a big problem because some of my affiliate ads are not responsive and so they will be therefore cut badly on phone devices.

    How can I solve this? Would be amazing if you could help me with that!

    Best,

    Marcel

  17. Hey Taman

    I have now inserted a fixed widget to the page

    https://linguaholic.com/forum/11-language-learning/
     

    I tried to add it then in my custom css (I see you already provided a custom css code to another person because this person was also interested in this)

    However, I could not get it to work (see screenshot). I did change the id of the widget. I am not 100% sure if I chose the right id, though. Because I am a CSS newbie. So many things could get wrong. 

     

    So could you please tell me the exact CSS that I need to enter in the custom.css file. That would be highly appreciated.

    Kind regards,

    Marcel

    Screen Shot 2019-01-25 at 8.56.56 AM.png

  18. 1 minute ago, TAMAN said:

    Hello, 

    A simple CSS code can o the job  

    I can help you to do that, but i need you to provide a link that the add appears on 

    The link you provided above does not have any fixed widgets, or maybe its not available for guests! 

     

    Hey there

    I attached a screenshot from that page. I just want the add to appear like in the screenshot BUT to be sticky. I did not choose "fixed widget" here because with if I would have done that I couldn't show you what I want to achieve.

    I can give you my login credentials if that helps!

     

    Screen Shot 2019-01-24 at 10.03.39 PM.png

  19. Dear Taman

    I just purchased your plugin. 

    I have one important question. I want to use your plugin for sticky sidebar ads. I was not yet able to set this up. When I choose "fixed", then the AD will only appear after I opened the "sticky button" up. But I would like the AD to appear from the beginning and be sticky, without having to open up anything at all. 

    Please have a look at 

    https://linguaholic.com/forum/11-language-learning/

    That is how I want the Ad. But I want it sticky. So the thing should already be collapsed/expanded from the beginning. I don't really even want people to be able to collapse/expand it (if that is possible!) Could you please help me to achieve this? Really hope this is possible

    Kind regards, 

    Marcel

×
×
  • Create New...