Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,056 through 2,070 (of 3,958 total)
  • Author
    Posts
  • in reply to: Support for relationships? #10291
    Anh TranAnh Tran
    Keymaster

    Yes, it does. This is the screenshot of the output:

    screenshot

    in reply to: Meta box group clone fields became extremely slow!!! #10290
    Anh TranAnh Tran
    Keymaster

    Hello,

    The clone feature uses jQuery and when a clone event is fired, it loops through all the inputs, updating their indexes, values and name attribute. The more inputs, the longer the process take.

    I have improved the speed of cloning in this ticket. I'd suggest you reduce the number of inputs and use the wysiwyg field for some cases. Here is an interesting discussion about this.

    in reply to: Hide tab #10289
    Anh TranAnh Tran
    Keymaster

    I got it. I thought the tabs in the MB Tabs extension.

    Anyway, have you tried using this selector a[href*="tab-general"]?

    Regarding the CSS class for settings pages, yes, it's only available for fields.

    Anh TranAnh Tran
    Keymaster

    No, it's created for internal use. I'll add it to the docs right now.

    in reply to: language files update problem #10279
    Anh TranAnh Tran
    Keymaster

    All files in the plugins will be removed and replaced by the new files in the newer versions. So do not keep the language files in the plugin folder. Instead, you can:

    • Send me the translation files, so I can update the extensions with the new translations! That will help other people!
    • Or you can keep your translation locally in the wp-content/languages/plugins/PLUGIN-SLUG/ folder. WordPress will use the translation files in this folder if they're available. If you use the Loco Translate plugin to translate the plugins, it has option to save file to this folder.
    Anh TranAnh Tran
    Keymaster

    Yes, you can do that with the hook mb_settings_page_load. It's the internal hook used to save the fields' values after the settings page is loaded. The process uses priority 10, so if you want to do something after that, you should use a higher priority, such as 20.

    Here is an example:

    add_action( 'mb_settings_page_load', function ( $args ) {
        if ( $args['id'] === 'YOUR SETTINGS PAGE ID' ) {
            // Do something
        }
    }, 20 );
    in reply to: Hide tab #10276
    Anh TranAnh Tran
    Keymaster

    Hi Alex,

    The Show Hide extension works for meta boxes only. To hide tabs, please use the Conditional Logic extension. Here is the tutorial on doing that.

    in reply to: Problems uploading images to media library #10275
    Anh TranAnh Tran
    Keymaster

    Hi, I've tested with lower role (subscriber) with the snippet above to allow it to upload images and it worked for me. Can you take a screenshot of the error? Or a screen record is perfect for debugging?

    in reply to: Conditional Logic Custom Taxonomy #10274
    Anh TranAnh Tran
    Keymaster

    Hi Max,

    Can you try:

    1 - Changing from number 7, 9 to string '7', '9'? Or
    2 - Using the term slugs instead of id?

    in reply to: "before" => "text" how do you hide it? #10273
    Anh TranAnh Tran
    Keymaster

    Hi Alex,

    The "before" is not a part of the field and thus, it cannot be controlled by the conditions.

    in reply to: Group clone limit #10272
    Anh TranAnh Tran
    Keymaster

    This post might be the problem (and solution). Please take a look.

    in reply to: Image advanced field #10271
    Anh TranAnh Tran
    Keymaster

    I'm afraid manual is the only way to do that :(. There's no way to do that automatically.

    in reply to: Meta Box AIO - Update Failed (1.4.1 - 1.4.2) #10266
    Anh TranAnh Tran
    Keymaster

    Hey guys, I've just fixed the update system. Please try again.

    in reply to: Beaver Themer Integrator missing from AIO #10265
    Anh TranAnh Tran
    Keymaster

    Hi,

    The extension is added to the latest version of Meta Box AIO. Please update it.

    PS: The auto-updater is having a bug. I'm working on that. If you have a problem with the updater, please leave comments in this topic.

    in reply to: Metabox AIO fails to update #10263
    Anh TranAnh Tran
    Keymaster

    Hi eolet,

    I'm working on this issue. This bug was reported here. Let's discuss on that topic. I'll close this topic.

Viewing 15 posts - 2,056 through 2,070 (of 3,958 total)