Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
TAMAN Posted June 8, 2017 Author Posted June 8, 2017 1 hour ago, dokdok said: One question: Would you be able to prepare widgets by only activating them when they serve? For example, create a specific widget for a category of members to use only on some occasions and not always fixed. It would be convenient to enable / disable it whenever you want, without having to create it again each time mmm, not possible right now but maybe in next few updates dokdok 1
dokdok Posted June 12, 2017 Posted June 12, 2017 I just updated with the new version: before I had 2 fixed widgets but after updating the result is this ... How can I fix the problem?
TAMAN Posted June 12, 2017 Author Posted June 12, 2017 (edited) 4 minutes ago, dokdok said: I just updated with the new version: before I had 2 fixed widgets but after updating the result is this ... How can I fix the problem? I had to chnage the widget key which probably can cause this on update im afriad But you just need to re-add your widgets simply drag and drop another widget you can also edit this widgets that doesnt work and then copy paste contents if you want Edited June 12, 2017 by TAMAN dokdok 1
dokdok Posted June 12, 2017 Posted June 12, 2017 Done! All perfect... Thanks so much! P.S. Do I have to change this setting now or can I leave it as it is? TAMAN 1
TAMAN Posted June 12, 2017 Author Posted June 12, 2017 1 minute ago, dokdok said: Done! All perfect... Thanks so much! P.S. Do I have to change this setting now or can I leave it as it is? It doesn't matter anymore, choose whichever you prefer dokdok 1
Wonster Posted July 3, 2017 Posted July 3, 2017 (edited) @TAMAN Can the normal widget show only on one page? Example: the first page of articles, but not when viewing records Edited July 3, 2017 by amator
TAMAN Posted July 3, 2017 Author Posted July 3, 2017 (edited) 11 minutes ago, amator said: @TAMAN Can the normal widget show only on one page? Example: the first page of articles, but not when viewing records No, IPS widgets dont work like this, If you add a widget in a "Pages" page and any widget not anything from "Advanced custom widgets" this widget will show everywhere in that page, and that is not up to me, thats how widgets work, But i think you could use a custom css to hide the widget from certain places Edited July 3, 2017 by TAMAN
Wonster Posted July 4, 2017 Posted July 4, 2017 7 hours ago, TAMAN said: IPS widgets dont work like this That's bad when you put a message intended only for first page, but it shows in all records
TAMAN Posted July 4, 2017 Author Posted July 4, 2017 (edited) New update and two more settings to customize the fixed widgets. Switcher type. You can now choose if you wanted the switcher to save and remember the toggle, for example if you open a fixed widget, you need to toggle to close even after page refresh Switcher style. You can now select from two different switcher styles. On 6/6/2017 at 2:02 AM, Cyrem said: Considering the use case of a embedding a chat widget, will the floating widgets remain open if I change pages (through use of a cookie)? or will I need to re-open the widget? This setting has been added, you can check the demo page to test Edited July 4, 2017 by TAMAN Wonster 1
Joey_M Posted July 8, 2017 Posted July 8, 2017 This might seem like a stupid question but does this work only for your themes @TAMAN?
TAMAN Posted July 8, 2017 Author Posted July 8, 2017 20 minutes ago, Joey_M said: This might seem like a stupid question but does this work only for your themes @TAMAN? No. why would do that! this works with any themes, it doesnt actually has anything to do with themes tho Joey_M 1
Cyrem Posted July 9, 2017 Posted July 9, 2017 On 7/4/2017 at 9:05 PM, TAMAN said: This setting has been added, you can check the demo page to test Thank you!! TAMAN 1
Steph40 Posted September 4, 2017 Posted September 4, 2017 Hi @TAMAN e I am using this with Behemoth Dark and Light version and let the user pick which version he wants. Is there a way the the widgets color change according to the theme that the user picks? Thanks
TAMAN Posted September 4, 2017 Author Posted September 4, 2017 3 hours ago, Steph40 said: Hi @TAMAN e I am using this with Behemoth Dark and Light version and let the user pick which version he wants. Is there a way the the widgets color change according to the theme that the user picks? Thanks Yea, you can manually change the colors in custom.css to use theme color settings instead
Steph40 Posted September 4, 2017 Posted September 4, 2017 @TAMAN What class do I use? I looked in your advancedcustom_widgets.css but can't figure it out.
Steph40 Posted September 4, 2017 Posted September 4, 2017 @TAMAN Got the title and the content background with this: .fw_Container .fw_Widget_inner{ background-color: #18191D !important; } .fw_Container .fw_Widget_inner .ipsWidget_title{ background-color: #232020 !important; } I just need the text color changed to #ffff in the content now.
TAMAN Posted September 4, 2017 Author Posted September 4, 2017 (edited) why would you use static colors? the widgets already have color settings to change what i mean by theme colors is to replace the widget color settings with theme color settings so it takes the color from your theme Be patient i will post you something once i get to my pc Edited September 4, 2017 by TAMAN
TAMAN Posted September 4, 2017 Author Posted September 4, 2017 @Steph40 Add this to custom.css on any of my themes and the fixed widget colors will match to theme colors .fw_Container .fw_Widget_inner{ background-color: {theme="widget_bg"} !important; border: 1px solid {theme="widget_borders"} !important; } .fw_Container .fw_Widget_inner .ipsType_richText { color: {theme="text_color"} !important; } .fw_Container .fw_Switcher .fw_Arrow, .fw_Container .fw_Switcher .fw_Arrow::before, .fw_Container .fw_Arrow::after{ background-color: {theme="widget_title_bar"} !important; } .fw_Container .fw_Switcher .fw_Arrow{ color: {theme="widget_title_font"} !important; }
Steph40 Posted September 4, 2017 Posted September 4, 2017 1 hour ago, TAMAN said: Add this to custom.css on any of my themes and the fixed widget colors will match to theme colors Thank you, worked better then my version, only missed this for the title bar: .fw_Container .fw_Widget_inner .ipsWidget_title{ background-color: {theme="widget_title_bar"} !important; } Thanks again
Steph40 Posted September 10, 2017 Posted September 10, 2017 @TAMAN I want to add images that are in the media section of the pages app. I use html widget and add: <img src="{media="pictures/internet.png"}" > The picture is not showing, what am I doing wrong.
TAMAN Posted September 10, 2017 Author Posted September 10, 2017 (edited) 39 minutes ago, Steph40 said: @TAMAN I want to add images that are in the media section of the pages app. I use html widget and add: <img src="{media="pictures/internet.png"}" > The picture is not showing, what am I doing wrong. PHP is not allowed in widget it is only HTML and TXT but you can add the raw image links Edited September 10, 2017 by TAMAN
Steph40 Posted September 10, 2017 Posted September 10, 2017 Just now, TAMAN said: PHP is not allowed in widget it is only HTML and TXT but you can add the raw links if the images Ok thanks
AltarRS Posted October 4, 2017 Posted October 4, 2017 It seems as if there is some kind of forced boarder around the custom block so when I add an HTML discord widget it doesn't take up the full space of the block. Is there any way I can fix this? TAMAN 1
Recommended Posts