Jump to content

Cookie Monster

Moderator
  • Posts

    1,420
  • Joined

  • Last visited

  • Days Won

    76

Everything posted by Cookie Monster

  1. Should be in settings (Click on your icon / name top > Account Settings > Signature>
  2. I want cookies! Feed me cookies! :cat:

  3. -Edited- AdminCP > Members > Moderators > Edit the group / user Make sure you click "Uncheck all" This will give you posibility for adding manual permissions
  4. Try see if you can add only a user on the same level does it give you the options then ?
  5. AdminCP > Members > Moderators > Edit (Pencil on group or user) This should give you something like this
  6. So two steps. Create a moderator / Moderator group AdminCP > Members > Moderators Here you can add your moderators either as a group (any usergroup) or as a single person Once added you can edit their permissions. Under the setting "Forum" you can add the forums they are allowed to moderate. If all is selected person / group is a global moderator. You can also set permissions for warnings, locking topics etc. Hope this helps :)
  7. Also make sure you check your .htaccess file that its not set to redirect the wrong way. Technically you can try replace your .htaccess file with this code and see if it works (should be pretty standard) <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase /forums/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule \.(js|css|jpeg|jpg|gif|png|ico)(\?|$) /forums/404error.php [L,NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /forums/index.php [L] </IfModule> This is based that the forum is in yourdomain.com/forums If its not please edit the /forums/404error.php to correct path. (this is just a 404 error page I have, so if you dont have it remove the line.
  8. Welcome to Webflake! Make sure you read the Community Guidelines and enjoy your stay!
  9. The code for edit is either in .author_info or .user_details
  10. Not sure if this trick will work. But you can try this youtube plugin Should be extracted to /applications/core/interface/ckeditor/ckeditor/plugins Make sure the folder is writable. Also you can change some configuration in the config.js file.
  11. So how about this <!DOCTYPE html> <html> <head> <style type="text/css"> .innocent-class { background: url(http://www.google.com/images/logos/ps_logo2.png); width: 240px; height: 400px } .justForTesting, .advertise_ads { width: 240px; height: 400px; background: #fff } </style> </head> <body> <div class="innocent-class"> <!-- just don't call it "advertContainer" :) --> <div class="advertise_ads justForTesting"> advert here! </div> </div> </body> </html>When Adblock Plus finds an element with a class (for example) .advertise_ads, it will hide that element. If it does, the "please don't block my ads!" background-image (in this case, the Google logo) from the parent element will be visible. If the advert isn't blocked, the advert will cover the replacement image. Try changing advertise_ads to something else such as sdpfjsdfjp, and the advert will be visible.
  12. Hello and welcome to Webflake @Mihnea When you talk about forum icons. We talking FontAwesome icons ? or normal icons / images To change a category or forum icon, you can edit the forum and upload it there, like a image. AdminCP > Community > Forums > Select your Forum (Click on the pencil) > Icon
  13. U can't look at http://soultibian.6te.net/forum/index.php?/topic/3-teste/#entry13? Okay thanks for trying :/ Well you locked it down so need a membership and guests can't view it and i can't read spanish and answer questions to register :P
  14. I can't even see the difference on the two images. Could you explain a bit more what you are trying to achieve ?
  15. Isn't those borders like that just a <hr> ? I think technically you can just add <hr> where you want to have the break line. That should give you that bar :)
  16. Hello and welcome to Webflake! Is this for Invision Board ? Xeno Forum etc? Also if so a version would be great.
  17. The js directly into globbal template will not work. You can try to change <script type="text/javascript" src="/uploads/adblock_custom.js"></script>to <script type="text/javascript" src="http://yourdomain.com/directlinktofile/uploads/adblock_custom.js"></script>Just make sure you put the direct link to the file where its located. You can test this by pasting your direct link to the js in a browser and the script itself should show up. Not sure about the JS itself. I will have to look closer into it.
  18. Put it in globalTemplate or you can make a script in global template and load it yourself. The JS you can save lets say in /uploads and call it adblock_custom.js setTimeout(function(){ if($("#advertisment").css('display')=="none") { $('body').html("We noticed you have an active Ad Blocker. Example.com is ad funded, we promise our ads are of high quality and are unobtrusive. The best help you could provide to keep us running, is to whitelist us in your ad blocker. Thanks!"); } },3000);In AdminCP > Customization > Your Theme > Edit > Global Template (HTML) Between <head> and </head> you can put something like this. <script type="text/javascript" src="/uploads/adblock_custom.js"></script>
×
×
  • Create New...