30 comments found.
apologies. I am a complete beginner at this. I purchased this theme without realising that it is not a wordpress theme, therefore cannot use it, Is it possible to get a refund? Regards Nick
Hi can you tell me where to configure the style of the thumbnails and also how to disable the thumbnails entirely.
Thanks
Nick
hello there.
I bought it and made a site with this templete.
http://proiri.cafe24.com/#portfolioI have a question.
Can I read a specific container div when I click Portfolio?
wanna use full of this page http://proiri.cafe24.com/project.htmland wanna use only contents section by ajax only for main
like this page http://www.nemocultures.com/#portfolio http://www.nemocultures.com/board_nemocultures_2015/6417Please help me. Thanks
hello there?
Hi. i’m here. i see your examples but not understand what you want. here 2 version portfolio. Open with project page and open with ajax.
And you have need ajax load (if i understand).
and you can find ajax load content.
Or use lightbox load content with (next back) fuctions. Thanks
Wanna read “contents section only” in this page (http://proiri.cafe24.com/portfolio/140) ” when I click a portfolio on main page by ajax.
How can I do?
hi create file as name exm ajax-content1.html with this code.
into div class ajax-block
and link this file from portfolio a href=”ajax-content1.html” class=”ajax-content”>
<div class="ajax-block">
<section>
<div class="block">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-4 col-xs-12">
<div class="widget-block">
<div class="section-sub-title">
<article class="section-title-body">
<h3 class="head-title" style="margin-bottom:0px;">
<span>
??? ???.. ???? ?????.. </span>
</h3>
</article>
</div>
</div>
<div class="widget-block" cond="">
<h4 class="widget-title" style="margin-bottom:0px;">Client</h4>
<p>????</p>
</div>
<div class="widget-block">
<h4 class="widget-title" style="margin-bottom:0px;">DATE</h4>
<p>2016? 7?</p>
</div>
<div class="widget-block">
<h4 class="widget-title" style="margin-bottom:0px;">CATEGORY</h4>
<p>CF,Photo</p>
</div>
</div>
<div class="col-md-9 col-sm-8 col-xs-12">
<div class="block-blog">
<div class="video-container" style="margin-bottom:20px; padding-top:0;">
<iframe id="video_iframe" style="width: 100%;" width="1280px" height="720px" src="http://www.youtube.com/embed/G_OluZw-xD0?autoplay=0&rel=0&vq=hd720&version=3" frameborder="0" allowfullscreen=""></iframe>
</div>
<!--BeforeDocument(140,4)--><div class="document_140_4 xe_content"><img src="http://proiri.cafe24.com/files/attach/images/68/140/d60bda3e68db86ed646fdbbe8c0a312a.jpg" alt="test013.jpg" width="1200" height="675" style="" rel="xe_gallery" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<meta name="description" content="Production IRI - Now You See US!">
<meta name="author" content="HK Yoon">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><script>
//<![CDATA[
var current_url = "http://proiri.cafe24.com/?mid=portfolio&document_srl=140&ckattempt=1";
var request_uri = "http://proiri.cafe24.com/";
var current_mid = "portfolio";
var waiting_message = "??? ?? ????. ??? ??????.";
var ssl_actions = new Array();
var default_url = "http://proiri.cafe24.com/";
xe.current_lang = "ko";
xe.cmd_find = "??";
xe.cmd_cancel = "??";
xe.cmd_confirm = "??";
xe.msg_no_root = "??? ?? ? ? ????.";
xe.msg_no_shortcut = "????? ?? ? ? ????.";
xe.msg_select_menu = "?? ?? ??";
//]]>
</script>
<title>Production IRI - Now You See us!</title>
<!--[if IE]>
``
<![endif]-->
<p><br /></p>
<p>??? ??? ???</p></div><!--AfterDocument(140,4)--> </div>
</div>
</div>
</div>
</div>
</section>
</div>
When I click on the images in the “Blog” section from index-admin.html page, I’m getting a screen message that reads “The content can not be loaded” even though I’ve placed the correct hyperlink into the code. Only the on the copy works, not the overlay. Here’s the area in question:
06
Jan
Mountain walkingJhone | Comment 4
Thx.
hi pls write correct html file. here not any index-admin.html or send me demo link i can check from internet Thanks
the file name is index-anim.html Thx.
pls work with localhost or upload your server and check. Thanks
When I click on the images in the “Blog” section from index-admin.html page, I’m getting a screen message that reads “The content can not be loaded” even though I’ve placed the correct hyperlink into the code. Only the on the copy works, not the overlay. Here’s the area in question:
06
Jan
Mountain walkingJhone | Comment 4
Thx.
hi pls write correct html file. here not any index-admin.html or send me demo link i can check from internet Thanks
I have a doubt, I am creating a form of budget for the client, however, this form has some fields more, but he keeps sending just the name, email, phone and message, I already edited the php sending file and also the JS file and it always ends up with sending these messages, you guys can help me? thank you.
// Fetch data from input fields.
var js_name = $("#name").val();
var js_email = $("#email").val();
var js_phone = $("#phone").val();
var js_message = $("#message").val();
// Do a simple validation
if (js_name == "") {
$("#nameLb .error").fadeIn('slow').idle(1000).fadeOut('slow'); // If Field is empty, we'll just show error text inside <span> tag for 1 sec idle and then hide it with fade out.
return false;
}
var hasError = false;
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if (js_email == '') {
$("#emailLb .error1").fadeIn('slow').idle(1000).fadeOut('slow');
return false;
}
if (!emailReg.test(js_email)) {
$("#emailLb .error2").fadeIn('slow').idle(1000).fadeOut('slow');
return false;
}
if (js_phone == "") {
$("#phoneLb .error").fadeIn('slow').idle(1000).fadeOut('slow');
return false;
}
if (js_message == "") {
$("#messageLb .error").fadeIn('slow').idle(1000).fadeOut('slow');
return false;
}
//let's put all data together
var myData = 'postName=' + js_name + '&postEmail=' + js_email + '&postPhone=' + js_phone + '&postMessage=' + js_message;
</span>
add need fields // Fetch data from input fields.
example var js_category = $(”#categoryl”).val();
Do a simple validation for additional fields
if (js_category == "") {
$("#categoryLb .error").fadeIn('slow').idle(1000).fadeOut('slow');
return false;
}
and add this fields data to var myData = ‘postName=’ + js_name + ‘&postEmail=’ + js_email + ‘&postPhone=’ + js_phone + ‘&postMessage=’ + js_message+ ‘&postCategory=’ + js_category;
this is sending all data to contact.php as array with ajax.
after this you will work with contact.php as you want
.
???
Hello, I want to know if the example theme showed in the Item Details section exists as theme option.
hi sorry we didn’t understand your question pls more datail. Thanks
Hello, I like the the version of toursim as shown in the example, which was available in life preview some time ago but I can no longer find at this moment.
Yes it is true we upgrade this demo too.
ups, I need this demo.. i bought the theme, you can send this version it to me?
I purchased this but the zip file appears to be missing the template for “Single One Page” ... could you please instruct how I can obtain that design?
Hi. We will update package soon. if you need this page now, pls send me your email, we send you this page. Thanks
Hi,
i like this theme, and bought it. No I see, it’s not for wordpress … aargh … I overlooked it. It’s poosible to combine the theme in a wordpress-site without good css and bootstrapp knowledege?
thanks for your help … and sorry for my bad english. Michael
hi If you have not CSS base knowledge, it so hard to convert wordpress. Now this item converting to wordpress from user http://themeforest.net/user/webredox You can send message and your interest wordpress version of Mountain
Hi – great theme – purchased earlier today. Just one question… is it possible that when portfolio items open in lightbox window to have previous/next navigation controls. I thought I’d seen it someone on one of your demos!
Hi it is possible
When you use portfolio chane links to
exm
(a href=”img/preview/blog16.jpg” data-lightbox=”graphic”>)
and hot mach you use data-lightbox=”graphic” attribute, all this working one of “graphic” group with navigation
Hey – thanks for getting back to me so quickly. That works perfectly! Many thanks, Karl
OK rate 5 stars
Done! www.jimeracasarural.com
Thanks
if you use multi page Open main.js file and delete
/* ==============================================
Hide navbar on click (Mobile)
=============================================== */
var mobileNav = $(".navbar-collapse");
$(".navbar-collapse ul li a").on("click", function () {
mobileNav.removeClass("in");
});
this worked to hide menu when it click
if you view this page on the iphone you will see
Sorry i send you other answer sorry
this is very long words in menu, use it one or two words
use “Welcome To The Common Wealth” => “welcome”
test WELCOME MOVEMENT GUIDES LIVE UPDATES
is it possible to move the margins over more to the left instead? we need the wording as is.
how it viewing if physical long words ways 1. Long words need as little 2. menu items as one line (default) 3. Change font size in mobile view(your menu items very long and finally very little menu item size) 4. You can hide not needed words in mobile view exm one item
Welcome To The Common Wealth (desktop screen) Welcome (mobile screen)
LIVE FROM THE UPDATE SCREEN LIVE UPDATE (mobile screen)
i have all ok pls change text align to center
thank you! so i change everything that says “item col-md-4” to “item col-md-3” ??
not everything only portfolio box classes
hi – how can i make 3 colums for the portfolio page? right now there are 4. i just want to make 2 rows of 3 boxes
how can you make the portfolio box not open? i put ”#” for the url but it scrolls it to the top of the page? i want to make the box non linkable
only delete a href
if you have base bootstrap “col-md-3” this is 3/12. you make it 4/12 as find “portfolio-list ” ul in li with classes “item col-md-3” change all “item col-md-4” thanks
“item col-md-3 col-sm-6” data-id=”id-1” data-type=”design
it shows 4 boxes on my browser. i only want 3 colums
change it item col-md-4 col-sm-6” data-id=”id-1” data-type=”design
if i just want one row with 6 colums i change it to col-md-1 col-sm-6?
bootstrap 12 columns if you want 6 column use col-md-2 if you want 4 column use col-md-3 if you want 3 column use col-md-4 if you want 2 column use col-md-6
is it compatible with android and ios mobile phones and tablets? because my target visitors who use them. kind regards…
of course it worked android ios mobile phone browsers and this template responsive all resolution
How I set the coming time?
hi open main.js and find “Count down time” section and change it Thanks
Thanks. I am not an expert but I’m doing pretty well with your nice theme. A last question. I want to write the classic “Website designed by ..” but I can’t set the words in white (black is standard and therefore, with the black background, I can not see it).
and also I can not change the background image in “About” and “Portfolio”. How can i do it?
background : Open main.css and find background section style and change
about .section-block-title---image
>code> #about .section-block-title
your question about “Website designed by” where you write it ?
I solved last questions. A last question, which I think it is important for many beyond me. Could you paste countdown’ setting for a specific date (ex. 01-01-2016) and not +996400000 milliseconds from opening of the page? Thanks
Thanks same
Hi Here all written If you have base knowledge
Open main.js file Open coundowntime and change var new_date = new Date(‘2015-10-19’).getTime();
or
var new_date = new Date(‘2015-11-01’).getTime();
Hello. Thanks for a great theme, but can you explain which parameters to change on the google map embed, maybe you are using out of date parameters as they don’t seem to match the current API docs? Thanks.
pls send me your email THanks
delete this
what i delete ?
Hello!
Could you give an answers about the CSS documents.
Thank you
Louise
hi, what you have need ? pls more detail
Where is the contact.php or file to get the contact form working?
hi, pls see in package with HTML files. Thanks
what is the name of the file? The JS file did not appear to have anything pertaining to the email address to send to. I saw the validation, but no where to add a send to this email. I will check again …
downloaded v1.1 and appears to have all the files that I need now .. thank you! GREAT theme by the way!
if all ok if you find all files change $email_to to your email.
pls rate 5 stars