Jump to content

shahed

Clients
  • Posts

    507
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    shahed got a reaction from Askancy in Inserting internal image url to posts   
    Hello,
    As Admin, when i insert URL to internal image in a post, it's not just embedded as normal image (like very other users can), but it also treats it as new attachment upload. it's embedded and stored as attachment. is there a setting for it, so can be use for other user groups?
  2. Like
    shahed got a reaction from balazsp in Peacock Theme [Support Topic]   
    Update 1.2.0 for peacock Theme going to be a massive update with a lot of new features and functionality that will be release in near future.
    Summary of upcoming update 1.2.0
    Select style for User Hover Card:
    Update 1.2.0 will add a new section to theme settings: User Hover Cards (UHC). in this section, Admin can select one of three options to use as default UHC. 1) IPS Default 2)Horizontal 3)Vertical which last two are custom design and adopted to be use in Desktop/Tablet/Phone.
    Horizontal have special animation work so Demo will be a video clip:
    Vertical mode:

     
    User Hover Card section also gets a setting for making UHC with blur glass effect. can be set active/de-active and works on all styles. demo for default UHC:

     
    Select style for Page Title Box:
    Page Title Box have two mode in peacock theme as of now to show either inside the top cover image or in main area. when it's in top cover image , currently it is looks like this:

    Now this section have style select to make it in (Light mode/Dark mode/Pick color from palette)... addition to that, there is option to show them with blur glass effect as well.
    Light mode with blur glass effect:

    Dark mode (Normal/Blur glass effect)


    Color palette mode (Normal/Blur glass effect) which picks color directly from color palette per user choice


     
    Blur glassy effect for Header Slider:

     
    Maximum width button
    With a maximum width button at bottom-side of peacock, in Desktop users can decide to browse website in normal default width or stretched and max width mode. button can be active/de-active by admin.


     
    per Forum color setting in Alternative Design:
    With this option is active, Alternative Design for Forums uses Featured color that being set for every forum to display:

     
    Update will also adds many optimizations and refinements to various areas, included: buttons, widgets, color palette and ...
    Important Note: After this release peacock theme will see a price increase as well.
  3. Thanks
    shahed reacted to Amy Pond in Peacock Theme [Support Topic]   
    Wow, this is wonderful! 
  4. Thanks
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    Update 1.2.0 for peacock Theme going to be a massive update with a lot of new features and functionality that will be release in near future.
    Summary of upcoming update 1.2.0
    Select style for User Hover Card:
    Update 1.2.0 will add a new section to theme settings: User Hover Cards (UHC). in this section, Admin can select one of three options to use as default UHC. 1) IPS Default 2)Horizontal 3)Vertical which last two are custom design and adopted to be use in Desktop/Tablet/Phone.
    Horizontal have special animation work so Demo will be a video clip:
    Vertical mode:

     
    User Hover Card section also gets a setting for making UHC with blur glass effect. can be set active/de-active and works on all styles. demo for default UHC:

     
    Select style for Page Title Box:
    Page Title Box have two mode in peacock theme as of now to show either inside the top cover image or in main area. when it's in top cover image , currently it is looks like this:

    Now this section have style select to make it in (Light mode/Dark mode/Pick color from palette)... addition to that, there is option to show them with blur glass effect as well.
    Light mode with blur glass effect:

    Dark mode (Normal/Blur glass effect)


    Color palette mode (Normal/Blur glass effect) which picks color directly from color palette per user choice


     
    Blur glassy effect for Header Slider:

     
    Maximum width button
    With a maximum width button at bottom-side of peacock, in Desktop users can decide to browse website in normal default width or stretched and max width mode. button can be active/de-active by admin.


     
    per Forum color setting in Alternative Design:
    With this option is active, Alternative Design for Forums uses Featured color that being set for every forum to display:

     
    Update will also adds many optimizations and refinements to various areas, included: buttons, widgets, color palette and ...
    Important Note: After this release peacock theme will see a price increase as well.
  5. Thanks
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    Sure, you're quite welcome 👍
     
    Not at all. but i really hope you could find those classes by yourself for future uses. Inspect feature with browser.
    In this case, i'm not sure what chatbox means here. you mean in PM/Messages? can you send me screenshot or link?
  6. Like
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    Glad that helped. about positive-light, this one is among many others are variables coming from IPS theme's root. there are not many options for them, but you can customize the same way in custom.css:
    :root { --positive-light: #87af9e !important; }  
  7. Thanks
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    Hello,
    Those CSS styles that i send for custom.css, need to be expand based on your need. in it's current form it works only for "body" element. you may notice there are three "body {...}" in those styles, so every other HTML elements in your theme that have it's own font sizes, still retain their styling. you can find HTML element's css class with your browser's "Inspect" ability. for example this:

     
    This part is one of the sections in your screenshot, that need different font-size in phone screen. it uses ".ipsType_normal"... and you can style it for font size by expanding previous code, like this:
    /* Phone */ @media screen and (max-width: 767px) { body { font-size: 10px; } .ipsType_normal { font-size: 10px !important; } } As you can see i only made expand in Phone classes, so you can do this in Desktop/Tablet separately as well if needed. also you can use " !important" to prioritize the style you currently work. you can find other element's css classes just like this and try to give it custom styling this way.
  8. Thanks
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    For this theme? there are ACP screenshots from theme settings in marketplace page.
  9. Like
    shahed got a reaction from Amy Pond in Peacock Theme [Support Topic]   
    For this theme, some elements have font size setting for mobile device, namely Mobile Navigation. you can change main link sizes with different values to see changes in mobile screens. there is also IPS settings for each theme. you can find in Theme settings > Font Scale... but of course it's not always affect in mobile view.
    In my opinion the best way to handle this and target specific area, is using your theme's custom.css for some responsive designing. for example with this method you can change body text in desktop/tablet/phone if you add it in custom.css:
    /* Desktop */ body { font-size: 14px; } /* Tablet */ @media screen and (max-width: 977px) { body { font-size: 12px; } } /* Phone */ @media screen and (max-width: 767px) { body { font-size: 10px; } }  
  10. Like
    shahed reacted to Amy Pond in Peacock Theme [Support Topic]   
    Got it, thank you!
  11. Thanks
    shahed got a reaction from Steph40 in Peacock Theme [Support Topic]   
    Unfortunately i don't have small enough screen to test and confirm this issue, but i think having option for custom height for those menu in Tablet/Mobile screens should resolve this. so it will be add in next update... for now please use this class in your custom.css and see if this works in small screens.
    @media screen and (max-width: 767px) { .mvn_peacock_moreMenuMobile_container { height: 460px; max-height: 460px; } }  
  12. Like
    shahed reacted to Matt in A sneak peek...   
    Even though we're not quite ready to go super in-depth about Live Topics, our live question and answer event platform built into Invision Community, we're very excited to share a sneak peak!
     
    Let us know what you spot!
  13. Thanks
    shahed reacted to Mascot Insider in Peacock Theme [Support Topic]   
    Thanks so much :)! I do appreciate the help and am loving it already.
  14. Like
    shahed got a reaction from DSystem in Legend Styler - Downloads [Support Topic]   
    New version for this resource has been accepted recently.
    Changelog for 1.1.1
    Add new option: Category view > Display prefixes Add new option: Category view > Theme: List > Display two item per line Add new option: File view > Simplify submitter links Add new feature: File view now fully support widgets in both Custom theme 1 and 2 via widget manager Fixed bug regarding File view > Custom theme 2 > long titles overlapping the download button Fixed bug regarding File view > Custom theme 2 > container boxes now fit to sides in chrome Fixed bug regarding File view > Custom theme 1 > colliding boxes may break in certain desktop screen resolutions  
    Most important feature with this update is now both File View themes can accept sidebar widgets. Demo with theme 1.
  15. Like
    shahed reacted to Gary in Invision Insight: 4.7.7 Beta 4 and a teaser!   
    Welcome to this week's Invision Insight!
    How's everyone liking the new look to Gallery?! We want to hear all of your feedback, so please visit this topic and take advantage of the testing phase so we can keep it all centralised for easy reference.
    On other news, Live Topics is almost ready for its beta release! In December last year we mentioned this new feature coming to the suite and it is definitely something many communities will benefit from. I promise we will provide more details soon!
     
    New Version
    We have released a new beta version of Invision Community, 4.7.7 Beta 4.
    For those that would like to try the beta on their communities, please follow the link below. Last week I wrote about how you can opt-in to beta releases for both Cloud and self-hosted clients.
    As always, please back up your communities before upgrading to any beta releases.
     
    GraphQL
    The GraphQL API is here!
    GraphQL describes itself as a query language for APIs that gives clients the power to ask for precisely what is needed and nothing more.
    I won't go into too much detail here of course; but @Daniel F has got you covered and went into great detail to explain this new addition to Invision Community.
     
    Recent Event
    Our February 2023 Release Chat happened this week, but if you missed it, don't stress as you can watch the recording below. Please post your questions and we'll do our best to answer them.
     
    Changelog
    Here's what the dev team have been working on over the last seven days:
    See you in the community and next week right here for another Invision Insight! I look forward to hearing from you all!
    Thank you everyone! 🦘
  16. Like
    shahed got a reaction from Nathan Explosion in Continue support of some of my Marketplace resources   
    Thanks a lot to both @Daniel F and @Nathan Explosion
    I have tested this and it works as intended. i will soon submit the updated version 👍
  17. Thanks
    shahed reacted to Nathan Explosion in Continue support of some of my Marketplace resources   
    return array_merge(parent::getAllowedCssClasses()....
  18. Thanks
    shahed reacted to Daniel F in Continue support of some of my Marketplace resources   
    Something like following code should work.
    protected function getAllowedCssClasses() { return array_merge(parent::getAllowedClasses(), ['MVN_infoboxes_container','MVN_infoboxes_container-left'....]); }  
  19. Like
    shahed got a reaction from Nathan Explosion in Continue support of some of my Marketplace resources   
    For this resource the Drama i think is over.
     
    Thanks everyone involved here, specially @Nathan Explosion for suggestion and @ZakRhyno 👍
    With this format, i think it should be possible for other similar resources like graphic files to be submit in marketplace. 🤔
  20. Thanks
    shahed got a reaction from Sirmadsen in Legend Styler - Downloads [Support Topic]   
    Will work on it 👍
     
    Thanks for the report. i will look into these as well.
     
    Sure. glad you liked it 👍
  21. Like
    shahed got a reaction from Unlucky in Continue support of some of my Marketplace resources   
    Hello,
    Some of my Marketplace resources are received updates as far as IPS ver 4.4, which is gonna be removed soon and out of support entirely by IPS. the most requested and frequently wanted of them is Infobox buttons and by their nature, only can be install like a normal CKEditor plugin, as .zip files... and since .zip files can't be upload in marketplace anymore as of IPS ver 4.5 forward, simply updating this resource is also stopped. I really like to continue support this, specially as of recent I have re-created them from scratch with dozens of new features and settings, but as I said there is no way to send .zip buttons along main plugin and xml file.
    is it possible for IPS to accommodate for such submissions in future? just adding ability to upload additional file for plugins/app in marketplace should do the job. in Theme submission it's possible, so why not for plugin/apps? or maybe there are better way to this? as long as it solve the problem, that would be fine.

  22. Like
    shahed reacted to Nathan Explosion in Continue support of some of my Marketplace resources   
    You can do the above with a plugin too.
  23. Thanks
    shahed reacted to Nathan Explosion in Continue support of some of my Marketplace resources   
    Overkill, probably, but this would solve the situation:
    Create an application, with a single admin module Add the zip file as a resource in the application The admin module could then display instructions on what to do, along with a link to the zip file to allow it to then be downloaded and manually installed by the user POC
    (NE) Zip file example 1.0.0.tar
    plus dev folder
    neappzipfile.zip
     
     
  24. Thanks
    shahed reacted to Randy Calvert in Continue support of some of my Marketplace resources   
    This was discussed in a different topic.
    Unless the resource is an application or plugin, it would not be supported in marketplace. The suggestion was to attach the file to a forum post. 
  25. Thanks
    shahed reacted to ZakRhyno in Continue support of some of my Marketplace resources   
    I was curious about this as well, any word from, IPB staff could give feedback?
×
×
  • Create New...