Forum Replies Created
-
AuthorPosts
-
January 25, 2018 at 5:20 PM in reply to: single image field abilty to save image url to database #8327
Anh Tran
KeymasterWhy do you want this? Using ID allows us to get other info of the image easily. Besides, you still can get the URL of the images.
Anh Tran
KeymasterHi, we've just updated the extension with support for multiple meta boxes. Please update and let me know what you think.
Anh Tran
KeymasterHi, it's not possible at the moment. I'll make a note. Thanks for your suggestion.
Anh Tran
KeymasterHi, the help tabs need to be defined like this:
'help_tabs' => array( array( 'title' => 'General', 'content' => '<p>This tab displays the general information about the theme.</p>', ), array( 'title' => 'Homepage', 'content' => '<p>This tab displays the instruction for setting up the homepage.</p>', ), )Then it will display like this:
https://imgur.elightup.com/c7bIf3P.png
I will update the docs. Thanks for your question!
Anh Tran
KeymasterHi Guy,
For now there's no options for those placeholders.
January 23, 2018 at 1:47 PM in reply to: Prevent sortable nested group being able to be moved outside of its parent. #8304Anh Tran
KeymasterJanuary 23, 2018 at 10:30 AM in reply to: Prevent sortable nested group being able to be moved outside of its parent. #8302Anh Tran
KeymasterHave you cleared the browser cache? The fix is in JS and requires to clear cache to get the fresh version.
Anh Tran
KeymasterHi,
The script need to wait until DOM ready (like
jQuery(document).ready()) to apply the conditions on elements. So, all elements must be loaded in order to run. I'm trying to optimize the JS part to make it runs faster to reduce the delay time.In the meantime, I think your CSS solution is good. CSS is loaded before JS and applied very early.
Anh Tran
KeymasterHi,
The similarity:
- Both fields display terms to users to select.
The difference:
The only difference is how they store selected terms in the database:
-
taxonomy: doesn't store any terms in the post meta. Instead, it sets post terms. Think about it like a replacement of "Category" or "Tag" meta box of WordPress.
-taxonomy_advanced: store terms' IDs in the post meta and doesn't set post terms.Hope it's clear.
Anh Tran
KeymasterHi, I've just fixed this bug in version 1.5.5. Some of your select fields share the same part, which breaks the logic for select tree (supported in 1.5.2). The fix added a better check for select tree.
Please test it.
Anh Tran
KeymasterHi Adam, I've just fixed it on Github. Can you test it?
Anh Tran
KeymasterI see. You actually can "talk" with the reviewer. Not all rules are restricted. We at gretathemes.com also submitted some themes on wordpress.org and there were some issues that can't follow the rules. Here is an example (see how we explain to the reviewers).
Hope to see your themes soon.
Anh Tran
KeymasterHi Thomas,
You can change from closure / anonymous function to this:
add_filter( 'rwmb_outside_conditions', 'prefix_tab_conditions' ); function prefix_tab_conditions( $conditions ) { $conditions['.rwmb-tab-totalpress_featured_image_options'] = array( 'visible' => array('_thumbnail_id', '!=', '-1'), ); $conditions['.rwmb-tab-panel-totalpress_featured_image_options'] = array( 'visible' => array('_thumbnail_id', '!=', '-1'), ); return $conditions; } );In short, just move the part
function...down and add a name for it. Then alter theadd_filterfunction and use the new function name.Read more about anonymous function here.
January 22, 2018 at 10:11 AM in reply to: Prevent sortable nested group being able to be moved outside of its parent. #8283Anh Tran
KeymasterHi, I've fixed it on Github. Can you try it?
Anh Tran
KeymasterHi Jason,
We have been thinking about an way to let users define which data format is used for storing in the database. But we haven't done it because it might affect the existing data.
In your case, I think you can solve it with filters: before saving
rwmb_{$field_id}_valueand after retrieving field valuesrwmb_{$field_id}_field_meta. -
AuthorPosts