Forum Replies Created
-
AuthorPosts
-
KayCryout Creations mastermind
We can’t make any promises. It’s now in our to-do list but can’t estimate a date for its implementation.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
That’s a bit complicated. It involves quite a bit of editing files. A little knowledge of WordPress, PHP, HTML and CSS is required. We will make a tutorial for that in the near future. Until then you could search for a plugin to do that.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindTry Resetting the Settings to Default and see what happens.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindIn the Mantra Settings under Miscellaneous Settings there is an option called Make Site Header a Link. Guess what that does?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindAdd this to the Custom CSS area:
.topmenu a { font-size:18px;}
.footermenu a { font-size:18px;}
I guess they’re pretty self-explanatory, you’re free to play with the values as you please.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindMantra not only allows child themes, it embraces them.
Your mistake here is not entering a Theme URI. If you don’t have one or just don’t want to enter one you must delete that line completely. You can’t have ‘Theme URI:’ and then nothing. Delete that line completely.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindWe haven’t really played with plugins of that sort but here’s to hoping someone around the forum has.
Good luck!
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
Have a read here about WordPress menus: http://codex.wordpress.org/Appearance_Menus_Screen
It will all make sense after that.Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindCould you show us a link to your site?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
Have a nice read about menus here: http://codex.wordpress.org/Appearance_Menus_Screen
Then check out mantra and you will see it supports two extra menus. Use the top navigation menu to get what you want.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.February 11th, 2013 at 21:45 in reply to: Have the header image resized automatically when changing screen size #3611KayCryout Creations mastermindFor now you can’t because of the fixed header height. We’re working on implementing it in a future version.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindIt’s a lot easier to try things out yourself than ask around on the forum. Try a size, see what happens, try another one and keep on going. Don’t be afraid to experiment.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindPosting twice isn’t really gonna help you out. Bumping your old topic would be the best thing to do if no answer is given after a certain time. This is a free forum so some questions won’t be answered no matter how many times you post them. I answered your initial topic on this.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
You need to create a child theme and paste the following code in the chlild themes’ functions.php file. Or you can add this in mantra’s functions.php file but the changes will be lost when you update to another version.
function hide_attachment_comments( $open, $post_id ) {
$post = get_post( $post_id );
if( $post->post_type == 'attachment' ) {
return false;
}
return $open;
}
add_filter( 'comments_open', 'hide_attachment_comments', 10 , 2 );
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermind@gingerleigh I see you have fixed that probelm.
@kelly Try switching the theme. Do you still have that issue? Do you have comments enabled under WordPress dashboard >> Settings >> Discussion ?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
What exactly are you trying to do? Create totally different pages that have nothing to do with the mantra template? What’s that page designer that you mention?Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindAnd why is that bothering you? You ARE using the Mantra template.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindWell if you’re using the Custom Slides option for the slider just delete all the text and title fields. If you’re using another setting add this code to the custom CSS area:
.nivo-caption {display:none;}
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
That’s a slider in the header. Mantra doesn’t support that, the only slider it supports is in the presentation page. There are however many plugins that you can use to achieve that.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermind@Forest Skills
Yeah that’s a bit too much because we’re trying to add the most general and wanted options. What you request is pretty easy to do via CSS styling with a little patience.
@Natalie
We will add in the future more custom page templates.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindTry replacing that code with this:
#site-description {clear: left; }Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi Richard!
The simplest and easiest way ( not the most correct) would be to actually hide the slider. Add this code to the custom CSS area:
.slider-wrapper {display:none}
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindIf you got that error, you didn’t copy/paste the right chunk of code. Also, as the theme saves, sanitizes and reads data saved in MySQL tables, just copying some code won’t help. You will have to replace all variables with actual HTML that you want to appear in the column.
Basically it would be a lot easier to just wait for us to implement that someday ( not in a very distant future)
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
Could you each show us link to your site so we can investigate this further?
Also, Ben, the compatibility mode for IE8 is not enabled by default and when it is on, it’s pretty much like IE7 which we don’t support.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi Luigi!
Congrats on your site. Looks great.
1. Editing the php file is the only way to achieve that at the moment. Done properly you wouldn’t have to change the code every time you change a photo if you’d keep the same photo names. But it would involve a little bit of work since the whole thing is in a ‘for’ loop.
2. That flashy effect is from the theme. If you want to remove that go to the same /includes/theme-frontpage.php file and remove this part:
jQuery('#front-columns > div img').hover( function() {
jQuery(this)
.stop()
.animate({opacity: 0.5}, 100)
.fadeOut(100)
.fadeIn(100)
.animate({opacity: 1}, 100) ;
}, function() {jQuery(this).stop();} )Good luck!
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindIf you didn’t insert it in the php files you shouldn’t try to delete it from there. Could you show us a link to your site?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindCould you show us the exact code you are trying to insert?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindUnfortunately I see you removed the whole footer from our theme (including the copyright link) so I’m afraid we can’t help you any further.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindPaolo, we’re gonna check Mini twitter feed and see what can be done
Nathan, could you show us a link to your site? Also please update to the latest Mantra version if you haven’t yet done so.
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes.KayCryout Creations mastermindHi!
Could you show us a link to your page?
Before posting consider reading our short theme debugging instructions.
Please read the FAQs: Mantra • Nirvana • Parabola • Tempera
Tutorials: custom menus • translating theme • installing theme • category page with intro • disabling comments Wordpress: child themes • categories/posts
Before making any modifications to your theme we strongly recommend using Child Themes. -
AuthorPosts