Sachit Tandukar
Forum Replies Created
-
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Plugin update causes fatal errorSame issue here:
Class 'AcVendor\GuzzleHttp\Psr7\Utils' not found
It would be great if activecampaign could release a quick fix for this issue as soon as possible.
Forum: Plugins
In reply to: [Yoast SEO] 4.0 conflict with cmb2Hi @mamaniraj,
This issue is now resolved. It was Yoast SEO issue. They have fixed it on v4.0.1
Forum: Plugins
In reply to: [CMB2] Term meta is saved but it doesn't appear in term edit screen laterI don’t what causing issue but creating term meta before post meta solves this issue for me
- This reply was modified 8 years, 2 months ago by Sachit Tandukar.
Forum: Plugins
In reply to: [CMB2] Term meta is saved but it doesn't appear in term edit screen laterif ( ! function_exists( 'mok_activity_meta_box' ) ) { function mok_activity_meta_box() { #region Activity Details $activity = new_cmb2_box( [ 'id' => '_activity_details', 'title' => __( 'Activity Additional Details', '_mok' ), 'object_types' => [ 'term' ], 'taxonomies' => [ 'activity' ], 'new_term_section' => true, ] ); $activity->add_field( [ 'name' => __( 'Activity Featured Image', '_mok' ), 'desc' => __( 'Will be used based on theme (optional)', '_mok' ), 'id' => '_tax_featured_image', 'type' => 'file' ] ); $activity->add_field( [ 'name' => __( 'Activity for destination', '_mok' ), 'desc' => __( 'Will be used based on theme (optional)', '_mok' ), 'id' => '_tax_select_destination', 'type' => 'select', 'options' => mok_get_terms_list() ] ); #endregion } } add_action( 'cmb2_admin_init', 'mok_activity_meta_box' ); if ( ! function_exists( 'mok_get_terms_list' ) ) { /** * Returns terms list * @return array */ function mok_get_terms_list() { $terms_list = [ ]; $terms = get_terms( [ 'taxonomy' => 'destination', 'hide_empty' => false, 'parent' => 0 ] ); foreach ( $terms as $term ): $terms_list[ $term->term_id ] = $term->name; endforeach; return $terms_list; } }
Above is my code.
along with cmb2, there are other packages loaded via composer (icanboogie/inflector, tgmpa/tgm-plugin-activation and aristath/kirki)
Forum: Plugins
In reply to: [CMB2] Term meta is saved but it doesn't appear in term edit screen laterI am using CMB2 through composer. I tried by disabling other plugins but it didn’t solve issue.
Can you please help resolve this issue? It is affecting my other sites too. I can send you my theme files.
Forum: Plugins
In reply to: [CMB2] Term meta is saved but it doesn't appear in term edit screen laterHi,
I am also facing same issue. Term value won’t show up in edit fields.
Way to replicate issue, assuming you have fresh WordPress installation:
1. Add content to term in term meta fields.
2. Go to edit fields and you will see content.
3. Now create custom post and assign term to it.
4. Again go to term edit field, all information will be lost
5. After that, content wont show up on any terms.I am using WordPress version 4.5.3 and CMB2 version 2.2.2.1
Forum: Plugins
In reply to: [Redirection] how to redirect with slash?I am also having same problem as mention by @alexmaddys.
Is there any way to do by single rule?
Forum: Plugins
In reply to: [P3 (Plugin Performance Profiler)] Not workingI guess this plugin is no longer maintained