Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 77 total)
  • Author
    Posts
  • in reply to: exclude some posts from post query #12204
    brkardbrkard
    Participant

    Hi Anh.

    I have opened this topic because this way stopped working after some metabox updates i think.

    My query args code is like this and this code generated with metabox builder extension:

    'query_args' => array(
    'post_parent' => 0,
    'orderby' => 'menu_order',
    'order' => 'ASC',
    'post__not_in.0' => 3723,
    'post__not_in.1' => 3724,
    'post__not_in.2' => 3775,
    'post__not_in.3' => 3776,
    'post__not_in.4' => 4963,
    'post__not_in.5' => 4855,
    'post__not_in.6' => 4568,
    'post__not_in.7' => 4570,
    'post__not_in.8' => 4569,
    'post__not_in.9' => 4567,

    Do you have any idea about this ?

    Thanks.

    in reply to: settings page #11498
    brkardbrkard
    Participant

    I have figured it out. Thanks.

    in reply to: exclude some posts from post query #11497
    brkardbrkard
    Participant

    It is working now.

    Thank you very much

    in reply to: custom post type capabilities #11486
    brkardbrkard
    Participant

    Hi Anh.

    It will be good feature if you can figure a way to do inside the plugin.

    Thank you very much.

    in reply to: exclude some posts from post query #11485
    brkardbrkard
    Participant

    Hi Anh.

    I tried what you said i think , but cant make it work. It shows "no results found".

    Here are the screens:

    https://pasteboard.co/HGpS1JM1.png

    https://pasteboard.co/HGpSikB.png

    https://pasteboard.co/HGpStn9.png

    in reply to: any plans about adding post tags #11467
    brkardbrkard
    Participant

    Hi Anh..

    Did you try Dynamic option creation for select2 ?

    Is there any progress on this topic?

    Thanks

    Burak

    in reply to: control posts comments with customfields on or off #10886
    brkardbrkard
    Participant

    Hi Anh..Thanks for your reply.

    I cant make it work with your snippet..

    But i found another way with another sniippet...Thank you very much for your help.

    Here it is working snippet:

    /**
     * Enable or disable comments based on custom field Allow Comments.
     *
     * @param bool $open    Whether comments should be open.
     * @param int  $post_id Post ID.
     * @return bool Whether comments should be open.
     */
    function wpdocs_comments_open( $open, $post_id ) {
        $post = get_post( $post_id );
            if (get_post_meta($post->ID, 'allow_comments', true)) {
            $open = true;
        }
        return $open;
    }
    add_filter( 'comments_open', 'wpdocs_comments_open', 10, 2 );
    in reply to: cant add metabox for custom post types with mb builder #10874
    brkardbrkard
    Participant

    Hi.

    I have created cpt with metabox post type extension..so i am not sure if it is With init hook and priority = 10?..

    Also i try to find the problem but i noticed there is no problem with new created metaboxes..This happens with an old date metabox that i created... I am still try to find the problem.

    And i try to import metabox to a new fresh install but i cant. After try to import i am gettiong error like this: Cannot load meta-box-import.

    in reply to: clolor picker field problem with front end forms #10793
    brkardbrkard
    Participant

    It is working now.

    Thank you very much.

    in reply to: clolor picker field problem with front end forms #10774
    brkardbrkard
    Participant

    Hi.

    The problem seem when i activate allow to select opacity option.

    Please check this > http://wordpress-165518-569366.cloudwaysapps.com/index.php/test-metabox1/

    in reply to: Meta Box AIO - Update Failed (1.4.1 - 1.4.2) #10234
    brkardbrkard
    Participant

    Hi.

    I have the same issue update to 1.4.2 to 1.5

    in reply to: using metabox fields for front end submission #10185
    brkardbrkard
    Participant

    Thanks for your reply David.

    Actually i want to show only metabox id. I want to include title and content fields in metabox fields.

    Like this
    [mb_frontend_form id=”your_mb_id”]

    Title and content fields will be included in metabox..

    I want to achive this.

    There is tutorial about what i need here > https://docs.metabox.io/save-wysiwyg-content-post-content/

    i hope Anh will add title and content wordpress fields to metabox main plugin. This will be better easy and more comofortable.

    I hope i could tell

    Thanks

    Burak

    brkardbrkard
    Participant

    Hi Anh.

    I dont know if you check this; but still i have same problem..

    And also now i noticed that switch field created with MB Builder, not saves off status as 0 to database.
    On status is saving to database as 1.

    0 value seems some problem with MB Builder.

    in reply to: Bulk options adding #9862
    brkardbrkard
    Participant

    Ok. thanks. for your reply.

    in reply to: settings pages in front end #9861
    brkardbrkard
    Participant

    Hi Anh

    Because i want to bring all necessary things in wp-admin to front end with your plugin.

    Your plugin has a good potential for this.
    Me and a alot of people are using worpdress for clients websites. And clients are more happy with front end because i can make something very easy with front-end extension .

    Adding posts-pages, add users, profile editing..

    And i bring some themes customizer settings to a custom settings page with your settings page extension. Simple things like logo, site layout etc.

    And i dont want my clients to access to wp-admin.

    I think Metabox plugin can make everything in front end and this will be great.

    I dont like to give examples from other plugins but with ACF i can make this

    "https://support.advancedcustomfields.com/forums/topic/options-page-in-front-end/"

    And i want to use your plugin 🙂

    Thanks.

Viewing 15 posts - 16 through 30 (of 77 total)