Title: msbsally's Replies | WordPress.org

---

# msbsally

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating custom post type while submitting form](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/#post-7465113)
 * Okay esmi:)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating custom post type while submitting form](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/#post-7465110)
 * Hi Guys,
    I am not getting enough information on creating custom post type while
   submitting form so moved to create “custom admin page” to view my form data from
   mysql db. I viewed the employee names in wp site. Now trying to view the page
   with detail when clicked the employee name.
 * If I have finished it I’ll Post my answer .
    Thanks Sallu.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating custom post type while submitting form](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/#post-7465107)
 * I have make use of it. it is not create any new custom post nor inserted the 
   form values in the custom post which i created. Instead it added the form data’s
   in “wp_posts”.
 * This is the code which i used,
 *     ```
       $title= $_POST['your_name'];
        $decription=$_POST['e_mail'];
       $my_post = array(
         'post_title'    => wp_strip_all_tags( $title ),
         'post_content'  => $decription,
         'post_status'   => 'publish',
         'post type'     => 'EmpResume'
         //'post_author'   => 1,
         //'post_category' => array( 8,39 )
       );
   
       // Insert the post into the database
       wp_insert_post( $my_post );
       ```
   
 * Any other idea?
 * Thanks Sallu.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CF7 - Custom Error Messages] Custom error messages are not displaying](https://wordpress.org/support/topic/custom-error-messages-are-not-displaying/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/custom-error-messages-are-not-displaying/#post-7443555)
 * hai,
    I do not get it worked till now. Any update will be appreciated.
 * Thanks Sallu.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating custom post type while submitting form](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/creating-custom-post-type-while-submitting-form/#post-7465089)
 * [@bob](https://wordpress.org/support/users/bob/) Cristello
 * I am not using any plugins to create my form.
    I created it by my own and did
   ajax validation too. I just need to insert the form details in a custom post 
   rather than in the mysql table. While Clicking the post from the site(backend),
   I need to show the details which are inserted through form. Any help will be 
   helpful to me.
 * Thanks Sallu
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [how to get the filled form values of contact form 7](https://wordpress.org/support/topic/how-to-get-the-filled-form-values-of-contact-form-7/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-the-filled-form-values-of-contact-form-7/#post-7451458)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/)
    Really sorry for the
   late reply.
 * If you dont mind can u explain me once am not able to get your point.
 * Thanks Sallu.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [how to get the filled form values of contact form 7](https://wordpress.org/support/topic/how-to-get-the-filled-form-values-of-contact-form-7/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-the-filled-form-values-of-contact-form-7/#post-7451373)
 * Sorry for late reply guys.
    [@bcworkz](https://wordpress.org/support/users/bcworkz/)
 * Thanks to look into my question. My mail is not working so it is impossible to
   debug through that method. If i used echo or print_r the loading icon of submit
   button keep on rotating. It inserting values but as I told before just “NULL”.
 * [@staartmees](https://wordpress.org/support/users/staartmees/)
 * I have used that plugin, I felt the table is confusing which is created by that
   plugin.
 * Any other help??
 * Thanks Sallu.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] Advanced custom filed and rotating image problem](https://wordpress.org/support/topic/advanced-custom-filed-and-rotating-image-problem-1/)
 *  [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/advanced-custom-filed-and-rotating-image-problem-1/#post-7436100)
 * Hi,
 * I have created web page with custom fields normal_image and hover_image. I need
   to to view hover_image while hovering on a normal_image.
    As am a newbie to WP
   any help regard this helpful to me.
 * Thanks Sallu.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] configuration error](https://wordpress.org/support/topic/configuration-error-9/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/configuration-error-9/#post-7431319)
 * For spaces in between text fields we use
 *     ```
       .wpcf7-form input{
       	margin:0;
       }
       ```
   
 * For check and radio buttons what to do i tried dint get the result.
 * Sallu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] configuration error](https://wordpress.org/support/topic/configuration-error-9/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/configuration-error-9/#post-7431318)
 * NO lesi
    In my form getting large empty spaces inbetween 4 form elements. Means
   8 Elements there means upside 5 then large space then 3 elements. Do u undrstnd
   what am try to say?
 * Thanks Sallu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] configuration error](https://wordpress.org/support/topic/configuration-error-9/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/configuration-error-9/#post-7431316)
 * Hi,
    I tried classes inside div in contact form7. But when i inspect the textboxes
   i could see many span classes added in my form. I searched but till dint get 
   solution how to remove it. If any help regard this will be helpful.
 * Greetings Sallu.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom post problem](https://wordpress.org/support/topic/custom-post-16/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-post-16/#post-7431307)
 * Thanks,
 * Sallu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] configuration error](https://wordpress.org/support/topic/configuration-error-9/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/configuration-error-9/#post-7431306)
 * HI,
 * Again sorry for late reply.Thanks for your response.
 *     ```
       <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
       <?php the_content(); ?>
       <?php endwhile; ?>
       ```
   
 *  I have used the above code and i get the form lesi.
    Now my prob is how to resize
   particular text boxes and list items in the contact form7 . Any help?.
 * Thanks Sallu.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] configuration error](https://wordpress.org/support/topic/configuration-error-9/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/configuration-error-9/#post-7431215)
 * [@lesimoon](https://wordpress.org/support/users/lesimoon/)
    Thanks to look into
   the question dude. Sorry for the late reply. I have another issue, contact form
   is not displaying in my custom theme. Any help to rectify it. contact form working
   well with the other default theme.
 * Thanks Sallu.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom post problem](https://wordpress.org/support/topic/custom-post-16/)
 *  Thread Starter [msbsally](https://wordpress.org/support/users/msbsally/)
 * (@msbsally)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-post-16/#post-7431175)
 * [@catacaustic](https://wordpress.org/support/users/catacaustic/)
 * First of all thanks to look into my question. I am changing html template to 
   wp site so i have a request that while hovering on a image which bring from custom
   field should be changed. how do i do this?
 * Thanks Sallu.

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

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