Jump to content

Cookie Monster

Moderator
  • Posts

    1,420
  • Joined

  • Last visited

  • Days Won

    76

Everything posted by Cookie Monster

  1. I would not advise to do this and there is 2 reasons for it. 1) SEO. SEO is importent for Google and it will read the file, the only reason the number is there is to identify the board and make it unique. This connects to point 2) 2) Lets say the a scanario, you create general-chat now in another board you create general-chat for this. This will then confuse the app as it does not know which one you are refering to. Top it off even google will start penalize you as you are loop linking and this is not something google links. Glad you fixed the issue but again have a note on those two things.
  2. Also because of the last post i would recommend on top of that to do a SQL Repair of all tables. If that would fail, i concur with what @Davlin just suggested check the lang.xml file or pass it to him. What version are you using ?
  3. Just remove the hints inside content="" That way you keep the after styles but no |up
  4. I think this can be solved by using a MySQL Trigger so on insert or update of a certain fields we trigger something else. If not i presume you could always trigger it with group promotion / rules, and or some minor tweaks i guess.
  5. If your going to hire someone for this what's the price your paying for getting it done?
  6. I would just write a tiny bit of jquery to make this work. $(document).ready(function() { $("a").live("click", function() { if (this.href.indexOf("yourwebsite.com") == -1) { window.open(this.href, "target=_blank"); return false; } }); }); replace ofc yourwebsite.com and also put it in custom.js or create it. This will add all A links and attach target blank to them IF they ar enot part of yourdomain.com
  7. This is for the IPS Support and not phpBB. phpBB offer free support on their own forum so I would suggest asking there Closing topic.
  8. AdminCP > System > Site Features > Menu Manager Reorder so its not a child of Browse.
  9. Here is a simpler and faster without fiddling with code. Hide in ACP #acpNewVersion { display: none; } Frontpage #elLicenseKey { display: none; } OR BOTH at the same time #acpNewVersion, #elLicenseKey { display: none; } AdminCP > Customization > Themes > Edit HTML & CSS > CSS > Custom.css Paste the code, no edits needed and it does not get overwriten like the above @TheNulledCore
  10. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  11. I know, all i said to add to your comment was, he needs to style it too. Your answer would be WHERE he can do it not HOW. So i just wanted to be helpful. And you don't even need custom HTML or CSS to do it. Well technically 1 line for a div. and then use built in IPS styles with references from here. https://invisioncommunity.com/4guides/themes-and-customizations/css-framework
  12. Just to add to it you will need to style it too
  13. I'm a multi browser person. As i work as a developer i need to test multiple browser's all the time. I do run chrome as my main browser, or Chromium.
  14. Check the console (f12 in chrome) for errors i would guess your having a javascript error
  15. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  16. It's asking for the tables to get the users from not to.
  17. Well then the error is it can't find the table if there is no table you need to specify what table to use to convert things ? if you just create the table nothing gets transfered as the table is empty
  18. So you have a table in your database that it can't find with user place check phpmyadmin and see if its the right name. Table is named swfansit (Presume a star wars fansite betaswf
  19. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  20. To build on this, i think you can use SQL and triggers to say, IF a INSERT is made into XYZ then count the number and insert the value into another field or table. https://www.w3resource.com/mysql/mysql-triggers.php So you can think of it like a PHP version, you tell SQL that IF an insert is run into the forum COUNT the topic and then UPDATE the table you want ?
  21. You can create the block yourself, and copy the code from Post Feed Block In IPS Pages you can create a block and use Post Feed Block as a template, then you edit the loop to only look for the first one or only display it like that. If you do not know how to code, you can use the marketplace here to hire a developer for you to do it.
×
×
  • Create New...