648 comments found.
Great theme and wonderful documentation.
I purchased this theme after you did an update to the navigation, and just noticed it’s not the same. I wish to have just one top navigation bar WITHOUT the additional navigation section on the right. Is there any way to just have the main navigation go across the top?
Also, I created a main navigation menu, save it, and then click on one of the nav buttons, Say its “about us”, the page goes to a 404. What’s the deal with that?
Thanks so much in advance!
Hello there,
The theme uses two navigation menus right from the beginning. I didn’t added it later. 
You can remove the second menu inside header.php file, line no. 91:
<?php wp_nav_menu( array( 'container' ?> 'none', 'menu_class' => 'nav2', 'theme_location' => 'secondary' ) ); ?>
Delete this line and save the file. Next, open style.css file and look for line no. 140:
.nav1 { position:relative; float:left; width:608px; list-style:none; z-index:9999; margin:0px 10px 0px 0px; padding:0px 0px 0px 20px; height:40px; background:transparent }
Change width to 100% and margin to 0px. Save this file and you’re done.
Regards
Thank you so much! You are super!
I did as you instructed, and while the 2nd menu goes away (yeah!), BUT the main navigation still stops at where the 2nd nav used to start. I have a few menu items that drop down into the slider.
Any thoughts? Thanks again. Seriously, you are the best.
Hello again,
I guess you skipped the change in width. At line no. 140:
.nav1 { position:relative; float:left; width:608px; list-style:none; z-index:9999; margin:0px 10px 0px 0px; padding:0px 0px 0px 20px; height:40px; background:transparent }
Change this line to:
.nav1 { position:relative; float:left; width:100%; list-style:none; z-index:9999; margin:0px; padding:0px 0px 0px 20px; height:40px; background:transparent }
Now there is a width:100% so that the menu will expand to full width.
Regards
Saurabh, I want to optimize the Cruz Theme for a high traffic website. I LOVE this team, but would like to have it as streamlined as possible.
Without having to do a code/process check on the server ¿Do you have any quick pointers to the top features I would like to disable to make it faster?
Thanks! Paco
Hello Paco,
The performance of this theme for a high traffic will mainly depend upon your database server. Most of the time is consumed while executing a query and fetching the contents from database.
Besides that, there are jQuery plugins that may take time to load. This includes jquery library ui, tabs, sliders etc. If you are not using the slider, you can disable those plugins inside header.php file’s head section. Further, the timthumb script may take some execution time but that would be negligible. For any WordPress theme, the performance mainly depends upon the database server and the type of hosting.
Regards
Thanks for your continued excellent support!
1) I see the option to enable the author bio, but I can’t seem to find the place to actually type the author bio. Where do I enter the author bio text?
2) Also, other than going into the code (which I can do), is there an easy way to turn off the “author” meta tag under the post title? E.g. is there a quick way to do this in the admin panel or should I comment out code? And if I have to comment it out which file do I use? loop.php?
Thanks again! Great theme!
Hello SH,
The Author bio will be visible only if it is set and filled inside WordPress admin. For that, go to WordPress Users > Your Profile > About Yourself. Next, set the biographical info and update the profile. This will appear on the site.
The author meta tag is generated inside functions.php, line no. 296:
printf( __( '<span class="date">%1$s</span><span class="author">%3$s</span><span class="cats">%2$s</span>', 'cruz' )
You can delete <span class="author">%3$s</span> and save the file.
Another quick method is to set the following rule inside the bottom of style.css file:
span.author { display:none !important; }
Regards
Any idea what would be making the btn links use _blank?
[btn link="http://www.sitename.com/plans-pricing/" color="royalBlue" size="size-xxl"]View Plans and Pricing[/btn]
But when used it produces links using target=”_blank”
Hello again,
The button short codes are set to show the link in new window. You can easily change this inside includes/shortcodes/shortcodes.php file, line no. 259:
return '<a href="'.$link.'" class="'.$btn_class.' '.$color_class.' '.$size_class.'" target="_blank">'.do_shortcode($content).'</a>';
Delete target=”_blank” and save the file. The links will open in same window now.
Regards
Can you send “dummy” page content for the Portfolio? No matter what I try I can not get that page to work like your demo.
Thanks!
Hello there,
The portfolio page doesn’t use dummy content. The thumbnails and content are generated using the WordPress loop. For that, you will need to select a portfolio template from the template drop-down list, and provide the Category ID inside page options. This category ID will be of the Category that contains posts for portfolio page.
You can find detailed instructions on creating a portfolio page inside documentation/index.html file. Further, feel free to ask me if you find any difficulty.
Regards
What I meant was how do you get the small text to display (i.e. the source of the quote) – an example is on the ‘About Us’ page of your demo site (at the bottom).
Cheers
Hello again,
Sorry for getting late on reply. That can be done using the <small /> tag as shwon below:
[quote]Praesent in dolor eu orci malesuada viverra vitae vel purus. Sed sit amet dui nisl. Vestibulum venenatis, tellus eu posuere faucibus, augue orci faucibus ipsum, sit amet ornare mauris odio id augue <small>- John Smith, JKL Ltd.</small>[/quote] or.. <div class="quote">Praesent in dolor eu orci malesuada viverra vitae vel purus. Sed sit amet dui nisl. Vestibulum venenatis, tellus eu posuere faucibus, augue orci faucibus ipsum, sit amet ornare mauris odio id augue <small>- John Smith, JKL Ltd.</small></div>
Regards
Thanks very much, I’ll give it a go!
One other question – on your demo site there is a blockquote that is used as a testimonial with the citation in smaller text but I don’t see any options for adding the citation in the shortcode options?
Cheers
Hello again,
Inside the Visual mode of the editor, you will see buttons for quote and pullquote. You can select a text and click the quote button to set it as a quoted text. You can also use it as:
[quote]This is a testimonial by some Client.[/quote]
Regards
Great theme – perfect for what I need.
One question – how can I add some additional fields to the contact form that is inserted via shortcode? I’d like to add a required phone number field and an optional address field.
Thanks!
Hello vicng,
Thanks for your kind words. The theme supports Contact Form 7 plugin that is easy to install and use. The built in contact form has fixed number of fields and it will be a bit complicated to add new field.
You can use Contact Form 7. That will be convenient and easy to implement.
Regards
Hello,
I tried to use custom heading setting with Play or Ubuntu font in a Greek webpage, but I see no result, although these fonts have a Greek character set. How can I solve this problem?
Regards, Dimitris
Hello Dimitris,
The Google fonts used in this theme are set to Basic Latin character set. But you can easily use Greek character set by adding the following line of code inside header.php, just after line no. 55:
<?php include_once('includes/load_styles.php'); ?> // Add after this line
<link href="http://fonts.googleapis.com/css?family=Ubuntu&subset=latin,greek,greek-ext" rel="stylesheet" type="text/css" />
This will load the Greek character set.
Regards
Thanks for the quick reply! When I use the < strong > html tag though, the font is not displayed… Is there anything I can do to fix that too?
Hello again,
The <strong /> tag should work normally as there is only a simple rule defined inside style.css file:
b, strong { font-weight:bold }
You can send me the URL to have a look upon. May be I can tell more after looking at the source code.
Regards
Neither “strong” nor “b” tags are working. The letters are becoming bold, but loose their font (Ubuntu). You can check it in energylab.gr. any h1, h2, h3 or h4 tag to strong, and see the results… The site is in Greek language, so if you need any extra support, do not hesitate to contact me!
Hello Dimitris,
I just checked the site. The headings seem to work fine with strong tag. I tested it with firebug. Your Google code call is also fine (including the bold typeface).
You can mail me at xconsau[at]gmail[dot]com with login details so that I can look into it further.
Regards
Thanks for the reply. I still have the same problem, when I am trying to make the half words regular and the half bold. I will pass it though, it is not so important.
One lats question. Please, inform me how to use white, h2 style typography in the slider box text.
Regards, Dimitris
Hello again,
The styles for slider caption box can be controlled in following ways:
1. For Cycle Slider, open style.css file, line no. 192:
.show_desc p { line-height:18px; margin:0px }
The caption uses a p tag and you can set a font size and family for it as:
.show_desc p { font-size: 22px; line-height: 30px; font-family: "Open Sans", Arial, Helvetica, Geneva, sans-serif }
2. For Nivo Slider, open css/nivo-slider.css, line no. 49:
.nivo-caption {
- set same typography rules in this selector -
}
3. For the bold text issue, I would like to give it a try. Although I’ll do the same as you did:
<h2>This is a heading with <strong>bold</strong></h2>
I think some styles are getting override within the site. You can drop me a mail if you find any further issues.
Regards
Hi, am loving your theme, but have run into one problem. I am using it with the Events Calendar Pro plugin, the problem I have is when I click to enter and event on the calendar, it is blank, I have turn off all extra plugins and also checked with another theme to see if the problem was the plugin but it is working fine with all those things on, until I change back to your theme. Any help would be appreciated.
Thanks Kylie
Hello Kylie,
Dropped you an email. 
Regards
Hi, Also there is usually a Settings thing on the Dashboard to customize what we see on the dashboard. We don’t need alot of that here. With this theme I don’t see that. Could you tell me where I can hide Quickpress, Wordpress Blog etc. from the dashboard. I think this will just confuse my client.
Thanks!
Teri Hitt
Hello Teri,
The panels on dashboard can be controlled via the “Screen Options” button on the top-right corner of the admin page. You can choose which panels to show inside that section.
Regards
Yea, usually it is there. It is not appearing in Firefox or Chrome browsers. Have you encountered that before? Thanks so much for all your help. You are great!
Hello Teri,
The “Screen Options” tab is not visible when the JavaScript is off for the browser. Upon non-availability of JS, that button is gone.
It can also be due to a plugin conflict. If you have some plugins installed, try to disable all of them and enable them one by one until you see the one that is causing the conflict. A similar issue was raised on WordPress forums here. They have sorted it out by disabling jetpack. Let me know if this works.
Regards
Thanks, yes deactivating the Jetpack fixed it.THANKS!
Hi, Is there a way to speed up the slide show?
Also is there a way to disable the photo curl up — I’m not using this section (lower part of Home page) as a Photo gallery and it will be confusing to our viewers to have that just go to an image and not a page.
Thanks for this great theme and all your expedient help in this.
!
Teri Hitt
Hello Teri,
For Cycle Slider, open js/custom.js file, line no. 108 and 109:
speed: 400, timeout: 4000,
For Nivo Slider, open js/nivo_init.js file, line no. 11 and 12:
animSpeed:400, // Slide transition speed pauseTime:3000, // How long each slide will show
You can disable the photo curl effect and link the images to a particular page using the parameters of frame short code, as shown below:
[frame src="url_of_source_image" width="204" height="160" style="0" linkstyle="normal" linksto="http://yourlink.com" title="Image title"]
Regards
SaurabhSharma,
Great theme – thanks.
We are having an issue with broken links to the images for our front page slider (even though you can see them using the URL , i.e. http://dev.aafs.com.au/wp-content/uploads/2011/11/slider1.jpg).
We have followed the instructions: Created ‘Featured” category Used correct category ID in settings Created 3 posts each with the correct Feature Image URL Categorised each post as “Featured” Saved everything.
The slider functions, but we get a broken link.
Any help would be greatly appreciated.
Taffy
Hello Taffy,
The slider seems working fine, with images. (May be you already fixed it). Let me know if you were asking something else.
Regards
How can I remove the Categories from the single blog pages? The Category is showing up as a main section header.
Thanks!
Hello there,
The page titles section shows the page name or category name, depending upon what is viewed. You can control captions for pages, but for single posts, a category name will be shown.
Let me know whether you wish to show some other name there, or remove that Grey box completely for single posts. You can reply me at xconsau[at]gmail[dot]com so that I can provide you the changes accordingly.
Regards
Hi, Sorry another question — How do I get the 4 images and text in the middle of the page to show up there on the Home page, like you have in the demo?
Thanks!
Hello again,
Inside cruz/dummy_data/ folder, you will find dummy text content for pages. Open home.txt file and copy/paste it’s content inside the HTML mode of your home page. You may need to replace the image URLs to the one on your server.
There are other text files for column grids, typography etc that may help you in creating the page contents.
Regards
Hi, How can I limit just one post on the Home page? I have stickied the post.
Thanks, http://radiancehwb.com/Hello,
Are you asking about the post in Slider? That can be limited by using “number of slides” option inside Appearance > Cruz Options > Slider.
Regards
Yes, I’ve manually entered in the tracking code right before the ” ”. When I try to clear the place in the site options for the tracking code, it doesn’t clear. Why is this? Do I need to just place the code in the site options and not the “head”?
Hello there,
The Google analytics code will not remain blank because its default value is set inside theme options. There was a bug related to it in older versions. (I am not sure if you are using an old version).
In either case, the simplest way is to insert the script inside header.php. Open this file and look for the following code at line no. 45 to 53:
<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("<?php echo $crz_analytics;?>");
pageTracker._trackPageview();
</script>
You can replace this script code with the one you’ve got from the anlytics account. Then you need not enter the analytics code from the theme options. Hope this will work for you. (An you may need to wait at least 24 hours before your site gets crawled by the Google).
Regards
Hi Saurabh,
The live preview on your labs site doesn’t seem to be working right now. Just a few minutes ago while reviewing this theme I brought it up on my iphone to see how it looks. I tried switching between the extented and boxed views to see if they would look any different on a mobile device and suddenly the site became unavailable. I went to look at the site on my computer again and it was unavailable there too.
Hope this didn’t cause problems for you!
Hello mate,
I have switched on to a new hosting for my latest themes. But the Cruz theme is still on the older one. The older server is poor in performance, and I will shift the theme to the new server at my earliest.
My apologies for any inconvenience so far.
Regards
Hi, Just got the Cruz Theme. My client wants a header banner all the way across the top. Could not find where to adjust spacing for logo. Can you help? Thanks,
Hello Teri,
The header padding is controlled by the following selectors:
1. style.css file:
Line no. 127: .brand { padding:30px 0px 30px 30px }
line no. 132.header_wgt_area { margin:30px 30px 30px 0px }
2. includes/load_styles.php file:
Line no. 283: echo( '.brand { padding:'.$crz_logo_mrgtop.'px 0px '.$crz_logo_mrgbtm.'px 30px }');
This line is used to load the margin/padding from theme options. You can delete this line so that your custom CSS rules should come into effect directly. Feel free to ask if you need further help.
Regards
Hi, Thank you — I did what you indicated. Here’s the current code in there:
.brand { position:relative; overflow:hidden; float:center; margin:0px; padding:0px 0px 0px 0px; line-height:0px } .blogname { font-size:30px; margin-bottom:0px } .blogname a { color:#333 } .blogname a:hover { color:#cc6600; text-decoration:none } .tagline { font-size:12px; line-height:18px; color:#999 } .header_wgt_area { position:relative; overflow:hidden; float:center; margin:0px 0px 0px 0px; padding-left:0px; width:959px; border-left:0px solid #e5e5e5 } .header_wgt_area * { margin:0px } .header_wgt_area p, .header_wgt_area small { color:#999 } .header_wgt_area a { color:#666 } .header_wgt_area a:hover { color:#cc6600; text-decoration:none }
If you can take a look. I just want the header to be all the way across and sit right on top of the black navigation with no white around it. THANK YOU SO MUCH FOR HELPING US ! http://radiancehwb.com/Hello Teri7,
As I mentioned earlier, you may also need to change the padding settings inside includes/load_styles.php file, line no. 283:
echo( '.brand { padding:'.$crz_logo_mrgtop.'px 0px '.$crz_logo_mrgbtm.'px 30px }');
Delete this line and save the file. Your custom CSS will not get overridden now.
Regards
Hello,
That works a treat! Thank you very much 
Kind Regards
You’re welcome, Christian.