MyBB.de Forum
Guest Warn - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: Guest Warn (/thread-31107.html)



Guest Warn - MyBB.de Bot - 09.12.2014

Eine neue Erweiterung wurde veröffentlicht: Guest Warn

Zitat:Description

Show an elegant warn for all guest of your forum.

Features 
  • Add an elegant warn in all pages of your forum for guests.

  • Removable warning.

  • jQuery effects.

  • Message editable.

  • Template editable.

  • CSS editable.
What is changed from the 3rd version?
  • Plugin rewritten from 0 for MyBB 1.8.x

  • You can choose what group can see the warn.

  • You can choose how many time you have to wait until the warn reappears.

  • You can edit the warn by global templates.

  • You can edit all CSS properties by theme manager of your ACP.

  • PHP structure improved.

  • Most stable version.
Installation

Copy the file "guestwarn.php" and "pluginlibrary.php" into "your_forum_folder/inc/plugins", go to PCA and activate it.

And.... Done!!!

Update from 3.0 

WARING: this is a major release, the plugin will remove all old settings. Please, make a backup copy of your old files and copy your warn message before to update.
Pay attention, 3rd version of this plugin is written for MyBB 1.6.x. It's unlikely that you have the 3rd version on MyBB 1.8.x unless you edited the compatibility from "avvisospiti.php".

Go to your Administration Control Panel >> Plugins and deactivate the old plugin.

Go to "your_forum_folder/inc/plugins" and delete "avvisospiti.php", go to "your_forum_folder/images" and delete:
  • -.png

  • +.png
Go into your forum folder and delete "get-cookie.php".

Now you have to install the plugin following the "Installation" guide.


Next version?

Stay tuned



RE: Guest Warn - taccodip - 21.12.2014

Bei mir wird die guestwarn.css nicht erzeugt. Kann ich diese selber erstellen ? Wenn ja mit welchem css code ?


RE: Guest Warn - MrBrechreiz - 21.12.2014

Kann ich so nicht bestätigen. Es wurde alles korrekt installiert.

Hier ist der Code.

Code:
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700);
@import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
    
.guest_warn {
  background: rgba(0,0,0,0.85);
  width: 300px;
  padding: 28px 23px 28px 23px;
  position: fixed;
  top: 50%;
  right: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  color: #fff;
  text-align: left;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

.guest_warn i.fa.fa-close {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 8px;
  right: 8px;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  cursor: pointer;
}



RE: Guest Warn - taccodip - 21.12.2014

Danke dir nun gehts !