Title: eckul's Replies | WordPress.org

---

# eckul

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Add new column to Job Listings in admin](https://wordpress.org/support/topic/add-new-column-to-job-listings-in-admin/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/add-new-column-to-job-listings-in-admin/#post-4834409)
 * Great thanks a lot Brandon, I ‘ll give this a go. Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Log in and log out issues](https://wordpress.org/support/topic/log-in-and-log-out-issues/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/log-in-and-log-out-issues/#post-5673827)
 * I think I have fixed it, looks like WP super cache was the problem. It left the
   below code in my wp-config, I removed it and it now works.
 * define(‘WP_CACHE’, true); //Added by WP-Cache Manager
    define( ‘WPCACHEHOME’,‘/
   home/apap6566/public_html/wp-content/plugins/wp-super-cache/’
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress generated emails not sending](https://wordpress.org/support/topic/wordpress-generated-emails-not-sending/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/wordpress-generated-emails-not-sending/#post-5522962)
 * resolved. Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress generated emails not sending](https://wordpress.org/support/topic/wordpress-generated-emails-not-sending/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/wordpress-generated-emails-not-sending/#post-5522961)
 * Thanks Ross, Ok got it working I created an email account with the cpanel then
   finally got the SMTP settings off the hosting company. The plugin did the trick.
   I’ll be changing hosting asap.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Echo the Job Category](https://wordpress.org/support/topic/echo-the-job-category/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/echo-the-job-category/#post-4812647)
 * Hi, I was using a filter to populate the field but I was having to add each category
   manually so I scrapped this. I ended up just creating a hidden field and then
   used the below Jquery to grab the category name from the side bar and populate
   the hidden field. Cheers
 *     ```
       var cat = $('.job_listing-widget.default-widget a:first').text();
   
       $("#input_1_19").attr('value',cat);
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode not working on child theme](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/#post-5427517)
 * There is a jquery problem, but that is only because the function can’t be found.
   Damn, back to the drawing board for me.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode not working on child theme](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/#post-5427516)
 * Acutally, just had a though, this may just be becuase of a Jquery conflict, I’ll
   check it out and get back to you. Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode not working on child theme](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/#post-5427499)
 * Hi, All I have in my child fucntions.php is below. I should mention that all 
   the css and js for the plugin is loading on the page but it just wont pull in
   the information with the shortcode. Very weird.
 *     ```
       <?php
   
       add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
       function enqueue_child_theme_styles() {
           wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
           wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style')  );
       }
   
       add_filter( 'template_include', 'var_template_include', 1000 );
       function var_template_include( $t ){
           $GLOBALS['current_theme_template'] = basename($t);
           return $t;
       }
   
       function get_current_template( $echo = false ) {
           if( !isset( $GLOBALS['current_theme_template'] ) )
               return false;
           if( $echo )
               echo $GLOBALS['current_theme_template'];
           else
               return $GLOBALS['current_theme_template'];
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode not working on child theme](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/shortcode-not-working-on-child-theme/#post-5427484)
 * Hi guys, I am using wp social stream. I have tried deactivating all the plugins
   but it doesn’t work unless I change back to the Twenty fourteen theme. The shortcode
   I am using is [wp_social_stream] and the theme is a custom child theme I have
   created based on twenty fourteen. I’ll ask for support from the plug in maker
   also. Any ideas?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Include elements for post/pages on home page](https://wordpress.org/support/topic/include-elements-for-postpages-on-home-page/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/include-elements-for-postpages-on-home-page/#post-5417702)
 * Thanks Tim, that’s great. I am starting with Advanced custom fields. Hopefully
   I’ll be able to sort it out. Cheers
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Echo the Job Category](https://wordpress.org/support/topic/echo-the-job-category/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/echo-the-job-category/#post-4812643)
 * Hi mopsfidel, I ended up adding a hidden field to the gravity form and I then
   auto populated it with the parameter ‘jobcategory’. I can’t remember if I created
   this parameter or if it already existed. I’ll get back to you asap. Cheers
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facetious] Remove expired posts from search](https://wordpress.org/support/topic/remove-expired-posts-from-search/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/remove-expired-posts-from-search/#post-5207948)
 * Hi any help?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [site logs users out](https://wordpress.org/support/topic/site-logs-users-out/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/site-logs-users-out/#post-5199680)
 * No worries, the site is live now and I am yet to receive a complaint so I’ll 
   just wait and see. If I start to get complaints I’ll remove the jquery.cookie.
   thanks for your help.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [site logs users out](https://wordpress.org/support/topic/site-logs-users-out/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/site-logs-users-out/#post-5199652)
 * Thanks Mike, I am not using and social login plugins. I also forgot to mention
   I am using jquery.cookie.min.js for some form data on the site, could this be
   causing me problems?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [site logs users out](https://wordpress.org/support/topic/site-logs-users-out/)
 *  Thread Starter [eckul](https://wordpress.org/support/users/eckul/)
 * (@eckul)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/site-logs-users-out/#post-5199628)
 * Thanks, I actually didn’t have either of these defined in the wp-config for some
   reason. I have now done this. Thanks so much for your help. I’ll wait a day or
   so and do some tests and then close the topic if that’s ok. thanks again.

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

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