UmbrellaStudios
- Sold between 50 000 and 100 000 dollars
- Europe
- Exclusive Author
- Bought between 1 and 9 items
- Has been a member for 0-1 years
- Author had a File in an Envato Bundle
311
Purchases
Buyer Rating:
4.14 stars
4.14 average based on 42 ratings.
-
5 Star
2047%
-
4 Star
1228%
-
3 Star
614%
-
2 Star
49%
-
1 Star
00%
| Created | 7 December 12 |
| Last Update | 18 April 13 |
| Columns | 3 |
| Compatible Browsers | IE8, IE9, Firefox, Safari, Opera, Chrome |
| Software Version | WordPress 3.4, WordPress 3.3, WordPress 3.2, WordPress 3.1, WordPress 3.0 |
| Documentation | Well Documented |
| High Resolution | Yes |
| Layout | Responsive |
| ThemeForest Files Included | Layered PSD, CSS Files, JS Files, PHP Files |
| Widget Ready | Yes |
- animation
- architecture
- clean
- construcion
- creative
- css3
- html5
- layout
- modernist
- reponsive
- slider
- vimeo
- widgets
- wordpress
- youtube
© All Rights Reserved UmbrellaStudios -
Contact Envato Support


Hi there, just bought the theme, but when I needed to adjust some things like the size of the logo or the margins I couldn´t. I already used other theme where I could edit the php files.
Can you guide me, so I can edit the php of your theme, thanks.
Jalucho
Hi
I would strongly suggest you to use the Child theme for this kind of changes, as you will lose changes on next Updates.
PS : The logo is on header.php just make sure you are using Binary mode transfer in case you are using a FTP Client
How do I do that? I have to install both themes? first one an then the other?
Thanks, for your quick reply.
Jalucho
I normally edit the php directly from the WP edit part, is that possible?
Yes you have to install Child and parent theme.
Hi again, I really don’t know how to edit this way, can you please help me in this case so I can learn how it works?
I need the logo to be as tall as the white bar of the menu, I have to edit the css in the modernist-child? What code?
Thanks again.
/* Theme Name: Modernist Child Theme URI: http://themeforest.net/user/UmbrellaStudios Description: A child theme of Modernist Theme Author: Umbrella Author URI: http://themeforest.net/user/UmbrellaStudios Version: 1.6 Template: Modernist */ @import url(”../modernist/style/style.css”);
.header .logo a img { max-height: 100px; elemento { margin-top: 0px; }
You need to activate Modernist-Child and edit on style.css the desired code.
Otherwise it is up to you to go further as we are not supporting customizations.
Is this the route to the css of modernist?
/* Theme Name: Modernist Child Template: Modernist */ @import url(”../modernist/style/global.css”);
Yes this is it.
This what happens then.
This theme is broken. The parent theme is missing. Please install the “Modernist” parent theme.
Broken Themes
The following themes are installed but incomplete. Themes must have a stylesheet and a template.
Name Description 1 Stylesheet is missing. 2 Stylesheet is missing. Modernist Child The parent theme is missing. Please install the “Modernist” parent theme.
I don´t understand why it is not working!!!! I think I am just going to edit the css of Modernist, because I am loosing so much time….
Than do what you think that suits your needs, we suggested the best way but we cannot handle customizations no further.
Hi, in the theme Modernist, I need to translate some of the words like
view project filter works read full article architecture etc..
to Spanish. Where can I access all these words that are in the theme?
Thanks,
Jalucho
You can do that easily by editing the .po .mo files that are included on the “lang” directory of the theme.
Hi good morning, I am having problems when i see the template in my iPad. the white band of the menu and the footer doesn´t reach the right side of the web , it cuts at 70%.
Need help, how can adjust that? Thank you very much.
We had a similar problem from another buyer, we fixed this and it is waiting for approval.
Ok, I will wait, another thing. I am using qtraslate in 4 languages, but it only aplies to the default text, I would like to use the dinamic layout but it wont translate the text with qTraslate. Is there any way to aply qTraslate to the dinamic layout texts?
Thank you for your quick response.
Well we did not tested with qTranslate, but we will test and modify to make it work with WPML.
Good morning here is Spain!!!
1) Why doesn´t the botton “back to projects” appear when I am inside a project page?
Hi
Because you have not already created a Project page somehow you might be using a Dynamic Template.
And posts need to find first the URL where to go when back to projects is clicked.
Can you send us your Wordpress and FTP Logins through the form from our e-mail please ?
Hi, another doubt, sorry jeje, In the projects page, Is there a way to order them as I like? Thanks
Hola, did you receive my email yesterday with my ftp and wp codes?
I am in a bit of a rush because my client returns on friday from traveling and I need to have these things resolved.
Thank you in advance.
Another thing, I would like to delete the butons of Facebook, twitter and pin it from the projects. How can I do that? tHank you again.
Hi
We fixed the back to services page.
Yes you can order the project just add the query arg to WP_Query object order and orderby you can learn more here http://codex.wordpress.org/Class_Reference/WP_Query
To delete those edit single.php and single-projects.php, i think it would be easy to find their container and remove.
Thank you, but can you give me a clue of which is the archive I have to edit and send me the lines of the 6 projects I will have to change. I really can´t find it. Thanks in advance.
I will tell you what I need. In the projects/products page, I need the 3 products of cranes to be the 3 first. Tower-flattop-Fasterecting up left. continued with the 2 of formwork’s and at the end down right the 3 of motion. Is that possible.?? Please!
Thank you again
On template-projects.php you can find an object WP_QUERY you can pass there order and orderby parameters which you can find on this page http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Hi after trying it 2 hours, I give up, I don´t understand how this code works, and I am sure you can help doing it in 60 seconds. Would you be so generous to give me the code to order the projects by the order of the page?? Please. Thank you, really need it now!!
here the pice of the code:
div class=”project_holder widget_anim”> <?php $the_query = new WP_Query( array(“post_type”=>”project_post”,”posts_per_page”=>-1) ); while ( $the_query->have_posts() ) : $the_query->the_post(); $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘project_preview_big’ ); $image = $image0; $categories = wp_get_post_terms($post->ID,”projects_category”); $category = array(); if(count($categories)){ foreach($categories as $categ){ array_push($category,$categ->name); } $category = implode(”,”,$category); } else{ $category = ””; } $cats = array(); foreach($categories as $cat){ array_push($cats,$cat->term_id); } $cats = implode(”,”,$cats); ?>
<?php echo $category; ?>
<?php the_title(); ?>
<?php $content = excerpt(strip_tags($post->post_content),16,”...”); echo $content; ?>
<?php _e(“view project”,”um_lang”); ?> <?php endwhile;THE ORDER NUMBER PAGE.
Please?!!!....;-)
Hi
We left the office on the mean time you requested that.
We need to repeat that fact the customization is not included on our part, but we will help you as much as we can.
In order to do that in the best way we need from you patient and clear requests.
So please tell us how you want to order Projects.By ID, By Date, By Title or By Number of Comments or maybe you need to order by newest or oldest.
You need to find out which attribute can order your project in the way you need them, so the analytic’s on this case are up to you.
Hi, thank you so much for your help. I need to order them in this way. First: the cranes products, In this order: tower cranes, flat top, self erecting. Second: the Formworks in this order: vertical, horizontal. Third: Motion. In this order: SZ255, SZ306, SZ4017.
So what kind of order do you think is the better?
My client is insisting that he doesn´t want the footer, can you please tell me where-how to eliminate it? Thanks again.
And another thing, my client wants the flags languages on the header, near the facebook , twitter icons, is that possible easily….???
Thank you for your patient…
You need to tell us the attribute that you need to order them we cannot find it by our self.
In the projects page. I have 8 products. And I need to control the order by type of product.
First: the cranes products, In this order: tower cranes, flat top, self erecting. Second: the Formworks in this order: vertical, horizontal. Third: Motion. In this order: SZ255, SZ306, SZ4017. So what kind of order do you think is the better?
Thanks
But the product type is not a WordPress default post attribute.You can add a custom field the product type and order by them but i think we are way to far out of our support scope.
Please understand that we are selling stock products not a Web Development Service.
Ok I understand, but now they are ordered by date? If so, I could redo the pages so the order in the way I need?
Can you tell me how to make disappear the footer?
Thank you very much.
as for the footer edit the html into footer.php and remove amy html there.
I must be stupid, but when I try to activate Modernist theme I can’t. I only see the mistake: Parse error: syntax error, unexpected ‘{’ in /usr/home/imaginaimagen.es/web/BAO-proyectos/wp-content/themes/modernist/includes/customfields.php on line 1 What am I doing wrong? Thanks!
Hi
Can you install the theme from Wordpress admin or switch to Binary mode on your FTP Client
I tried both ways… same result
Than just send us your wordpress credentials and we can check this.Just give another chance and delete first the theme completelly and install it again.
I deleted and reinstalled again. No good news. Sorry. What and where I can find my wordpress credentials?? Thanks a lot!
I meant wordpres logins and ftp logins too.
Hi, I didn´t want to disturb you again, but… Can you tell me your email adress to send you my wordpress credentials? Thank you
Hi
You can use the form from our profile to contact us because it places aditional informations with the email.
So just go to our profile and you can see it on the right bottom.
Hi, it´s me again. I sent you message using your form. Can you see the mistake? Thanks a lot for you patience!
We e-mailed you back.
Problem solved – submenus are created under Appearance > menus
Also, your documentation looks like it needs some work. I’m a technical writer and I’d love to maybe collaborate on improving the instructions (after my site is built, of course).
Thanks and keep up the great work!
Glad to hear that.
hi. your theme is good! However, I have a problem. When I open this theme on IE8, navigation background is not working. just menu on screen. What happen? I want to know what should I do for background. I look forward to your reply.
Hi
Can you send us a URL to check this out please ?
Hi, URL is www.stelenc.com plz, check out.
It seems that you made css costumizations on theme that Internet Explorer doesn’t support.
The menu background is shown perfect in our demo. It seems to be the transparency that you have added, which is not in our demo.
I think it’s not a “must be” element, so to avoid problems with Internet Explorer I’d reccomend you to set back header like it was.
Thank you for understanding, Cheers
Hi, I want to buy this theme but, is Modernist works with wordpress 3.5 ? Thanks
Hello there, Yes Modernist is compatible with wordpress 3.5.
hello,
i have a presale question :
can this theme have background slider ? or needs custom work
Thanks
Hello,
Yes the background slider is available but only in the homepage.
Cheers
hello. home pictures do not appear on the page background image and the interior. How do I solve this problem?
follow this link http://www.ef312.com/Hi
Thanks for purchasing our theme.
First make sure you have created a Page with Template : Home
Than go to Metabox Background – Background Images.
And you can see a button “Add Row”, click it and make as many rows as you need for background images.
Than using “Add Image” button you can simply select the image you need to insert there.
Template ok. but We could not find where Metabox Background
images of last project pictures does not
images ok but last project pictures I counld’t
Hi
As for latest projects please insert “Featured Image” on project post.
Also you can find this kind of informations on our Documentation which is included with this package.
Edit: issue resolved
Hi,i bought your template month ago, on the homepage i’m not able to make the services box linkable to their respective pages. I read here that i need to update with the latest version of Modernist template, buth in this case im not sure if i will lose all, styles and text that i had insert to my site, starting from zero?
Hi
We made that possible by clicking the desired service will bring you to service pages and it will slide up to that service.
But to update this we did changed lot of scripts and stuff.
You wont lose the data within the wordpress by updating the latest version but if you customized something you will lose them, and we cannot trace the changes you made there.
so how do i get this update?
You need just to re-download the theme from your Downloads Section.
Hi, i have an issiue playing a youtube video on your project pages. it is uploaded an working on youtube, but in your theme it shows only a black box. any ideas, like video format, codec or resolution? but still in youtube the video is playing correctly.
thanks a lot in advance, alex
Can you show us the URL where you are experiencing this problem, and just confirm that this is happening will all youtube videos.
I put another youtube video in and it is still not playing: Link:http://neumahr-architekten.de/cms/project_item/video/ Password: NA20#ups12
It´s the Firefox 19, checked on 2 PC´s …
Hi
Can you confirm that you have Flashplayer installed and this is happening also on other Browsers.
Flashplayer is installed, and it´s only the Firefox which doesn´t play …
Hi
Well i found out that Firefox cannot render a flash video if it’s state is hidden.
And i saw that you already have customized the theme so i will tell you how to fix this manually.
Go to script single-project_post.php and replace every class widget_anim with widget_anim-disable.
Hi, i bought this theme and i cannot get the home page tabs to go to the actual service pages. Is there a fix? Where can i get the updated files?
http://www.1click2click.com.vhost.zerolag.com/With 90% of my project finished I have to say this theme is pretty poorly executed.
Responsiveness is a joke. You should remove that from the theme page.
I posted a bunch of questions in the support forum, I am very disappointed with the way this theme handles things.
Thank you for your opinion
I have replied to a comment of you on forum, i see that you are experiencing lot of troubles but the best way to solve them is to summarize them on one place.
Please consider that some problems might be from miss configuration or customization on code.
If you can provide a full list with all the problems you are experiencing and some tiny patience we will solve all those issues and i guarantee that to you.
I had those listed in separate threads because I thought it would be convenient for your support team. I’ll look at it later and list a few things.
I did very little customisation and tested whether they caused some of the troubles I’m experiencing.
Your service is good, but I still have to be convinced this is a top notch theme. Responsiveness surely isn’t what I was expecting.
I’ll send you an e-mail.
Thanks a lot for your in-corporation.
Just purchased this theme and attempted to install.
Received the follow message:
Installing Theme from uploaded file: themeforest-3582418-modernist-architectureengineer-wordpress-theme.zip
Unpacking the package…
Installing the theme…
The package could not be installed. The theme is missing the style.css stylesheet.
Theme install failed.
Please advise. Thanks.
Please un-package and install only modernist.zip which is included on that package.
This is packed because you can find there other stuff like Documentation etc.
Thank you. Got it.
Can you tell me how I change the Services and Latest Projects titles? I would like them to say something else.
You can use .po and .mo files to change every label on this theme, you can achieve that by using Poedit
Oye. Is there no simpler way to do it directly in WP?
The only other way is to edit scripts within the Template.
Can you tell me where or what exactly?
home.php
Can you please tell me what string of text I should change?
Well just search for the string that you need to edit, like for Services search it and you can find them in the this condition : <?php _e(“Services”,”um_lang”); ?>
Change that string to the word you need to.
Perfect! Thank you!
Your Welcome.
Hi, i like your work. I’m thinking to buy it but i have a question about background images. I want to use multiple images in background and also animate them on all pages. Is your template support it or can i use some plugin like this (http://wordpress.org/extend/plugins/site-background-slider/) without any problems? Thanks.
Hi
Modernist supports background slideshow only for homepage, but this plugins seems to do the trick, it might need only a single change to remove the static background at all or you can configure modernist to not display background images for other pages and use the plugin instead.
Hi, really great theme! just one question/remark: is it possible to add linkedin to the menu? You can now only add twitter and facebook. Thanks!
Hi
Glad that you liked that theme, well not right now but we will add more Social Media option’s on the next version and this should be done by next week.
We hope for your understanding
Hi,
I have one question: is it possible to customize the theme directly from the php files or is it packed?
Thanks.
Hi
If you have skills on PHP CSS and JS than you can edit the theme, the code is not Obfuscated which means the code is readable.
Hello there, i must be missing something but when i want my blog posts to show on a page or a category, i only end up with a big mess ! Somehow it takes the homepage template and messes it up… here is what it looks like : http://livevents.lu/futures-evenements/ i have tried to have a category and a page, i changed the template in the page, nothing has changed, any idea?
I’m afraid i have not understand well the issue.
Can you explain again please or visualize somehow ?
Hello, actually, i would like my blog page to look like yours, http://themes.umbrella.al/?theme=modernist (blog page) but instead it shows like this : http://livevents.lu/blog/ my page is set up on the blog template, i don’t get it, it says nothing in the user manual… Thanks for ur help! K
?
Hi
Sorry for this delay.
To fix that please go to Settings – Reading and chose a static page.
Chose the home page but the posts page leave it
-Select- which means blank.it works !!! u really know ur theme
another question, how can i show 7 services on the homepage instead of 6?
Go to home.php on line 51 change posts_per_page to 7
U rock
it’s actually line 107
Hi
Sorry for the mistake.
It would be awesome if you could rate our item on Themeforest.
Hi, why in the Staff widget in the Layout Builder there isn’t an option for inserting a mail address but only Facebook, Twitter, Linkedin profiles? It could be very useful!
Hi
Thanks for this suggestion, we will consider adding this feature.
Hi there! I silly question before buying the theme: Can I have multiple (different) project pages?
thanx!
Hi
If you are talking about the Project Page’s where project are listed there is a Layout Builder where you can chose between each frame you see on the web site to combine with each other.
But if you are talking about the Project Single page there is only that Layout that you can see on Demo, a Slider with the content on the Right.
Hi, thanx for the quick replay! I’m talking about the Project Page (http://modernist.umbrella.al/projects/) I want to make a website will several project pages (instead of one filtered). So I guess it’s feasible.
Hi
You can use Category Pages which are the same look as this page but you can chose which Category to show on the Menu and there you can show posts from that Category.
Hi, before I purchase the theme I have two questions: 1. Does this theme have submenus? I’ve seen about 10 differnent sites using this theme and none of them use drop down menus. 2. What are the shortcodes that come with the theme? Thank you in advance for answering my questions!
Hi
Thanks for your interest on this Theme.
1. It has sub-menus.
2. http://modernist.umbrella.al/shortcodes/