pawprintexample
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Editing wp-job-manager-template.phpIm so sorry for the many messages i feel stupid, i think the first method is just for the language…
Forum: Plugins
In reply to: [WP Job Manager] Editing wp-job-manager-template.phpOh dear, looks as if I’ve gotten myself in a pickle!
I have the Apply button code in two different templates and the filter is only applying itself to one and wiping out the other..
I am by no means a master coder but feel i can work my way around a piece of code pretty well..
ive never heard of “Using a localisation file and translating the string”, i’m going to look into that for sure – just so i’m clear, wp-job-manager-template.php located in the root plugin folder cannot be written over by copying it to my theme folder?
This is how I edited the subject in the first place :/Forum: Plugins
In reply to: [WP Job Manager] Editing wp-job-manager-template.phpI’m finding that using the filter doesnt allow you to put in get_post_meta for my custom JOB ID filter or call the Job Title
I’m looking at the first method but it’s all greek… hmmm
Forum: Plugins
In reply to: [WP Job Manager] Editing wp-job-manager-template.phpYou sir, are my Hero!
Thank you so much!
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingI can assure you, you do not. Try removing the plugin and use linkedins apply via linkedin button generator
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingYes haha
The code you entered is the javascript you get from linkedin developers site
If the script works you dont need the plugin. The plugin just allows you to use shortcode in your posts.
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingAnd youre using shortcode? Or placing that script in your template file?
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingJust to your site.
I added the Permalinks to mine so I can get a few more Keywords into Google SEOso if your site was google, use the following:
https://google.com,https://google.com,https://www.google.com,https://www.google.com
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingHave you gone into the LinkedIn API section and added your domain to the application?
https://www.linkedin.com/secure/developer
You just need the main URL to your page, nothing special.
I played it safe though and used the following under OAuth 2.0 Redirect URLs:
Obvs replace the DOMAIN and PERMALINK with your own, if you don’t have a permalink on your main URL, then leave the last two domains off the list.
I also addedJavaScript API Domains: https://www.DOMAIN.com/PERMALINK
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingOh darn, i dont think you can message… ummm – i’ll do my best to help here ??
Forum: Plugins
In reply to: [Apply with LinkedIn buttons] Apply With LinkedIn Button Not DisplayingWell you’re talking about two different things –
If you want to use LinkedIn Apply Buttons in your template, you must use their code – which is pretty different
To use the shortcode for this plugin, put it in your post code
You can try
<?php echo do_shortcode("[shortcode]"); ?>
but it might not work.
You just need to put the API key in the PlugIn Settings in your admin bar, and set your info[applywithlinkedin jobtitle="JOB TITLE HERE" companyname="YOUR COMPANY NAME" email="EMAIL ADDRESS HERE" logo="https://yoursite.com/yourlogo.png" themecolor="#ff0000" coverletter="required" size="small"]
I prefer the code honestly…
Feel free to message me for help – I’m happy to assist ??Forum: Plugins
In reply to: [WP Job Manager] Getting Email AddressOh my gosh Thank you! !!!!!!
Forum: Plugins
In reply to: [WP Job Manager] editing apply now buttonAmazing, thank you so much, I really appreciate it!!
It’s working perfectly!!
For those that wish to do as I did<?php if ( $apply = get_the_job_application_method() ) : wp_enqueue_script( 'wp-job-manager-job-application' ); ?> <br/> <div class="application"> <?php if ( $apply->type == 'email' ) : ?> <a href="mailto:<?php echo $apply->email . '?subject=' . rawurlencode( $apply->subject ); ?> &body=Thank you!" class="jbapplybutton" target="_blank">Apply via Email!</a> <?php endif; ?> <div class="application_details"> <?php if ( $apply->type == 'email' ) : ?> <a href="mailto:<?php echo $apply->email . '?subject=' . rawurlencode( $apply->subject ); ?>" class="jbapplybutton" target="_blank">Apply via Email!</a> <?php endif; ?> </div> </div> <br/> <?php endif; ?>
Forum: Plugins
In reply to: [WP Job Manager] editing apply now button<?php if ( $apply = get_the_job_application_method() ) : wp_enqueue_script( 'wp-job-manager-job-application' ); ?> <br/> <div class="application"> <?php if ( $apply->type == 'email' ) : ?> <a href="mailto:<?php echo $apply->email . '?subject=' . rawurlencode( $apply->subject ); ?>" class="jbapplybutton" target="_blank">Apply via Email!</a> <?php endif; ?> <div class="application_details"> <?php if ( $apply->type == 'email' ) : ?> <a href="mailto:<?php echo $apply->email . '?subject=' . rawurlencode( $apply->subject ); ?>" class="jbapplybutton" target="_blank">Apply via Email!</a> <?php endif; ?> </div> </div> <br/> <?php endif; ?>
Forum: Plugins
In reply to: [WP Job Manager] editing apply now buttonThank you SO MUCH for your help!!
I got the button to do what I wanted, I got the email to pop up, I have filled in the Subject fields and text –The body doesnt work though… Still stuck on the body…. :/