Jump to content

media

Clients
  • Posts

    3,242
  • Joined

  • Last visited

  • Days Won

    3

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by media

  1. That did the trick.... 🙂 All 3 scripts are working again... Please send me PayPal email.... Thank you so much.... 🙂
  2. Dates are not in translated language???? Not sure what to do with this, when switch the language dates are still in English???
  3. I did that one is not highlighted, not translatable
  4. I have 3 small scripts (They all look like above) needs to be updated for IPB 4.6.2 (It was working with previous version of IPB which was 4.5), I will pay for it if someone will fix these? Please PM if you interested Thanks
  5. Also, on the screenshot 9 Badges Earned Even I have translated Badges Earned, did not swap the translation on the page... Looks like that text not coded on the script...
  6. Great got the first part Adriano, how about dates????
  7. Here is a screenshot. Only ones that circled are missing and also why are the date are still English even browser language and site language is different... But this date problem is everywhere, does not matter what language you picked for computer language always displayed in English
  8. I have upgraded to IPB 4.6.2 and one of my custom script needs to get updated... After upgrade it is not working anymore... (Take latest 10 post and displays) I need help <?php ///////////////////////////// // User Editable variables // ///////////////////////////// // Change this to the number of posts you would like to show. $numberOfPosts = 10; // If you would like this mod to cut topics after a certain character length, leave this at 1. Otherwise, change it to 0. $showtopiclength = 1; // Length of title to display before cutting off. If topic title length exceeds this value, it is followed by ellipses (...) // Only useful if the above varaible is set to 1. $topiclength = 120; // Add forumid's to exclude from. For example, you might want to exclude your private forums so that posts from it // do not show up. Seperate each forumid by a comma and ensure there's no spaces in between. $forumexclude = "785,182,815,293,288,289,191,771"; /* * Formatting method to use * LONG, SHORT, SHORT2, JOINED, DATE, TINY, TIME */ $dateFormat = 'DATE'; /* * Set to 1 disable relative dates */ $noRelativeDate = 0; /* Enabled full relative dates (Example: x minutes ago ) */ $fullRelative = 1; /* * Templates */ /* * Use {$post['_last_post']} to show the time of the last post */ function postRowTemplate($topic) { return <<<EOF <div style="padding: 2px"> &#8226; <a target="_top" title='{$topic->title}' href="{$topic->url()->setQueryString('do', 'getNewComment')}">{$topic->title}</a> Gönderen: {$topic->last_poster_name} </div> EOF; } function outputWrapper($output = '') { return <<<EOF <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <style type='text/css'> body { background-color: #E9E9EA; font-family: Verdana; font-size: 10px; } </style> </head> <body> {$output} </body> </html> EOF; } require 'init.php'; $whereClause = []; $whereClause[] = ['approved = 1']; $whereClause[] = ['forum_id NOT IN (' . $forumexclude . ')']; $topics = \IPS\Db::i()->select('posts, last_poster_name, last_poster_id, title, title_seo, tid, forum_id, last_post', 'forums_topics', $whereClause, 'last_post desc', $numberOfPosts); foreach (iterator_to_array($topics) as $t) { $topic = \IPS\forums\Topic::load($t['tid']); if ($showtopiclength === 1 && mb_strlen($topic->title) > $topiclength) { $topic->title = mb_substr($topic->title, 0, $topiclength); } $output .= postRowTemplate($topic); } echo outputWrapper($output); Any help apricated
  9. media

    Translit URL

    Sonya, would you please please let us know? thank you so much
  10. Looks like this topic is dead !!!!
  11. @Fosters Is this ready for IPB 4.6 version???? Thanks
  12. Hi @CodingJungle, 4.6 about to release, would you please let us know if this app is compatible with the new ipb 4.6???? Thank you
  13. media

    Translit URL

    Hi @Sonya* 4.6 is on the way, would please let us know if this is going to be compatible with new version? Thank you so much
  14. @Fosters are you getting this message or NOT?????
  15. How about this problem?????
  16. Under navbar is not working @Fosters
  17. Sorry I meant new window NOT Tab... I think I got confused about new tab and new window What I am saying: I thought all links does not matter widget or not from your site won't open a new window nor tab???? But that's NOT true... Some widgets open new tab or window...!!
  18. So you are saying that even topic is from your forum, it opens a new tab, it does not follow the single URL function (not open a new tab) What Morrigan says it is true, if you post a topic link always open a new tab, but if you post a clean link from URL other part of your website, it won't open new tab.... Correct????
  19. Just testing here I just tested, it is happening here too....
  20. Hi @bfarber, Ok I figured it out; looks like normal (clean URL no widgets) links from my website is working but if i add a widget (topic widget or promoted links widget) system is forcing to open a new window???? Is this the way this works, widgets are not included to NOT forcing part????
  21. Did something change on posting link? use to be if anything from our own domain it did not force to open new window? I see anytime i post a link from my own board domain, it is forcing to open a new window Anyone?
×
×
  • Create New...