Jump to content

onlyME

Clients
  • Posts

    2,707
  • Joined

  • Days Won

    17

 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 onlyME

  1. 4 hours ago, kmk said:

    Thank you, my main goal of this was for mobile version need, now I have it done, for mobile look good, but in desktop version I need hide it, because the use of space is not good...please can I get advise from you of this matter?

    Try upload a screenshot...but the limitation don´t let me do that.

    I can see an option Hide in mobile, can you add another Hide in desktop?

    I will consider your idea.

  2. 1 hour ago, kmk said:

    Hello, I recently renew the app. I am thinking about if I can use Feature Content to create a menu directory, when user enter to a link or page, there show a list of bottons(menu) created by Feature Content, that redirecting to others pages, I would like have your comment or guide for this task.

    Hi,

    Try to create a "Manual" slider or grid, and then add the custom link, title, image.

  3. 7 minutes ago, Fred Krugger said:

    I know, but it is an administration option, my desirable is that the user can decide it.

    I don’t understand. If user want to show popup for the next page load, they can click outside the popup to close instead of clicking X button.

    9 minutes ago, Fred Krugger said:

    option to exclude is not clear to me.

    Eg: you set INCLUDE 

    Http://youdomain/profile/*

    and EXCLUDE

    http://yourdomain/profile/1-admin

    Popup will show in all profile pages but not in admin’s profile

  4. 19 hours ago, Fred Krugger said:

    Hi @onlyME ..

    Ideally, the option to "stop watching popup" can be left as an alternative for the user.

    You can try "Popup not show again after closing"

    18 minutes ago, Fred Krugger said:

    It will be possible that the inclusion or exclusion of pages have the concept of inheritance .. ???

    If I apply a wildcard in the URL https://mysiteweb/index.php?/Forum/266-ads/*, the popup application will be inherited to all the pages that are inside the URL

    Did you try "Alway exclude pages"?

  5. 2 hours ago, Unlucky said:

    Hi,

    What would be the correct path & popup settings to enter, that causes the popup to show everytime someone visits different user profiles?

    Thanks

    In Page Filter, select "INCLUDE"

    Display in pages:

    https://your_domain/profile/*/

     

  6. 4 hours ago, gigantor said:

    Great App!

    Question: What happens when a search engine bot scans my website?  Will it affect the stats, etc?

    You can disable guest viewing popup, it will not affect the search engine.

  7. 1 hour ago, amator said:

    Doesn't support manual html block? how about custom editor block?

    Unfortunately it only supports adding slider by image, url, or getting content from forums, downloads,... automatically. Does not support editor or html block.

     

     

  8. 1 hour ago, Saurabh Jain said:

    I installed  but cannot see the navigation button in url....

    I tried/videos and /videobox     both does not exist 

     

    Please tell what to do after installation

     

     

    Try /video

    Or restore your menu (acp > menu management)

  9. @Namo

    Your theme uses css that overwrite ipsGrid

    @supports (display: grid){
    
    	[data-ipsgrid-minitemsize="500"]{
    		--grid-min: 400px;
    	}
    
    	[data-ipsgrid-minitemsize="400"]{
    		--grid-min: 400px;
    	}
    
    	[data-ipsgrid-minitemsize="350"]{
    		--grid-min: 350px;
    	}
    
    	[data-ipsgrid-minitemsize="300"]{
    		--grid-min: 300px;
    	}
    
    	[data-ipsgrid-minitemsize="250"]{
    		--grid-min: 250px;
    	}
    
    	[data-ipsgrid-minitemsize="230"]{
    		--grid-min: 230px;
    	}
    
    	[data-ipsgrid-minitemsize="200"]{
    		--grid-min: 200px;
    	}
    
    	[data-ipsgrid-minitemsize="170"]{
    		--grid-min: 170px;
    	}
    
    	[data-ipsgrid-minitemsize="150"]{
    		--grid-min: 150px;
    	}
    
    	[data-ipsgrid-minitemsize="100"]{
    		--grid-min: 100px;
    	}
    
    	[data-ipsgrid-minitemsize="60"]{
    		--grid-min: 60px;
    	}
    
    	[data-ipsgrid-minitemsize="40"]{
    		--grid-min: 40px;
    	}
    
    	.ipsGrid{
    		display: grid;
    		grid-gap: var(--grid-gap);
    		grid-template-columns: repeat(12, 1fr);
    	}
    
    		/* Forces truncated text to work */
    		.ipsGrid > *{
    			min-width: 0;
    		}
    
    	[data-ipsgrid-minitemsize]{
    		--grid-fill: auto-fill;
    		grid-template-columns: repeat(var(--grid-fill), minmax(calc(var(--grid-min) + var(--grid-gap)), 1fr));
    	}
      
    	.ipsGrid + .ipsGrid{
    		margin-top: var(--grid-gap) !important;
    	}
    
    		.ipsGrid > [class*="ipsGrid_span"]{
    			width: auto !important;
    			margin: 0 !important;
    			float: none !important;
    			height: auto !important;
    		}
    
    		.ipsGrid::before,
    		.ipsGrid::after{
    			display: none;
    		}
    
    	.cPromotedImages{
    		--grid-gap: 0px;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span1{
    		grid-column: span 1;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span2{
    		grid-column: span 2;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span3{
    		grid-column: span 3;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span4{
    		grid-column: span 4;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span5{
    		grid-column: span 5;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span6{
    		grid-column: span 6;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span7{
    		grid-column: span 7;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span8{
    		grid-column: span 8;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span9{
    		grid-column: span 9;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span10{
    		grid-column: span 10;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span11{
    		grid-column: span 11;
    	}
    
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > .ipsGrid_span12,
    	.ipsGrid:not([data-ipsgrid-minitemsize]) > :not([class*="ipsGrid_span"]){
    		grid-column: span 12;
    	}
    
    	@media (max-width: 979px){
    		.ipsGrid.ipsGrid_collapseTablet:not([data-ipsgrid-minitemsize]) > [class*="ipsGrid_span"]{
    			grid-column: span 12;
    		}
    	}
    
    	@media (max-width: 767px){
    		.ipsGrid.ipsGrid_collapsePhone:not([data-ipsgrid-minitemsize]) > [class*="ipsGrid_span"]{
    			grid-column: span 12;
    		}
    	}
    
    	/* Ensure that grids don't span wider than the viewport on mobiles */
    	@media (max-width: 550px){
    		[data-ipsgrid-minitemsize="500"]{
    			grid-template-columns: 1fr;
    		}
    	}
    
    	@media (max-width: 450px){
    		[data-ipsgrid-minitemsize="400"]{
    			grid-template-columns: 1fr;
    		}
    	}
    
    	@media (max-width: 400px){
    		[data-ipsgrid-minitemsize="350"]{
    			grid-template-columns: 1fr;
    		}
    	}
    
    	@media (max-width: 350px){
    		[data-ipsgrid-minitemsize="300"]{
    			grid-template-columns: 1fr;
    		}
    	}
    
    	/* Allow profile photos to wrap on clubs */
    	.cClubCard .cClubCard_memberList{
    		white-space: normal;
    	}
    
    	/* Profile actions on mobiles */
    	@media (max-width: 767px){
    		header[data-role='profileHeader'] .ipsGrid{
    			display: grid !important;
    		}
    	}
    
    	/* Profile followers */
    	#elFollowers .ipsGrid{
    		grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    		--grid-gap: 5px;
    		padding: 5px;
    		margin: 0px;
    	}
    
    	#elFollowers .ipsGrid > li{
    		grid-column: initial;
    	}
      
      	/* Fix gallery albums in Calendar events */
        .cGalleryMiniAlbum{
            --grid-min: 210px;
        }
          .cGalleryMiniAlbum > li::before{
              content: '';
              display: block;
              padding-bottom: 100%;
          }
    
    }

    Try to remove it to see the grid works.

  10. 8 minutes ago, Sonya* said:

    Hi, another question. I would like to place the featured content between header and body layer (just above <main id='ipsLayout_body' class='ipsLayout_container'>). I edit the globalTemplate and add {fcontent="1"} at the place where featured content should be. Saved and then if I look on the site I see literally {fcontent="1"} there and not the slider. I thought it were a kind of template tag :unsure:

    Bug, it will be fixed asap.

×
×
  • Create New...