Jump to content

ehren.

Clients
  • Posts

    3,055
  • Joined

  • Last visited

  • Days Won

    13

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by ehren.

  1. 9 hours ago, OlympusRyan said:

    Hello!

    Seems after I updated the theme for 4.7.1 it has actually messed up the search bar as well as some other plugins that go along with it. Website is practically not functioning with this new update under this theme. Any ideas for a fix?

    Hi there,

    This issue is likely happening only if themes were initially installed on 4.4, and have been upgraded since then using the "Upload new version" feature. This feature is usually the correct way to upgrade a theme, however all of my themes were recoded from scratch for Invision Community 4.5, which technically meant that a fresh theme install was required.

    Using the "Upload new version" feature for the 4.4 > 4.5 update meant that some old code from 4.4 was retained in the theme, even after being upgraded to 4.5. This is now causing the issue in 4.7.

    To fix this, you can either install a fresh version of the theme, or you can revert the quickSearch template file.

    To revert the file, open your Admin Panel and visit the Customisation > Themes area. Click the "Edit HTML and CSS" button next to your theme. If you're using the Simple theme editor, click the "Use advanced theme editing" button. Browse to core > front > global > quickSearch. Click the Revert button at the top right of the editor.

    I hope that helps!

  2. On 10/3/2021 at 11:48 PM, Square Wheels said:

    Hi,

    This appears to still be pending.

    It's a small cosmetic issue.

    Thanks

    Strange, can you send me a URL, username and password so I can check this myself? A regular member account is fine, I just need to see the actual Bookmark button.

  3. On 9/23/2020 at 2:53 AM, OlympusRyan said:

    Hello!

    When will this be updated for the new Invision?
    Thanks!

    Hello,

    I'm currently in the process of upgrading all of my themes to 4.5. Disperson is on the todo list, however I unfortunately don't have an accurate ETA just yet.

  4. For the sake of simplicity, just add !important to the end of that.

    [data-forumid="47"] .fa-comments:before {
     	 content: "\f025" !important;
    }

    The reason it's not working is because the code which is used to create the "lightbulb" icon (possibly added by ThemeTree) has a higher specificity.

  5. 3 minutes ago, GTAPoliceMods said:

    I tried messing with the settings in the Theme but is there anyway for me to edit the amount of transparency in the overall background? In my opinion there is too much transparency within our forums.

    Adding this to custom.css should do the trick!

    .ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ),
    .ipsBox, .ipsPageHeader, .focus-topic-compact .focus-topic, .ipsPager, .ipsWidget, .ipsBox_alt, #comments, 
    .focus-pickerWrap, .ipsfocus_megaFooter{
      background-color: {hextorgb="area_background_reset" opacity="0.9"};
    }

    Change the 0.9 value until you're happy with the result. It should be between 0 and 1.

  6. Hi @GTAPoliceMods

    There's a tutorial teaching you how to edit the background on the ipsfocus website. I've copy/pasted it here for you which should hopefully help you custimize your background 🙂

    ============

    Due to Chameleons blur and gradient effects, the process for adding backgrounds requires an extra step compared to other themes.

    -----

    This tutorial assumes I have uploaded an image under the "Background Picker" tab, in the "Image 2" slot. The image is 1600px in width and 1667px in height. These 3 values are necessary for this tutorial.

    Once you have uploaded your image, return to your theme list and press "Edit HTML and CSS". Choose the CSS tab, and open custom.css. This file will be pre-filled with background image sizes. Since we uploaded the image to "Image 2", all of our classes will be prefixed with .ipsfocus_bg2

    If you have disabled the background picker, replace .ipsfocus_bgx with .ipsApp

    -----

    To scale the image so it occupies 100% browser width (this is the default setting), use the following but replace 1600 and 1667 with your own image dimensions.

    {{if theme.picker_i2}}
    	
    	.ipsfocus_bg2 .background,
    	.ipsfocus_bg2 .box-blur{
    		background-size: auto calc(1667 / 1600 * 100vw);
    	}
    	.ipsfocus_bg2 .box-blur-image{
    		max-height: calc(1667 / 1600 * 100vw);
    	}
    	
    {{endif}}

     

    You can stop the tutorial at this stage if you just needed to change the image dimensions. The rest of the tutorial will explain how to customize the background further, however it's not necessary to follow any more steps.

     

    To use a fixed image height, use this code instead and replace 1400px with any pixel value - it doesn't need to match the actual height of the image which you uploaded. Any value will work.

    {{if theme.picker_i2}}
    	
    	.ipsfocus_bg2 .background,
    	.ipsfocus_bg2 .box-blur{
    		background-size: auto 1400px;
    	}
    	.ipsfocus_bg2 .box-blur-image{
    		max-height: 1400px;
    	}
    	
    {{endif}}

     

     

    To remove the gradient which is used to fade your image into a hex colour, add the following to the end of custom.css

    .ipsfocus_bg2 .background:before,
    .ipsfocus_bg2 .box-blur:after{
        display: none;
    }

     

     

    To use a fixed image when the page is scrolled, add the following to the end of custom.css. Due to the CPU power required, the blur effect (in browsers which don't support backdrop-filter) is removed when background images are changed to 'fixed'.

    .ipsfocus_bg2 .background{
        position: fixed;
    }
        .ipsfocus_bg2 .box-blur{
    	    display: none;
        }

     

     

    To remove the pattern overlay, add this to the end of custom.css

    .ipsfocus_bg2 .background:after{
        display: none;
    }

     

     

    If you want to use a repeating pattern instead of a large background image, add this to the end of custom.css. The 500px value is the height of the pattern which you uploaded:

    .ipsfocus_bg2 .background,
    .ipsfocus_bg2 .box-blur-image:before{
    	background-repeat: repeat;
    	background-size: auto 500px;
    }
    
    .ipsfocus_bg2 .box-blur-image{
    	max-height: none;
    }
        
        /* Remove gradient and overlay for patterns */
        .ipsfocus_bg2 .background:before,
        .ipsfocus_bg2 .background:after,
        .ipsfocus_bg2 .box-blur:after{
    	    display: none;
        }

     

  7. I don't think the .ipsMenu and .ipsDataList classes were ever intended to be used on the one element like that (one creates menus, the other creates tables for data).. but this code will fix it in my themes 🙂

    .ipsMenu[id^="elPFDrop_"]{
      width: 300px;
    }
    
    .ipsMenu[id^="elPFDrop_"] .ipsDataItem{
      width: 100%;
      display: block;
    }

     

  8. 9 hours ago, AnonymousDev said:

    Hey there, Just wondering how to download the latest update? I have paid renewal in June but it looks like I have to pay full price again. Is this correct or am I looking for the file in the wrong place?

    Thanks 🙂

    Hi there,

    I've just checked the purchase list and your username isn't listed. If you believe you've purchased this theme and renewed it in June, I'd suggest contacting the Marketplace moderators so they can look into this for you. 

    If you are an active customer, you'll be able to download all of my updates for free 🙂 

  9. 2 hours ago, Adriano Faria said:

    Sorry, the default theme is the only one supported, otherwise I would have to release a version for each theme out there, which is totally impracticable.

    I'm struggling to understand why that would be necessary - that's not true at all. Wrapping the content with .ipsBox or .ipsBox_alt would increase compatibility to all themes. As it currently stands, your app technically isn't compatible with the default IPS theme, since changing the background colour of your site (to #333 for example) will make your app unreadable. Surely you'd support a customer if they changed the background colour of their site - this is essentially the same situation, and certainly isn't a 3rd party theme issue.

    IPS failed to wrap content in 4.2, however they acknowledged it in the above topic (as did many other customers) and they fixed it in 4.3. Following their lead would be a smart idea for developers if they wish to maintain compatibility across themes. ?

  10. 3 hours ago, pndemc said:

    Hey @ehren. ,

    I just wanted to check if you have any sort of ETA for the 4.3 updates and if you're already working on them. I know 4.3 is still in beta, but I'd love to be able to upgrade ASAP but that won't be possible as the search functionality is broken on the theme.

    Thank you for any updates. Love your work!

    Hello,

    The 4.3 updates will be started once 4.3.0 Final is released. My themes have never supported beta versions, sorry about that!

    I'll aim to have the themes updated within the first week of 4.3.0 though :)

  11. 7 hours ago, Adriano Faria said:

    No, without have the theme... anyway, even if I have it, I would have to change the plugin to fit the theme, which is not right.

    Talk with designer. Something in his theme is out of the pattern.

    This issue was fixed a few versions ago in my themes. Steve was just using an outdated version :)

  12. 2 hours ago, pixel_merged said:

    I just install your update. I have a script error on the index page and when I edit a Post.

     

    Hello,

    Did you install the theme as a fresh installation, or did you use the "Upload new version" feature?

    Installing fresh should work just fine! :) 

  13. 20 minutes ago, Filippovitch Constant said:

    Ok. 

    Questions about the theme localization.

    You use a standard dictionary forum, which I translated into Russian (Localization menu)?

    The question of the compatibility with 4.1.17.1

    Compatibility is provided?

    The theme has a few blocks of text which are in English. If you need help translating these to Russain, I'll be able to direct you to the correct template files.

    The theme is compatible with 4.1.17.1

     

    9 minutes ago, Filippovitch Constant said:

    Can you give me a URL- link to the working community (not demo!)  with light and dark skin?

    For example,  on my email.

    Yours sincerely,

    Konstantin

    Both the light and dark themes can be viewed on my demo board. I do not have any links readily available for other sites.

×
×
  • Create New...