Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. No you misunderstand...... Or I misunderstand what you want. Here is the topic with a guest viewing it . It shows the 4 for the post the admin entered and the 3 for the post the member added. tester Newbie Members < Guests | Administrators | Moderators 3 posts Posted 25 June 2013 - 03:59 PM ::3 Speciaal berichtAlleen zichtbaar voor leden met een speciale status.Report #2 Lock Down Administrator Administrators < Guests 6 posts Posted Today, 05:14 PM ::4 Speciaal berichtAlleen zichtbaar voor leden met een speciale status.
  2. I changed nothing except removing the if statement for the $_content... That is why it shows 4 when I was logged in as admin and 3 when I was logged in as member.
  3. If you are creating it then why would you check right after it. But really doesn't matter. Here is my test with your code ... I used this as admin group 4 [vip] is my group id!![/vip] got this BBCode Test:::4 Speciaal berichtAlleen zichtbaar voor leden met een speciale status. and in forums a test member got this Posted Today, 11:59 AM ::3 Speciaal berichtAlleen zichtbaar voor leden met een speciale status. Working just fine for me..
  4. Where are you getting $_content from?? I do not see it defined or passed anywhere.. You check to see if it exists before the group id....
  5. Export the bbcode and post a link and I will look at it. If you have a custom file or modified the deafaults.php post them also. Have you tried adding var_dump($this->memberData) just before the if to see what is in the member array??
  6. Phun is correct. Do not use straight html. Use a php script the echos the html and check if it is a member trying to execute it.
  7. try changing this if($this->memberData['member_group_id']=="1" || $this->memberData['member_group_id']=="2" || $this->memberData['member_group_id']=="8") to this if ( in_array($this->memberData['member_group_id'],array(1,2,8)) )
  8. Are you trying to get the poster of a topic group or the member logged in group?? Your if seems to be for the member logged in.
  9. In acp > members > validating You can choose the check each member on right or prune at top
  10. acp > Log In Management > IPB Internal (click pencil on right) Login Type
  11. In acp > Tools & Settings > Recount & Rebuild have you tried running Rebuild Content [Posts, Calendar Entries, Private Messages, Announcements, Signatures, etc. for the post content??
  12. Do you have any external links like ads or such on your site? This could cause t to timeout and not show page. Also does it happen on all skins? Does it happen to you?
  13. [*]pc [*]playstation [*]xbox That should be in the class. Except bullet instead of square. Check your css. .post.entry-content ul, ul.bbc ul.bbc ul.bbc, .as_content ul {list-style-type: square;}
  14. View the page source and see what the html says for that list.
  15. This already has the read more in it... <div class='ipsType_textblock ipsPad'> <if test="truncateTopic:|:$this->settings['portal_topic_truncate']"> {IPSText::truncate( IPSText::getTextClass( 'bbcode' )->stripAllTags( strip_tags( $topic['post'], '<br>' ) ), intval( $this->settings['portal_topic_truncate'] ) )} <div class='ipsPad_half'> &nbsp;<a href='{parse url="showtopic={$topic['tid']}" base="public" seotitle="{$topic['title_seo']}" template="showtopic"}' class='right clearfix'><span class='ipsButton_secondary'>Read More</span></a> </div> <else />{$topic['post']}</if> <!--IBF.ATTACHMENT_{$topic['pid']}--> </div>in acp > Manage Unreal Portal > Portal Main Limit news to x characters? yes NoNumber of characters to limit news to?Note that this WILL break any HTML tags if they haven't been closed at the end of x characters
  16. PMing me a default template was no help. The template you seek is probably this oneTemplates > Article Templates > Editing template: Front Page (Single Column) This is what you want to remove for read more not to show <a href='{$record['record_link']}' class='read_more'>{$this->lang->words['fpdt_readstory']}</a> this is what you want to change to have the complete article show on front page {IPSText::truncate( strip_tags( IPSText::getTextClass('bbcode')->stripAllTags( $record['article_body'] ) ), 255 )} change to this {IPSText::getTextClass('bbcode')->stripAllTags( $record['article_body'] )}
  17. Read more function is just a php function to show a selected number of characters from the post and add a pointer for the url. Show us the code you are using to create your block.
  18. Give me the link to one of your articles or ?? That is showing the read more..
  19. Which one are you referring to below???
  20. Check your template and click custom and find a line similar to this one <span class='desctext'>{IPSText::truncate( strip_tags($r['content']), 32 )}</span> Or go through the setup and look in filters (usually).
  21. Yes of course. Usually it asks how many characters you want to use. Have you tried 0 characters to retrieve all?
  22. If you can't look at the acp sql error logs then use ftp to look for the sql_error_latest.cgi file inthe cache folder and show the contents here.
  23. Use ftp to edit that file as Para said..
×
×
  • Create New...