Jump to content

Claude

Clients
  • Posts

    88
  • 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 Claude

  1. Hello

    Does it make sense to create a subdomain like “static.mydomain.com” in order to define the domain of cookies?

    Should I then add in the constants.php file the following 3 constants, namely:

    - \define ('COOKIE_DOMAIN', 'https://static.mydomain.com');
    - \define ('COOKIE_PREFIX', 'prefix_');
    - \define ('COOKIE_PATH', '/');

    I'm not sure if these are the correct lines to insert into the constants file!

    Thank you in advance,
    Regards,

    Claude
  2. Hello everybody,

    The .fa-remove: before class declares the character you want to use .fa-rss-square: before {content: "\ f143"; }, it is necessary to cancel it so as not to display the FA icon.

    See the two screenshots.

    It is better to comment on the line (in rssMenu) that we want to cancel.

    feed.png

    rss.png

    {{if \count( \IPS\Output::i()->rssFeeds )}}
    	<!-- <a href='#' id='elRSS' class='ipsPos_right ipsType_large' title='{lang="available_rss"}' data-ipsTooltip data-ipsMenu data-ipsMenu-above><i class='fa fa-rss-square'></i></a> -->
    	<a href='#' id='elRSS' class='ipsPos_right ipsType_large' title='{lang="available_rss"}' data-ipsTooltip data-ipsMenu data-ipsMenu-above></a>	
    <ul id='elRSS_menu' class='ipsMenu ipsMenu_auto ipsHide'>
    		{{foreach \IPS\Output::i()->rssFeeds as $title => $url}}
    			<li class='ipsMenu_item'><a title="{lang="$title"}" href="{$url}">{lang="$title"}</a></li>
    		{{endforeach}}
    	</ul>
    {{endif}}

    See you soon,

    Claude

    rss1.png

  3. Good evening Bfarber,

    I may have a solution to replace the FA icons with images!

    Usually to add an image, we use the tag
    <img src = "mon_image.jpg" alt = "mon_image" title = "mon_image" />
    Since we are using the <i> tags for Font Awesome, displaying an image will not use the <img> tag, but we will use the FontAwesome code with the image in the background.

    Replace some FA icons with a classic image.

    For modification, only CSS modifications are required. We will take the case of the .fa-remove icon which displays the following cross x.
    The .fa class declares the font, since we will use a background, there is no need to modify it.
    The .fa-remove: before class declares the character you want to use .fa-remove: before {content: "/ f00d"; }, it is necessary to cancel it so as not to display the FA icon.
    Since we do not want to replace all the icons, it is important to target the modification.

    ... To be continued,

    Regards,

    Claude

  4. Hello opentype

    Ah that's why I can't do it, I want to replace this font with my feed image, in black and more stylized.

    Can I replace this piece of code <i class = "fa fa-rss-square"> </i> with a physical address, for example, https://example.com/rss-square.png?

    Thank you in advance,

    Regards,

    Claude

     

    rssMenu

    {{if \count( \IPS\Output::i()->rssFeeds )}}
    	<a href='#' id='elRSS' class='ipsPos_right ipsType_large' title='{lang="available_rss"}' data-ipsTooltip data-ipsMenu data-ipsMenu-above><i class='fa fa-rss-square'></i></a>
    	<ul id='elRSS_menu' class='ipsMenu ipsMenu_auto ipsHide'>
    		{{foreach \IPS\Output::i()->rssFeeds as $title => $url}}
    			<li class='ipsMenu_item'><a title="{lang="$title"}" href="{$url}">{lang="$title"}</a></li>
    		{{endforeach}}
    	</ul>
    {{endif}}

     

  5. Hello,

    How to change the mini RSS icon (rss-mini.png or feed.png) contained in the ... public / style_images / master directory?

    Is it one or the other RSS, rss-mini or feed icon?

    If I have to change it with a new icon, do I have to respect the image size, in pixels, but which one?

    Thank you in advance,

    Regards,

    Claude

  6. Good evening everyone,

    I'm trying to import an RSS feed from a URL / Feed address.
    I can't associate this RSS with the orange RSS symbol at the bottom of the page! I don't want the elements of the feed to end up in a forum!

    Thank you in advance for your answers,

    Regards,

    Claude

    2020-05-27_18-50-12.png

  7. Hello,

    the APC of my website displays the following sentence: "
    Results are shown in the server's timezone." And when I read this message, I get two lines of information: "Your MySQL server does not have timezone support available which Invision Community needs to show the results of some charts in your own timezone. The results shown on this chart are therefore in GMT, which is what your MySQL server is set to. To see results in your own timezone, contact your hosting provider or system administrator and ask for the time zone tables to be populated."
    I am shared with Hostinger, https://www.prenommer.com/.
     

    I admit that I don't really know what it is and how to find a solution!


    My English is not very good, I apologize.

    Thank you in advance,

    Regards,

    Claude

×
×
  • Create New...