Jump to content

Himadri Goswami

Clients
  • Posts

    187
  • 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 Himadri Goswami

  1. Dear Adriano, 

    Found an issue here. I have this on my category image settings. Still cannot upload image. Tried changing the image dimension settings. It reverts back to default automatically

    jjj.PNG

  2. 1 minute ago, opentype said:

    Not sure what you mean by “custom blogs”.  I see a feature badge on the article front page and in the People listing view. So the badge seems to work as expected. 

     

    The templates are unrelated to specific editor content or custom fields. If you put videos in your articles or add custom database fields to your database, that will work just as with the stock record view template. 

    i meant custom blocks

    it works on articles front page, but i thought I would get it on blocks too

  3. 13 hours ago, Adriano Faria said:

    Coming soon: image on question.

    NO ETA for image in answers.

    Love you @Adriano Faria  

    we run a medical site. to run a test series actually we need minimum of 50 questions per quizees and may be upto 200 or 300

    I personally feel that I shouldnot request you this just after a release? But anyway do you have this in your mind in for any future ? I would be grateful

  4. 16 minutes ago, Adriano Faria said:

    Go to ACP -> Customization -> Languages. In the row of your languages, click in the button with a globe icon (translate) then once you're in, search for Quizzes. In the result page, type whatever you want in the white textarea. 

    thanks done that. is there a way I change the url /quizzes too? Thanks in advance

  5. 5 minutes ago, Adriano Faria said:

    I will take a look in your board tomorrow.

    @Gabriel Torres

    Alread teplied to you above.

    The current step stuff does not allow this. Sorry, I won't pratically remake all the app one week later I released it. 

    New stuff/rewrite will come in a future version, No ETA.

    will wait eagerly

  6. I was trying to get plain three column article layout on blocks. I have successfully removed the parts that I dont want to display. But unable to achieve the layout. The first two lines appears as desired but after that its incorrect. Please see what I have got live here http://thedoc.org/

    The code I have used:

    {{if !empty( $records ) }}
    	{{if $orientation == 'vertical'}}
    		{{foreach $records as $record}}
    			<div class='ArticleS1'>
    	<article class='{{if $record->hidden()}}ipsModerated{{endif}}'>
     	<div class="record-image">
        	{{if $record->record_image}}
          		{{if $record->isFutureDate() || $record->mapped('pinned') || $record->mapped('featured')}}
    				<div class="badges"> 
    					{{if $record->mapped('pinned')}}
    						<span data-ipsTooltip title='{lang="pinned"}'>{lang="pinned"}</span>
    					{{endif}}
    					{{if $record->mapped('featured') and $record->mapped('pinned')}}
    						<span> / </span>
    					{{endif}}
    					{{if $record->mapped('featured')}}
    						<span data-ipsTooltip title='{lang="featured"}'>{lang="featured"}</span>
    					{{endif}}
    				</div>
    			{{endif}}
    				<a href="{$record->url()}" title="{lang="read_more_about" sprintf="$record->_title"}">
            			<img class="ipsImage" src="{file="$record->record_image" extension="cms_Records"}">
         			</a>
          	{{endif}}
    	</div>
      	<div class="record-content">
          	<h2 class='record-title ipsType_pageTitle'>
    			{{if $record->hidden() === -1 || $record->hidden() === 1}}
    				{{if $record->hidden() === -1}}
    					<span class="ipsBadge ipsBadge_icon ipsBadge_warning" data-ipsTooltip title='{$record->hiddenBlurb()}'><i class='fa fa-eye-slash'></i></span>
    				{{elseif $record->hidden() === 1}}
    					<span class="ipsBadge ipsBadge_icon ipsBadge_warning" data-ipsTooltip title='{lang="pending_approval"}'><i class='fa fa-warning'></i></span>
    				{{endif}}
    			{{endif}}
    			<a href="{$record->url()}" title="{lang="read_more_about" sprintf="$record->_title"}">
    				{{if $record->unread()}}
    					<span class='ipsItemStatus' data-ipsTooltip title="{lang="cms_unread_record"}"><i class="fa fa-circle"></i></span>
    				{{endif}}
    				{$record->_title}
    			</a>
    		</h2>
    		<section class='ipsType_normal ipsType_richText ipsType_break' data-ipsTruncate data-ipsTruncate-size='3 lines' data-ipsTruncate-type='remove'>
    			{$record->truncated()|raw}
    		</section>
          	{{if count( $record->tags() )}}
    			{template="tags" group="global" app="core" params="$record->tags()"}
    		{{endif}}
          	<ul class="record-info">
    			<li><i class="fa fa-calendar"></i>{datetime="$record->record_publish_date"}</li>
    			<li><i class="fa fa-user"></i>{lang="byline_nodate" htmlsprintf="$record->author()->link()"}</li>
    		</ul>
     	 </div>
    	</article>
    </div>
    		{{endforeach}}
    	{{else}}
    		<section class='ArticleS1 ipsType_normal ipsSpacer_both'>
    			{{if count($records)}}
    				{{foreach $records as $id => $record}}
              
             
                       {{if ($id >= 0)}}
    					
    						<div class='ipsGrid ipsGrid_collapsePhone'>
    					{{endif}}
    					
    							<div class='ipsGrid_span4'>
    	<article class='{{if $record->hidden()}}ipsModerated{{endif}}'>
     	<div class="record-image">
        	{{if $record->record_image}}
          		{{if $record->isFutureDate() || $record->mapped('pinned') || $record->mapped('featured')}}
    				<div class="badges"> 
    					{{if $record->mapped('pinned')}}
    						<span data-ipsTooltip title='{lang="pinned"}'>{lang="pinned"}</span>
    					{{endif}}
    					{{if $record->mapped('featured') and $record->mapped('pinned')}}
    						<span> / </span>
    					{{endif}}
    					{{if $record->mapped('featured')}}
    						<span data-ipsTooltip title='{lang="featured"}'>{lang="featured"}</span>
    					{{endif}}
    				</div>
    			{{endif}}
          		
    				<a href="{$record->url()}" title="{lang="read_more_about" sprintf="$record->_title"}">
            			<img class="ipsImage" src="{file="$record->record_image" extension="cms_Records"}">
         			</a>
          	{{endif}}
    	</div>
      	<div class="record-content">
          	
          <h2 class='record-title ipsType_pageTitle'>	
    			<a href="{$record->url()}" title="{lang="read_more_about" sprintf="$record->_title"}">	<a href="{$record->url()}" title="{lang="read_more_about" sprintf="$record->_title"}">{$record->_title}	</a>
    		</h2>
    		<section class='ipsType_normal ipsType_richText ipsType_break' data-ipsTruncate data-ipsTruncate-size='4 lines' data-ipsTruncate-type='remove'>
    			{$record->truncated()|raw}
    		</section>
          	
          
            <div class='ipsDataItem_meta'>
    			{{foreach $record->customFieldsForDisplay('listing') as $fieldId => $fieldValue}}
    				{{if $fieldValue}}
    					{$fieldValue|raw}
    				{{endif}}
    			{{endforeach}}
    		</div>
          
     	 </div>
    	</article>
    							</div>  
    							{{if ($id) ==2 }}
                             
    							</div>
    					{{endif}} 
    				{{endforeach}}
    			{{endif}}
    		</section>
    	{{endif}}
    {{endif}}
    	

     

    The problem looks like here ???

    {{if ($id) ==2 }}

  7. nope, it again failed.

    I will be grateful ever, if you help me please

     

    below is the code I added:

    <div style="margin: 10px;padding:8px 8px;color:#222;font-size:20px; font-weight: 400;text-align:center;">
    <p>Join The Doc's Global Community </p>
    <a href="http://thedoc.org/register" class="ipsButton ipsButton_medium ipsButton_important">Sign up now.</a>
    </div>
    <div class="ipsBox ipsPad">
    <center><h2 class="ipsType_sectionHead">or Connect with: </h2></center>
    <p class="ipsType_normal ipsType_reset ipsType_light">Connect via one of these sites.</p>
    <br>						
    <div class="ipsPad_half ipsType_center">
    <a class="ipsButton ipsButton_verySmall ipsButton_fullWidth ipsSocial ipsSocial_facebook" href="https://www.facebook.com/dialog/oauth?&client_id=1015912021806320&scope=email&redirect_uri=http://thedoc.org/applications/core/interface/facebook/auth.php&state=front-9e7e862f0ada9331ea906bc4f87afc94-aHR0cDovL3RoZWRvYy5vcmcvcmVnaXN0ZXI=">
    <span class="ipsSocial_icon"><i class="fa fa-facebook"></i></span>
    <span class="ipsSocial_text">Sign in with Facebook</span>
    </a>
    </div>
    <div class="ipsPad_half ipsType_center">
    <a class="ipsButton ipsButton_verySmall ipsButton_fullWidth ipsSocial ipsSocial_twitter" href="http://thedoc.org/login/?loginProcess=twitter&ref=aHR0cDovL3RoZWRvYy5vcmcvcmVnaXN0ZXI=">
    	<span class="ipsSocial_icon"><i class="fa fa-twitter"></i></span>
    	<span class="ipsSocial_text">Sign in with Twitter</span>
    </a>
    </div>						
    <div class="ipsPad_half ipsType_center">
    <a class="ipsButton ipsButton_verySmall ipsButton_fullWidth ipsSocial ipsSocial_google" href="https://accounts.google.com/o/oauth2/auth?&response_type=code&client_id=436215689889-dduu78t3bsdkcqrbee60766dnq7hpe66.apps.googleusercontent.com&redirect_uri=http://thedoc.org/applications/core/interface/google/auth.php&scope=https://www.googleapis.com/auth/plus.login%20https://www.googleapis.com/auth/userinfo.email%20https://www.googleapis.com/auth/userinfo.profile&access_type=offline&state=front-9e7e862f0ada9331ea906bc4f87afc94-aHR0cDovL3RoZWRvYy5vcmcvcmVnaXN0ZXI=">
    <span class="ipsSocial_icon"><i class="fa fa-google-plus"></i></span>
    <span class="ipsSocial_text">Sign in with Google</span>
    </a>
    </div>
    </div>

     

×
×
  • Create New...