kayapati
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Display taxonomies in pods formThank you I got it.
After making debug mode on, Few seconds it worked fine then again same problem..
- This reply was modified 7 years, 9 months ago by kayapati.
yes, I see the same problem, when choose checkbox the result always show “Sorry, nothing found” it was working fine earlier, I see the issue just from yesterday onwards.
Any thing wrong at settings? I am sure I selected IN operator.
Forum: Plugins
In reply to: [Meta Box] No table to use same images for other uploading optionThank you Anh Tran
Forum: Plugins
In reply to: [Meta Box] No table to use same images for other uploading optionPlease update us once you finalised where the issue is.
Forum: Plugins
In reply to: [Meta Box] No table to use same images for other uploading optionglobal $kta_meta_boxes;
$kta_meta_boxes = array();$kta_meta_boxes[] = array(
‘id’ => ‘portfolio_tab2_images’,
‘title’ => __(‘Polaroid Images’, ‘talentagency’),
‘pages’ => array( ‘portfolio’ ),
‘priority’ => ‘high’,
‘context’ => ‘normal’,
‘fields’ => array(
array(
‘name’ => __(‘Upload Polaroid Images’,’talentagency’),
‘desc’ => ”,
‘id’ => $prefix . ‘upload_pf_polaroid_images’,
‘type’ => ‘image_advanced’,
‘max_file_uploads’ => 5,
),
array(
‘name’ => __(‘Upload Profile Images’,’talentagency’),
‘desc’ => ”,
‘id’ => $prefix . ‘upload_pf_profile_images’,
‘type’ => ‘image_advanced’,
‘max_file_uploads’ => 10,
),
)
);function kta_register_meta_boxes()
{
global $kta_meta_boxes;
// Make sure there’s no errors when the plugin is deactivated or during upgrade
if ( class_exists( ‘RW_Meta_Box’ ) )
{
foreach ( $kta_meta_boxes as $meta_box )
{
new RW_Meta_Box( $meta_box );
}
}
}
add_action( ‘admin_init’, ‘kta_register_meta_boxes’ );Forum: Plugins
In reply to: [Meta Box] No table to use same images for other uploading optionSure I will send it with in few minutes.
Forum: Plugins
In reply to: [Meta Box] No table to use same images for other uploading optionBut the same code works fine when we use 4.10 version, what might be issue?