Jump to content

Goza

Clients
  • Posts

    134
  • 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 Goza

  1. Since you've added the FA code in the navBarItems template. You can designated different icons by using CSS.

    Could contain: Text

    When you inspect in google chrome, firefox, or whatever browser you use. A little tedious work, add these in your custom.css 

    [data-navitem-id="87"] .fa-comment:before {
    	content: "\f206";
    }

    For each icon inserted, change the ID of the navitem-id and change the content: "\f206" to your prefer icon number. 

  2. {{if !empty( $records ) }}
    	<div class="ipsType_center">
    		<h2 class="title">{$title}</h2>
    		<p class="desc">See what other people saying about us.</p>
    	</div>
    	<div class="ipsGrid ipsGrid_collapsePhone" data-ipsgrid data-ipsgrid-equalHeights="rows">
    		{{foreach $records as $record}}
    			<div class='ipsGrid_span3 ipsBox'>
    				<div class='ipsPadding'>
                  	<blockquote>
    					{$record->content()|raw}
    				</blockquote>
                  </div>
    			</div>
    		{{endforeach}}
    	</div>
    {{else}}
    be the first person
    {{endif}}

    How do I use {{else}} statement in a feed block display. It will not display at all for any of the database that I created along with the block itself.  

  3. I've gotten my domain changed over on the 13th and while I was busy for 2 days. I figured I was good to go by then while I tried to access the site, it gave me the DNS_PROBE_FINISHED_NXDOMAIN. Now i've tried the following 

    • Flushed my DNS cache
    • browser cache
    • restart router/pc 

    Gave one of those ismysiteisdown website and it appears its down for everyone.

    emprv.us  

  4. 1 hour ago, TAMAN said:

    it does work like this!

    create a simple theme and add your html/css templates. then enable/disable the designer mode to synchronize your theme template files. after that your custom templates will be passed to all other themes to work with.

    I know about the designer mode going through that route but for those who wanted to get started like on CIC (which I was doing on my cic demo site), designer mode isn't an option unless you go with self-hosted. 

    27 minutes ago, Rikki said:

    We have an outstanding bug open whereby child themes don't inherit new theme settings that are added to a parent, but aside from that, child themes should pretty much work as you describe, including custom CSS.

    This is my first actual attempt to use parent themes and I thought I read somewhere that it should inherit css but it isn't. Least I know there a bug for that to be fixed. 

  5. theme.thumb.PNG.fda7bc4241fd00112244b398832665f0.PNG

    The image is from me editing html in chrome elements

    Not sure how difficult it will be to implement this but it probably really difficult how the theme system currently built? However, it would be really cool that allow us too:

    • Create a Parent Theme handles all CSS/HTML from a single theme
    • Child theme only handles the theme settings (color schemes) and that's it. 

    Currently, if you create a main theme and then a child theme for that main theme. The child theme doesn't inherit the CSS changes from the main theme (not sure if this intended bug or not). Also, when updates do come around you'll need to update EVERY child theme you have to the latest version. With the parent system, one theme needs to update while your child theme doesn't since its using the parent theme files. Myself and probably many people who do not know javascript at all (jsColor or something similar) this is probably the easiest alternative for us to use.  

     

  6. I had a similarity of the situation. We were on 4.4 upgraded to 4.5 (which was compactable but needed to be upgraded, previous owner had the app). I purchased the app and tried to update it then the error popped up. Got hold of support, letting me know that we needed to change CMOD files/folders for it to work but I've tried numerous times but still didn't work. Ultimately, I uninstalled the app and reinstalled the app which worked smoothly. 

  7. So I thought it was my template but reverse the database back to default form listing/display and found out:

    • Create record 1 
      • link record 2 after creating record 1 using the update record form does not show in record 2
    • create record 2
      • link record 1 after creating record 2 using the update record form does not show in record 1
    • create record 3
      • link record 1 and 2 during the editForm after creating the record, it shows in record 1 and 2. 
  8. Anyway possible, if we can use getReciprocalItems in the same database like it would be using remote database. In the current form, the relationship database in the same database would use the listing/display and not the getReciprocalItems. 

    If it is possible, how? 

    One of our database we use it as a bug tracker, many users in our community would report bugs to us the same issue but wording it differently. Also, in pages we cannot merge records together so if we use getReciprocalItems and customized  {$item->customFieldDisplayByKey('my_key', 'listing')|raw} would be great 😃

×
×
  • Create New...