Forum Replies Created
-
AuthorPosts
-
brkard
ParticipantHi 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.
brkard
ParticipantI have figured it out. Thanks.
brkard
ParticipantIt is working now.
Thank you very much
brkard
ParticipantHi Anh.
It will be good feature if you can figure a way to do inside the plugin.
Thank you very much.
brkard
ParticipantHi 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
brkard
ParticipantHi Anh..
Did you try Dynamic option creation for select2 ?
Is there any progress on this topic?
Thanks
Burak
brkard
ParticipantHi 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 );August 4, 2018 at 4:58 AM in reply to: ✅cant add metabox for custom post types with mb builder #10874brkard
ParticipantHi.
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.
brkard
ParticipantIt is working now.
Thank you very much.
brkard
ParticipantHi.
The problem seem when i activate allow to select opacity option.
Please check this > http://wordpress-165518-569366.cloudwaysapps.com/index.php/test-metabox1/
brkard
ParticipantHi.
I have the same issue update to 1.4.2 to 1.5
brkard
ParticipantThanks 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
June 5, 2018 at 11:24 AM in reply to: if i add 0 value for select filed code not exporting values #10038brkard
ParticipantHi 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.
brkard
ParticipantOk. thanks. for your reply.
brkard
ParticipantHi 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.
-
AuthorPosts