Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,431 through 2,445 (of 3,707 total)
  • Author
    Posts
  • Anh TranAnh Tran
    Keymaster

    Have you cleared the browser cache? The fix is in JS and requires to clear cache to get the fresh version.

    in reply to: Flash of Unstyled Content #8300
    Anh TranAnh Tran
    Keymaster

    Hi,

    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.

    in reply to: Taxonomy Advanced Vs Taxonomy #8299
    Anh TranAnh Tran
    Keymaster

    Hi,

    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.

    in reply to: Visibility functionality broken #8288
    Anh TranAnh Tran
    Keymaster

    Hi, 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.

    in reply to: Nested Clones Break #8286
    Anh TranAnh Tran
    Keymaster

    Hi Adam, I've just fixed it on Github. Can you test it?

    in reply to: Error with Theme Check Plugin #8285
    Anh TranAnh Tran
    Keymaster

    I 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.

    in reply to: Show A Specific Tab When A Feature Image is Added #8284
    Anh TranAnh Tran
    Keymaster

    Hi 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 the add_filter function and use the new function name.

    Read more about anonymous function here.

    Anh TranAnh Tran
    Keymaster

    Hi, I've fixed it on Github. Can you try it?

    in reply to: Custom Table Feature Request #8282
    Anh TranAnh Tran
    Keymaster

    Hi 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}_value and after retrieving field values rwmb_{$field_id}_field_meta.

    in reply to: MB Relationships - Connection Metadata? #8277
    Anh TranAnh Tran
    Keymaster

    Hi, it’s the next step. The first version hasn’t supported metadata for connections yet. We’ll work on that a little bit later.

    in reply to: Nested Clones Break #8266
    Anh TranAnh Tran
    Keymaster

    Hi Adam,

    I'm working on it. Please wait.

    in reply to: Custom forum posts #8258
    Anh TranAnh Tran
    Keymaster

    I'm sorry, we haven't done it yet. We focused on making the relationship plugin (which has been released recently). We'll work on this next. Probably it takes 1 month to complete.

    in reply to: custom_html issue with columns and tabs #8257
    Anh TranAnh Tran
    Keymaster

    Hi Todd,

    What is the content of the custom_html field? Do you output non-well-formatted HTML?

    The tabs and columns heavily depends on the HTML structure of fields. Especially $field['before'] and $field['after'] which are used to create columns. If your fields have something like that, please check it.

    If the problem still occurs, please post your code to pastebin.com or gist.github.com and give me the link here.

    in reply to: Missing options/sections & layout issues #8256
    Anh TranAnh Tran
    Keymaster

    Hi, have you tried clear browser cache to refresh the CSS?

    in reply to: Post relationships #8255
    Anh TranAnh Tran
    Keymaster

    Hi David,

    We have done the first version of the MB Relationships plugin. We hope that can solve your problem. Please try it and let me know if you need anything.

Viewing 15 posts - 2,431 through 2,445 (of 3,707 total)