eckul
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Add new column to Job Listings in adminGreat thanks a lot Brandon, I ‘ll give this a go. Cheers
Forum: Fixing WordPress
In reply to: Log in and log out issuesI 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
In reply to: WordPress generated emails not sendingresolved. Cheers
Forum: Fixing WordPress
In reply to: WordPress generated emails not sendingThanks 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
In reply to: [WP Job Manager] Echo the Job CategoryHi, 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
In reply to: Shortcode not working on child themeThere 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
In reply to: Shortcode not working on child themeAcutally, 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
In reply to: Shortcode not working on child themeHi, 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
In reply to: Shortcode not working on child themeHi 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
In reply to: Include elements for post/pages on home pageThanks Tim, that’s great. I am starting with Advanced custom fields. Hopefully I’ll be able to sort it out. Cheers
Forum: Plugins
In reply to: [WP Job Manager] Echo the Job CategoryHi 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
In reply to: [Facetious] Remove expired posts from searchHi any help?
Forum: Everything else WordPress
In reply to: site logs users outNo 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
In reply to: site logs users outThanks 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
In reply to: site logs users outThanks, 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.