Hello, Please is there a way to manage multi-language feature when I export my theme-options to my final theme ? Thanks in advance. Jonath.
Hello,
I bouhgt the template : Especial http://themeforest.net/item/especial-business-portfolio-wordpress-theme/181156This template is using the extension OptionTree (1.1.4 on the video) Documentation video : http://www.screenr.com/Ame
I use the lastest version of OptionTree (2.0.9) On the documentation video there is an important part on OptionTree extensions called “Theme Options” and it’s not on the version. How to get to Theme Options” please ? It’s a very important part and I can’t get it !
Thank you for your help and have a nice day.
- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 6-7 years
- Interviewed on the Envato Notes blog
- Item was Featured
- Microlancer Beta Tester
- Referred between 200 and 499 users
rashel said
Hello, I bouhgt the template : Especial http://themeforest.net/item/especial-business-portfolio-wordpress-theme/181156This template is using the extension OptionTree (1.1.4 on the video) Documentation video : http://www.screenr.com/Ame
I use the lastest version of OptionTree (2.0.9) On the documentation video there is an important part on OptionTree extensions called “Theme Options” and it’s not on the version. How to get to Theme Options” please ? It’s a very important part and I can’t get it !
Thank you for your help and have a nice day.
If the theme hasn’t been updated to use OptionTree 2.0 then you should use the OptionTree version which is compatible with the theme. Ask the author of the theme if you are not sure.
- Sold between 250 000 and 1 000 000 dollars
- Exclusive Author
- Interviewed on the Envato Notes blog
- Author was Featured
- Item was Featured
- Beta Tester
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
Hi Derek,
absoluely needed a multi select option for pages, posts and similar. Having hundred of check boxes is absurd… please add this option.
Parker
ParkerAndKent said
Hi Derek,absoluely needed a multi select option for pages, posts and similar. Having hundred of check boxes is absurd… please add this option.
Parker
+1
I’ve followed the documentation for using OT in theme mode however it doesnt show up in Theme Options unless I enable it as a plugin which I was hoping to avoid?
Has anyone else seen this? Can someone point to to some reference for loading it as part of a theme (and not as a plugin)?
Thanks very much
Fixed.. realised it HAS to be invoked from functions.php and no other file.. as far as I could see. PS: it would be nice to have a $OT = new OptionTree(configOptions) instantiator instead of this.
Question: How do I get rid of the “New Layout” bar?
Hi, guys, could someone explaine how to use checkbox? I use this code:
<?php $portfolio_filtering = ot_get_option( 'portfolio_filtering' ); ?> <?php echo $portfolio_filtering; ?>
$portfolio_filtering should return value ‘On’ but it’s just return a word ‘Array’. The same code for select and radio works fine. Any help please?
<?php
echo '<pre>' . print_r( $portfolio_filtering ) . '</pre>';
?>
I have figured out. This works for me:
<?php $portfolio_filtering = ot_get_option( 'portfolio_filtering' ); ?> <?php if ( ! empty( $portfolio_filtering ) ) : ?> Code goes here... <?php endif; // End if ( ! empty( $portfolio_filtering ) ) ?>
