aaronkine
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged in@apqc The process is easy.
Follow FourLeafed steps 1, 2 and 3
One step you may not have done is COPY the content-single-job_listing.php file over into a folder named ‘job_manager’ within Your Child Theme.
So the Copied file content-single-job_listing.php will be located at:
YourChildTheme/job_manager/content-single-job_listing.php <— then make the code changes to this file.Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] The widget "Add" button always openMy Theme is bangkokpress-v1-12
I have figured out a way to correct this within my Child Theme CSS.
Here’s how.
The problem code in the Parent theme CSS was:
div.custom-sidebar ul { display: block; } <— this was making the Calendar ‘Add’ dropdown appear.
So I added to my Child Theme CSS:
div.custom-sidebar ul { display: none; } <— this fixed the Calendar but caused my other sidebars to disappear, so i needed to write a more Direct CSS to make them display: blockSo i added this to Child Theme CSS:
div.custom-sidebar .bkp-frame-wrapper ul { display: block; } <— your code will look a bit different though (bkp-frame-wrapper) would be something else in your theme. If you need help send me your website URL and i can figure it out quickly.Hope this helps!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] The widget "Add" button always openI apologize for wasting your time… It was a theme conflict. I have fixed this issue by removing display: block; from my themes CSS
div.custom-sidebar ul {
margin-left: 0px;
border-color: inherit;
display: block; <— this was removed.Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged inI have Version 1.11.1
To override the Plugin template file ‘content-single-job_listing.php’ (or any other template file)
This Works —> mytheme/content-single-job_listing.php
and This Works —> mytheme/job_manager/content-single-job_listing.phpThe Problem was the correct spelling is with an ‘underscore’ not ‘dash’ mytheme/job_manager
I found the correct name in file ‘wp-job-manager-template.php’ LINE 74
$template_path = ‘job_manager’;Forum: Plugins
In reply to: [WP Job Manager] Only show Job Page if user is logged inWow thanks so much, I am learning PHP and now i finally understand how to use the ‘colon’ symbol.
One problem though is that the content-job_listing.php only seems to override if its in my Themes ‘Root’ folder. I tried putting it in mytheme/job-manager/content-job_listing.php
AND also
mytheme/job-manager/templates/content-job_listing.php.
Neither one worked. Only when i moved it to mytheme/content-job_listing.phpOne more problem is that the note repeated 16 times “Thanks for your interest in the Jobs Board. Please log in or create an account to view and apply for these jobs”
Forum: Fixing WordPress
In reply to: WordPress not showing text in chrome browser@ hufflefluffer @saladooh ….some of my sites work great with the plugin and some dont. I’m still looking/waiting for a perm fix.
Forum: Plugins
In reply to: [BuddyPress Like] Working version modifiedWhere can i get your working version of BP Like?
Forum: Fixing WordPress
In reply to: WordPress not showing text in chrome browserfound a temp fix here-> https://support.organizedthemes.com/chrome-font-bug/
Forum: Plugins
In reply to: [WooCommerce] Checkout broken after 2.1.3 updateI had to revert back to version 2.1.2 which works fine. I hope this forum is updated with a Fix soon.
Forum: Plugins
In reply to: [WooCommerce] Checkout broken after 2.1.3 updateI have the same issue with Woo 2.1.3 update. The bottom of the checkout page never loads… I see it loading and the bottom section looks fadded out and i cannot click the “place order button”.
go here… choose a ticket then proceed to checkout page.
https://nprnstaging.wpengine.com/pfe/Forum: Plugins
In reply to: [WP Job Manager] Conflict with (Buddypress Like 0.1.7)the staging site which has the newest version of BP Like 0.17 is here. This page does not load the jobs. (there is actually only 1 sample job on this staging site)
https://nprnstaging.wpengine.com/jobs/the live site which has the Older version of BP Like 0.16 is here. works fine.
https://nprnsb.org/jobs/Forum: Plugins
In reply to: [BuddyPress Like] Known issues, and have you found any issues?Conflict with plugin wp-job-manager. When i turn on BP Like 0.1.7 The wp-job-manager Plugin – The Job page does not load the job listings. BP Like 0.1.6 works OK with wp-job-manager.
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Add new buttoni JUST figured this out late last night.
Here’s what worked:
________________
added this to my header.php…function ElementContent(id,content) { document.getElementById(id).value = content; }
________________
Added this to html…<a href="#ella" id="ask_ella" title="Ask Ella a question" onclick="ElementContent('whats-new','Ask @Ella a question: ')" />Have a question? Ask Ella!</a>
Forum: Plugins
In reply to: [BuddyDrive] Buttons not workingok i found the plugin conflict. WP User Frontend. I just upgraded to the Premium (Pro) version of WP Frontend and the problem is still there.
…BUT there is an option that i turned off and now BuddyDrive works…
in the WPUF Settings I turned Off this setting “Load Script- Load scripts/styles in all pages”Now i’m curious what scripts are the conflict?
I also posted this issue at WP User Frontend Support. I’ll post here if there is a solution/answer.
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Add new button