UI.X 2

UI.X 2 2.2.15.0.2

No permission to download
it is all weird. i have tried everything. downloaded the 2.1.4 edition again. uploaded it again. imported into a brand new style. reverted all template changes. right now, uix shows blank. my child theme appears broken. and this error appears while trying to run incomplete jobs.


i am guessing some folder permissions are messed up that is not allowing style to import properly? do tell if i should open a bug report with admin login details if this does not indicate the issue. thanks!
 
Looks like your access rights are not set up correctly.

Give the webserver user (www-data usually) access tot the entire /home/domain/public_html/ directory and make sure you chmod 0777 the /data and /internal_data subdirectories.
 
@ThemeHouse Is setting up lazy loading a matter of enabling the option?

That needs more explanation for me ;)

This is mostly just a developer option, and all that does is include the script in case you wanted to use it for anything. It works by adding class="lazy" and changing the src of an image, video, or iframe to data-src instead. So:

HTML:
<img src="test.png" />

Would become

HTML:
<img class="lazy" data-src="test.png" />
 
so folder permission is correct at 777.
public_html group is forum. other option is root.
data and internal_data subdirectories have group forum.

so got a friend to fix it. the problem seemed to be with the code_cache folder. seems to have updated now and child theme works well. cheers!
 
Last edited:
Getting a ton of 404's from clients requesting apple-touch-icon-120x120-precomposed.png in the root directory, and a few for apple-touch-icon-152x152-precomposed.png.

I see <link rel="apple-touch-icon" href="https://www.domain.com/assets/img/site/logo_og.png" /> in the page source below <meta name="apple-mobile-web-app-capable" content="yes"> (as specified by Apple here), but it doesn't seem to be working correctly.
 
Getting a ton of 404's from clients requesting apple-touch-icon-120x120-precomposed.png in the root directory, and a few for apple-touch-icon-152x152-precomposed.png.

I see <link rel="apple-touch-icon" href="https://www.domain.com/assets/img/site/logo_og.png" /> in the page source below <meta name="apple-mobile-web-app-capable" content="yes"> (as specified by Apple here), but it doesn't seem to be working correctly.

This might have been due to us specifying a full URL for the Metadata logo in Basic options, I'm waiting to see if another one pops up and I'll report back.

I am noticing something else though, another 404 when cycling through options or styles in the AdminCP.

/home/domain.com/public/js/themehouse/uix/style-property-upload.js
 
After upgrade 2.1.4, I have just noticed that we have a new feature, "Expand Signature". I have not seen any info about it.
As far as I can remember, some TH XF-1 themas have this feature. It is very nice to see we have it :)

I have 2 question.

1- How can I change "Expand Signature"definition ? I could not find any phrase for it.
2- Is there any parameter for defining the height of expand signature ?

Screenshot_2.webp
 
Hello,

1- How can I change "Expand Signature"definition ? I could not find any phrase for it.
I wasn't able to find a phrase for this but I'm gonna double check with our devs and get back to ya on this.

2- Is there any parameter for defining the height of expand signature ?
This can be found by navigating to Appearance -> Style Properties -> Messages -> Message Signature Max Height
 
Hello,
I wasn't able to find a phrase for this but I'm gonna double check with our devs and get back to ya on this.

This can be found by navigating to Appearance -> Style Properties -> Messages -> Message Signature Max Height
Thanks for reply. Somehow I was not able to find this feature at style properties. Happy to learn where it is.

For finding phrase, I will be waiting your next post.
 
I found this setting in the documentation on Breadcrumb properties: Hide breadcrumb on top-level pages

But I don't see it when looking through the properties on my forum. Does that setting still exist?
 
Hello

I got more than 40K errors of breadcrumbs in google webmaster

Status: Error
Type: Either "name" or "item.name" should be specified

Code:
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
        <a href="https://www.mysite.com" itemprop="item">
          
                <i class="fa--xf far fa-home uix_icon uix_icon--home" aria-hidden="true"></i>
              
        </a>
        <meta itemprop="position" content="1" />
    </li>
 
I found this setting in the documentation on Breadcrumb properties: Hide breadcrumb on top-level pages

But I don't see it when looking through the properties on my forum. Does that setting still exist?
It does not, I'll go ahead and make sure this is removed from the documentation though.

Hello

I got more than 40K errors of breadcrumbs in google webmaster

Status: Error
Type: Either "name" or "item.name" should be specified

Code:
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
        <a href="https://www.mysite.com" itemprop="item">
         
                <i class="fa--xf far fa-home uix_icon uix_icon--home" aria-hidden="true"></i>
             
        </a>
        <meta itemprop="position" content="1" />
    </li>
Please do create a ticket on our support portal as one of our team members will then be in contact.
 
Just wondering if anyone could tell me some extra.less to use to raise the text in this area? I want it to be equal to the icons. cheers

Screen Shot 2019-10-13 at 2.47.03 PM.webp
 
How do I change the welcome message in UI.X 2? I've tried following the guide and several other instructions and nothing seems to give me the option. Can't find the text in the templates, either. Thanks!
 
How do I change the welcome message in UI.X 2? I've tried following the guide and several other instructions and nothing seems to give me the option. Can't find the text in the templates, either. Thanks!
Navigate to Appearance -> Style Properties - Welcome Section -> Text -> Edit the following fields: Welcome section title, Welcome section text, and Welcome section button text
Take a look at our documentation for more here.
 
This is mostly just a developer option, and all that does is include the script in case you wanted to use it for anything. It works by adding class="lazy" and changing the src of an image, video, or iframe to data-src instead. So:

HTML:
<img src="test.png" />

Would become

HTML:
<img class="lazy" data-src="test.png" />
I'm also having some trouble understanding how this works. Nothing happens when I enable this option. Do I need to manually add class="lazy" and data-src or are automatically added?
 
Top Bottom