michaelcallaway
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ZipRecruiter code not working after upgrading to 5.4.2I had emailed them as well. A few minutes ago they got back to me with this:
Our search API recently went down yesterday and then again today. This is ongoing from the last issue and is related specifically to the ZipRecruiter API, not WordPress. We are actively working on this with our engineers.
Thanks for your help, marking this as resolved.
I wouldn’t be surprised. To put it nicely, almost every problem I had went away when I switched hosts and my site has never been faster.
I don’t know if this will help but I switched my hosting from GoDaddy to SiteGround and my problems went away. I haven’t had any issues with the wrong image being used or items being posted twice.
Can you provide a screenshot? Most of what I’ve done is remove the logo, move the tagline of, and adjust a few other things. My guess is it’s padding and CSS, but I won’t know for sure before I see it.
Removing the logo moved the job title over and kept everything in line.
After playing around a little bit I thought I’d leave this in case anyone could use it. I decided to remove the box around the “save this job” area but leave the box around the company info section. I wanted it to stand out a little so I adjusted the box-shadow color to match my page.
.single_job_listing .company {
box-shadow: 0 10px 10px #1A5A89
}
It really stands out now. Thanks again for everyone’s help!
That did it, thanks! I also used this to remove the box shadow around “save this job” and move them closer.
.single_job_listing .wp-job-manager-bookmarks-form {
border: 0px;
box-shadow: 0 0px 0px;
margin: 0;
padding: 0;
}You can see box by clicking on any of the jobs posted on https://www.polk.work.
- This reply was modified 5 years, 5 months ago by michaelcallaway.
Thanks for the tip kibus90! Unfortunately that removes the entire section. I’ve already removed the company logo and adjusted the padding. What I’m trying to do now is remove the grey box containing the company name and website (the same box around the bookmark this job link). I still need the company name, website, and tagline area to be displayed.
Forum: Plugins
In reply to: [WP Job Manager] Removed company logo and a blank space is leftYes. This is what I put in X Theme’s additional CSS:
/*Hide company logo*/
.company_logo
{ display: none;}
/*Remove space when company logo is hidden from job listing page*/
.rp4wp-related-job_listing>ul li.job_listing a div.position, .rp4wp-related-job_listing>ul li.no_job_listings_found a div.position, ul.job_listings li.job_listing a div.position, ul.job_listings li.no_job_listings_found a div.position{
padding: 0 !important;
}/*Remove space when company logo is hidden from job details page*/
.single_job_listing .company img {display: none;}
.single_job_listing .company .name {
margin: 0;
padding: 0;
}.single_job_listing .company .tagline {
margin: 0;
padding: 0;
}Forum: Plugins
In reply to: [WP Job Manager] Removed company logo and a blank space is leftWorked like a charm! For anyone else that might be interested in doing this, I added the following to move the company tagline over to match:
.single_job_listing .company .tagline {
margin: 0;
padding: 0;
}Marking this as resolved, thank you for the help!
I did delete them, several customers were complaining. I also had several posts that were sharing the wrong image to Facebook so I uninstalled Jetpack again and decided to stick with what was working. I’m marking this as resolved.
Done!
Gotcha. Again, thanks for your help! I think my next step will be ditching WP Super Cache for WP Rocket to see how much more that can help. Have a good one!
In the scripts to Async section what all do I include? Everything that is being shown in GTmetrix or only part of it?
For example, this:
Or just part of it?
I’ll give it a shot. Thanks for your help.