htvu
Forum Replies Created
-
Forum: Plugins
In reply to: [OptionTree] How to use option treeOptionTree doesn’t help you show data. It just help you store settings for your site. OptionTree is create for coder. Your code (in theme) must read OptionTree settings and generate/show data (post/page) base on settings.
Forum: Plugins
In reply to: [OptionTree] Theme options under the Appearance tab…. why?You can use this plugin in Theme mode so you can place Theme option link wherever you want.
Forum: Plugins
In reply to: [OptionTree] Meta Boxes on specific theme template pageYes, it’s easy to do that.
– Create a template for home page (ex: home-page.php).
– Create an OptionTree Custom Metabox (see document) for Home page. Before the line of PHP code that register OptionTree Custom Metabox you add some line of code to check if editing page has template name is home-page.php then register metabox otherwise bypass register code. In WP page edit screen choose your homepage template in template select box and save page. Your metabox for home page will show.I think this issue belong to your theme. The author of the theme used plugin or his code to check a specific version of OT. Maybe he expected a old version of OT.
Forum: Plugins
In reply to: [OptionTree] Drop down menu's collapsed on Version 2.0.12That code located in JS file that you can’t see in Plugin Editor. You should use a FTP program. I’m not sure why you had this issue because it is fixed in 2.0.12. But your information about the issue look like 2.0.9 issue.
If you can give me FTP info, I will try to fix for you.
My email here: https://www.ads-software.com/support/topic/optiontree-don%c2%b4t-load-my-images?replies=14#post-3697500Forum: Plugins
In reply to: [OptionTree] Drop down menu's collapsed on Version 2.0.12Forum: Plugins
In reply to: [OptionTree] Update or add new list item from front endIf you want to work with List Item manually, give a look at sanitize_callback function in ot-settings-api.php and save_meta_box function in ot-meta-box-api.php. Both php files located in includes folder of OT.
Forum: Plugins
In reply to: [OptionTree] updating integrated option-treeIt look like you updated your WP to new version. In this situation you can’t ask theme author fix issues for free if he don’t want. You should pay him (or someone) to fix issues. Otherwise, you can downgrade WP to version that theme supported.
Forum: Plugins
In reply to: [OptionTree] Adjust/Add Social OptionsI think your issue belong to the theme not OptionTree. It look like theme author put “Skype” text into his code and you can’t change it via Theme options.
Forum: Plugins
In reply to: [OptionTree] Drop down menus not appearing in theme optionsah, I remembered this issue. If you are using OT version 2.0.9, just open ot-admin.js file (it is placed somewhere in your theme folder, I can’t tell you exactly because it’s up to theme author) Go to line 376 remove the [dot] after .select-wrapper
(‘.select-wrapper.’)
become
(‘.select-wrapper’)
Forum: Plugins
In reply to: [OptionTree] Drop down menus not appearing in theme optionsIf you can give me some info to access admin panel I will try to fix for you.
You can see my email here: https://www.ads-software.com/support/topic/optiontree-don%c2%b4t-load-my-images?replies=14#post-3697500Forum: Plugins
In reply to: [OptionTree] Drop down menus not appearing in theme optionsOpen your theme options page. Look at the top of option panel, if you luck (author did not remove) you will see version number of OT.
Forum: Plugins
In reply to: [OptionTree] How to use option treeIt not easy to help you here because it is require edit more places in some files both js and php. Addition it base on your option settings. So I don’t know exactly where to edit in your code.
Forum: Plugins
In reply to: [OptionTree] Drop down menus not appearing in theme optionsWhich version of OT are you using ?
Forum: Plugins
In reply to: [OptionTree] Meta boxes for pages using a certain templateYes, it’s possible. At the end of Custom Metabox file (PHP) you check which template file is using and just regrister OT metabox that you need.