Title: wpeffects's Replies | WordPress.org

---

# wpeffects

  [  ](https://wordpress.org/support/users/wpeffects/)

 *   [Profile](https://wordpress.org/support/users/wpeffects/)
 *   [Topics Started](https://wordpress.org/support/users/wpeffects/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wpeffects/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wpeffects/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wpeffects/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wpeffects/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wpeffects/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/wpeffects/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/wpeffects/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme] Show KC only on Custom Post Type](https://wordpress.org/support/topic/show-kc-only-on-custom-post-type/)
 *  Thread Starter [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/show-kc-only-on-custom-post-type/#post-8926484)
 * Hi Anthony, thanks for your reply. Yes and i do not want to show kc builder in
   page (in page kc is default) so i need show kc only with my custom post not in
   page with auto enable. Hope you understand.
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Amazing Hover Effects] Presale Query](https://wordpress.org/support/topic/presale-query/)
 *  [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years ago](https://wordpress.org/support/topic/presale-query/#post-7484742)
 * Please contact here for pre sale question [http://themebon.com/contact/](http://themebon.com/contact/)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme] Textarea not working in Group Option](https://wordpress.org/support/topic/textarea-not-working-in-group-option/)
 *  [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/textarea-not-working-in-group-option/#post-7395198)
 * Hi, i know this is misunderstanding between us. Its my request please write down
   a clear documentation about return data of group, group editor field, group text_area
   field. Also clear, how to return group fields data with foreach loop like,
 *     ```
       if( isset( $options ) ){
         foreach( $options as $option ){
            echo $option->editor_field_id
         }
       }
       ```
   
 * Its really confusing me and maybe other developer. I am making addons as a plugin
   right now. Hope you can help us asap.
 * Thanks for hard work. Have a great success.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme] Textarea not working in Group Option](https://wordpress.org/support/topic/textarea-not-working-in-group-option/)
 *  [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/textarea-not-working-in-group-option/#post-7395003)
 * also, without decode base64 not working
 * `$options = json_decode ( $atts['options'] );`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme] Textarea not working in Group Option](https://wordpress.org/support/topic/textarea-not-working-in-group-option/)
 *  [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/textarea-not-working-in-group-option/#post-7394991)
 * Hi, i am using the latest version 2.3.1 and still not working. Here is my full
   map
 *     ```
       global $kc;
           $kc->add_map(
               array(
                   'usa_accordion' => array(
                       'name' => 'Accordion',
                       'description' => __('Modern style accordion', 'KingComposer'),
                       'icon' => 'fa-ellipsis-h',
                       'css_box' => true,
                       'category' => 'Ultimate Shortcodes Addon',
                       'params' => array(
   
       				// Title Background Color
                           array(
                               'name' => 'title_bg_color',
                               'label' => 'Title Background Color',
                               'type' => 'color_picker',
                               'admin_label' => true,
                           ),
   
       					//Description Background Color
       				array(
                               'name' => 'descr_bg_color',
                               'label' => 'Description Background Color',
                               'type' => 'color_picker',
                               'admin_label' => true,
                           ),
   
       					array(
                               'name' => 't_f_size',
                               'label' => 'Title Font Size',
                               'type' => 'number_slider',
                               'options' => array(
                                   'min' => 1,
                                   'max' => 50,
                                   'unit' => 'px',
                                   'show_input' => true,
   
                               ),
                               'value' => '18'
                           ),
   
       					array(
                               'name' => 'd_f_size',
                               'label' => 'Description Font Size',
                               'type' => 'number_slider',
                               'options' => array(
                                   'min' => 1,
                                   'max' => 30,
                                   'unit' => 'px',
                                   'show_input' => true,
   
                               ),
                               'value' => '14'
                           ),
   
                   		array(
                               'type'            => 'group',
                               'label'            => __('Add Accordion Items', 'KingComposer'),
                               'name'            => 'acoptions',
                               'description'    => __( 'Repeat this fields', 'KingComposer' ),
                               'params' => array(
                                       array(
                                           'name' => 'title',
                                           'label' => 'Title',
                                           'type' => 'text',
                   						'value' => 'title goes here',
                                       ),
                                       array(
                                           'name' => 'descr',
                                           'label' => 'Description',
                                           'type' => 'editor',
                   						'value' => base64_encode( 'description goes here' ),
                                       ),
                       				array(
                                           'name' => 'act_accordion',
                                           'label' => 'Active Item?',
                                           'type' => 'checkbox',
                                           'options' => array(
                                           'active' => 'Yes',
                                           )
                                           ),
                   					),
                   				),	
   
                       )
                   )
               )
           );
       ```
   
 * input was “222222222” and output is “PHA+MjIyMjIyMjIyMjI8L3A+”
 * Please check it asap.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme] Trouble with columns row and responsive](https://wordpress.org/support/topic/trouble-with-columns-row-and-responsive/)
 *  [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/trouble-with-columns-row-and-responsive/#post-7370855)
 * Hi mrklak, help on the way. They are very fast and serious about the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Multisite](https://wordpress.org/support/topic/multisite-323/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/multisite-323/#post-6852442)
 * Hi Val, yes it works. you can use it any where by using the shortcode powered.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Is this responsive?](https://wordpress.org/support/topic/is-this-responsive-3/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/is-this-responsive-3/#post-6732160)
 * Hi there, this not responsive yet. But i will responsive it soon.
 * Thanks
    Noor
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Event Calendar] google-calendar.js 404 not found](https://wordpress.org/support/topic/google-calendarjs-404-not-found/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/google-calendarjs-404-not-found/#post-6669479)
 * Hi there, just fixed the issue. Please read the description carefully to embed
   the google calendar
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Event Calendar] How integrate with google calendar?](https://wordpress.org/support/topic/how-integrate-with-google-calendar/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/how-integrate-with-google-calendar/#post-6595167)
 * Please check plugin description.
 * Thanks
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Ultimate Hover Effects] full of imperfections](https://wordpress.org/support/topic/full-of-imperfections/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/full-of-imperfections/#post-7997239)
 * Hi there, i understand your concern about this plugin. I will release next version
   soon with more user friendly option.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Missing Something?](https://wordpress.org/support/topic/missing-something-5/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/missing-something-5/#post-6115020)
 * Hi, please contact me at [http://wpeffects.com/contact/](http://wpeffects.com/contact/)
   with your issue.
 * Thanks
    Noor
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Customization Question](https://wordpress.org/support/topic/customization-question-4/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/customization-question-4/#post-6616637)
 * Hi there, please contact me at [http://wpeffects.com/contact/](http://wpeffects.com/contact/)
   with your URL
 * Thanks
    Noor
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Purchased the Plugin Already](https://wordpress.org/support/topic/purchased-the-plugin-already/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/purchased-the-plugin-already/#post-6071309)
 * Hi there, i am really sorry for that. I was in trouble from many days. Please
   email me at [http://wpeffects.com/contact/](http://wpeffects.com/contact/)
 * Thanks
    Noor
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Hover Effects] Nothing in the "add new hover" window](https://wordpress.org/support/topic/nothing-in-the-add-new-hover-window-1/)
 *  Plugin Author [wpeffects](https://wordpress.org/support/users/wpeffects/)
 * (@wpeffects)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/nothing-in-the-add-new-hover-window-1/#post-6312228)
 * Hi jguedj, you are in wrong place.
 * Thanks

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/wpeffects/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/wpeffects/replies/page/2/?output_format=md)