Got a link? It will be CSS related.
Hi Mike
Here is the link of my test site
http://socialpk.webuda.com/jobs/
you can see dots in the filter section and in the widget on right hand side.
How can I remove these dots?
Thanks
It’s cause of a background image set in your css. You have this set for your widgets:
.widget-container li {
background: url(images/sidebar-bullet.png) no-repeat left 8px;
padding: 0 0 5px 12px;
line-height: 18px;
overflow: hidden;
}
You must have something similar set for the filter section.
This CSS should do it.
.job_filters .job_types li, ul.job_listings li.job_listing {
list-style:none !important;
}
Thanks Mike Jolley and Marc2412 for the help. It worked.. 🙂
One last question. How can I enable the numbered pagination for this plugin?
I’m using this shortcode but it’s not working
[jobs show_pagination=”true”]
Please have a look: http://socialpk.webuda.com/jobs/
It displays “Show more listing” instead of page numbers.
Thanks in advance for your time and help.
Like this?
I used [jobs show_pagination=”true”] aswell this should work.
Go to Job listings -> settings -> pages and make you sure Job Listings Page has your page where the jobs are being shown.
Yes Job listing page is selected on the path which you mentioned. I upgraded this plugin few days before from old version to current version. Is that the reason? Should I delete the plugin and reinstall it?
Did you try it with a different theme to see if it works then?
Check the theme – I know when jobify uses a custom post type archive, changes to the shortcode args have no effect.
I uninstalled the plugin and deleted the jobs and reinstall the plugin and it works fine. Numbered pagination is working fine.
Thanks Mike & Marc for the help