Jump to content

Maniutek

Members
  • Posts

    122
  • Joined

  • Last visited

 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 Maniutek

  1. Hello! What I mean is that I have installed application version 1.0.3 (10003) I installed it on the old style, now I have uploaded a new style and this application does not work on it, and what do I do now?
  2. Hello! I have installed the modification is, I changed the style, ie wgrywałem new and how to have now activated a new style? Because the old works and on the new does not even show the statuses
  3. Hello! I ask again, I will try to explain it better ... The first question is whether you can set one of the fields as address, that someone pasted in this field link to the writing topic, this field will be available as a link that you will not need to copy the link, but do not you just click and open the new flounder, card? The second question, as it is with hiding these fields? I mean that, for example. I'll do the Password field, and that someone will complement and write about it, it's just the admin will see this field and others will see such stars or something similar?
  4. The idea is that if someone paste the link into the field, after writing the topic you can click the link, because now you have to copy the address, and zrobis hyperlinks .... I remember that I wrote about it once, and I was concerned about such a thing, that someone will write such a password, and a password will be visible tylkodla selected group and the other will be hidden ...
  5. Where to find this option?
  6. Welcome! I have a question, if you can do so that the selected field that will be completed will display as a link to the supplement?
  7. Best to do it at home online and see exactly what I mean ... Take two groups and add them a home and the other in the name of groups, add: <span class='defaultGroup admin'>GroupHome</span> custom.css /* Grupy */ .defaultGroup { border-radius: 2px; color: #fff; display: inline-block; font-weight: 500; letter-spacing: 0; padding: 0 15px; text-shadow: none; vertical-align: middle; font-size: 12px; height: 30px; line-height: 30px; box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.15) inset; } .GroupHome { background-color: #c75050; } .GroupHome:before { content: "\f005"; font-family: 'FontAwesome'; margin-right: 3px; } <span class='defaultGroup admin'>Others</span> custom.css /* Grupy */ .defaultGroup { border-radius: 2px; color: #fff; display: inline-block; font-weight: 500; letter-spacing: 0; padding: 0 15px; text-shadow: none; vertical-align: middle; font-size: 12px; height: 30px; line-height: 30px; box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.15) inset; } .Others { background-color: #c75050; } .Others:before { content: "\f005"; font-family: 'FontAwesome'; margin-right: 3px; }
  8. Still the same... I mean that your application showed a group of other bezwzgledu of whether they have added the icon or not, and then you should be fine
  9. I will try to explain it better: Here you have a screen with your modification, and original rank, ie pictures main rank administrator and others are dd2: Here you have added a picture rank and rank added css, both the rank of principal: <span class='defaultGroup admin'>Administrator</span> /* Grupy */ .defaultGroup { border-radius: 2px; color: #fff; display: inline-block; font-weight: 500; letter-spacing: 0; padding: 0 15px; text-shadow: none; vertical-align: middle; font-size: 12px; height: 30px; line-height: 30px; box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.15) inset; } .admin { background-color: #c75050; } .admin:before { content: "\f005"; font-family: 'FontAwesome'; margin-right: 3px; } Here rank index in css and the other is a graphic: And here you have the same rank of the graphics and the others, but as with the rest usnuę image rank and will add css as the main is it to me wo goals do not show nd here is my question, how do convert your application showed that additional, other groups even when you do not have the added picture ... Because from what I can see more, other group shows only how you have added the icon image and the group wants to It showed that without this whether or not the image I have ...
  10. Group Name : <span class='defaultGroup admin'>Administrator</span> Later to : custom.css /* Grupy */ .defaultGroup { border-radius: 2px; color: #fff; display: inline-block; font-weight: 500; letter-spacing: 0; padding: 0 15px; text-shadow: none; vertical-align: middle; font-size: 12px; height: 30px; line-height: 30px; box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.15) inset; } .admin { background-color: #c75050; } .admin:before { content: "\f005"; font-family: 'FontAwesome'; margin-right: 3px; } Effect: I would want to let it work on other groups and not just on the first major ...
  11. I know, and I understand that it works because for me it works as it should, but I wanted the modification so I can add rank in css rather than pictorial, and the first to rank me I add css the main and the additional reluctance ... You have a link below to rang css http://pecetowicz.pl/ips4-jak-dodac-rangi-w-css-t74897/
  12. Hello! All nicely landscaped, but I wanted to take advantage of this guide, and I can see that it still does not work, maybe some advice? http://pecetowicz.pl/ips4-jak-dodac-rangi-w-css-t74897/ Unless you have some other idea
  13. Hello! I have a question, is the ability to alter the modification that instead of an image showing the name of the group?
  14. Hello! My point is that such an additional box password, and the password can only see a select group, such as an administrator, and the rest see such stars ...
  15. Hello! And when you add the ability to disable the text editor? Because I see that you did it nicely that it is now over but he wanted me to turn off the editor :-) And the second question, if you can do so that the selected additional field sees only a select group?
  16. UPDATE `ibf_templates_fields_values` SET `item_id`=0 WHERE `item_id` IS NULL; UPDATE `ibf_templates_fields_values` SET `set_id`=0 WHERE `set_id` IS NULL; CREATE TABLE `ibf_templates_fields_values_new` LIKE `ibf_templates_fields_values`; ALTER TABLE `ibf_templates_fields_values_new` DROP INDEX `PRIMARY`, ADD PRIMARY KEY (`item_type`(229),`item_id`), CHANGE COLUMN `item_id` `item_id` BIGINT (20) NOT NULL DEFAULT 0 COMMENT '', CHANGE COLUMN `set_id` `set_id` BIGINT (20) NOT NULL DEFAULT 0 COMMENT ''; INSERT IGNORE INTO `ibf_templates_fields_values_new` SELECT * FROM `ibf_templates_fields_values`; DROP TABLE `ibf_templates_fields_values`; RENAME TABLE `ibf_templates_fields_values_new` TO `ibf_templates_fields_values`; UPDATE `ibf_templates_sets_containers` SET `container_id`=0 WHERE `container_id` IS NULL; CREATE TABLE `ibf_templates_sets_containers_new` LIKE `ibf_templates_sets_containers`; ALTER TABLE `ibf_templates_sets_containers_new` DROP INDEX `PRIMARY`, ADD PRIMARY KEY (`container_type`(229),`container_id`), CHANGE COLUMN `container_id` `container_id` BIGINT (20) NOT NULL DEFAULT 0 COMMENT ''; INSERT IGNORE INTO `ibf_templates_sets_containers_new` SELECT * FROM `ibf_templates_sets_containers`; DROP TABLE `ibf_templates_sets_containers`; RENAME TABLE `ibf_templates_sets_containers_new` TO `ibf_templates_sets_containers`; Hello! After updating the forum, I have such errors in the ACP> SUPPORT
  17. Hello! And if you can have two prefixes? One who is such a topic, and the other templates moderation?
  18. Hello! I have a problem, I try to do these question, and does not work ... I try to also fix after the administration panel, in the Support tab ... UPDATE `ibf_core_log` SET `time`=0 WHERE `time` IS NULL; ALTER TABLE `ibf_core_log` CHANGE COLUMN `time` `time` INT (10) NOT NULL DEFAULT 0 COMMENT 'Unix timestamp of log'; UPDATE `ibf_templates_fields_values` SET `item_id`=0 WHERE `item_id` IS NULL; CREATE TABLE `ibf_templates_fields_values_new` LIKE `ibf_templates_fields_values`; ALTER TABLE `ibf_templates_fields_values_new` DROP INDEX `PRIMARY`, ADD PRIMARY KEY (`item_type`(229),`item_id`), CHANGE COLUMN `item_id` `item_id` BIGINT (20) NOT NULL DEFAULT 0 COMMENT ''; INSERT IGNORE INTO `ibf_templates_fields_values_new` SELECT * FROM `ibf_templates_fields_values`; DROP TABLE `ibf_templates_fields_values`; RENAME TABLE `ibf_templates_fields_values_new` TO `ibf_templates_fields_values`; UPDATE `ibf_templates_sets_containers` SET `container_id`=0 WHERE `container_id` IS NULL; CREATE TABLE `ibf_templates_sets_containers_new` LIKE `ibf_templates_sets_containers`; ALTER TABLE `ibf_templates_sets_containers_new` DROP INDEX `PRIMARY`, ADD PRIMARY KEY (`container_type`(229),`container_id`), CHANGE COLUMN `container_id` `container_id` BIGINT (20) NOT NULL DEFAULT 0 COMMENT ''; INSERT IGNORE INTO `ibf_templates_sets_containers_new` SELECT * FROM `ibf_templates_sets_containers`; DROP TABLE `ibf_templates_sets_containers`; RENAME TABLE `ibf_templates_sets_containers_new` TO `ibf_templates_sets_containers`;
  19. Hello! Adds prefix in uppercase when you save changes to a small, how can I fix it?
  20. Hello! Thank you lovely work, agrees mistake I have and how far I have not found more I look forward to further update on these additives as above, I wrote about them
  21. Hello! So it is all defined in the subject ... A show is only one, and the rest of the lack ... But as you write a post show everything when editing ...
  22. Hello! The error disappeared, but it is further shown in the screenshot ... Namely, I have added 7 additional fields, and show only one, and as it fills one give me write, then I edit this post only show additional fields all ...
×
×
  • Create New...