Marius
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Job Board] Search by keyword results in No jobs found.i have same problem, i get results only from category, no results from job type or location.
what can i do?Forum: Plugins
In reply to: [Simple Job Board] exclude locations hookHy thanks again for your help.
this is the right one fore me:
function exclude_jobs_locations_uk($args) { $exclude_tree = "40,55,60"; $args["exclude_tree"] = $exclude_tree; $exclude = "58"; $args["exclude"] = $exclude; return $args; } function sjb_is_page() { if ( is_page(2093)) add_filter('sjb_job_location_filter_args', 'exclude_jobs_locations_uk'); } add_action('get_header', 'sjb_is_page');
Now works great! ??
Forum: Plugins
In reply to: [Simple Job Board] exclude locations hookthank you very much for your time, but still not working.
is not mandatory for me to be in function.php
i can put the code inside your template file (job-filters.php) somewhere just to work ??Forum: Plugins
In reply to: [Simple Job Board] exclude locations hookif i use the if statment with !:
function exclude_jobs_locations_uk($args){ if( ! is_page( 2094 ) ) { $exclude_tree = "40,55,60"; $args["exclude_tree"] = $exclude_tree; $exclude = "58"; $args["exclude"] = $exclude; } return $args; } add_filter('sjb_job_location_filter_args','exclude_jobs_locations_uk');
is working on all pages.
if i use the if statment without ! is not working on all pages.
Forum: Plugins
In reply to: [Simple Job Board] exclude locations hookin function.php (in child theme),
i have try in theme function.php=the same.
i have try as “plugin” = the same.i have no ideea what to do to display this funtion only to a single page or page template.
thanks
Forum: Plugins
In reply to: [Simple Job Board] exclude locations hooknow, just not working, no errors. ??
but the functions works fine without if statement.
Forum: Plugins
In reply to: [Simple Job Board] exclude locations hookhy,
if i use like this, locations dropdown is replaced with wordpress categories dropdown. ??
on all pages.Forum: Plugins
In reply to: [Simple Job Board] multiple index jobs pages?ok, i uderstand, but allready past 2 days and they not give any solution.
anyway, can i hide a location from dropdown just like i hide a category from blog?
like:li.cat-item.cat-item-13 {
display: none;
}i have try with jobs_category not working.
maybe you can tell me what is the right selector.
thanks.
Forum: Plugins
In reply to: [Simple Job Board] multiple index jobs pages?hy, i don’t understand approach from PressTigersby email, there is no project here,
i just need a simple task from you:i just want to hide some location on a specific page:
for example on page-id-10 hide parent location “xyz” (also sub locations from parent).and if you don’t wnat to help me for community i pay you for that. this is all.
thanks
Forum: Plugins
In reply to: [Simple Job Board] multiple index jobs pages?can you help me with that? (to pay you for that…) thanks
allready read the faq, but not working, myabe you have an idea ??
thanks
Forum: Plugins
In reply to: [Simple Job Board] multiple index jobs pages?ok, that works to view the jobs, but the selector show all categories, i want selector to show only category (ansd sub category) from what i specified, like this:
[jobpost category=”category02″]
andselector to show only category02 and sub categories, not all.
Forum: Plugins
In reply to: [Simple Job Board] rename "category" and "job type"ok, thank you
same issue…
Forum: Plugins
In reply to: [Sharing buttons shortcode for Jetpack] duplicate row of share buttonsthis works in my case in functions.php from child:
add_action( 'init', 'custom_init', 11 ); function custom_init(){ // if sharing_display() function does not exist, return if( ! function_exists( 'sharing_display' ) ) return; // remove the callback sharing_display() for the 'the_content' filter. remove_filter( 'the_content', 'sharing_display', 19 ); }
source:
https://genesissnippets.com/reposition-jetpack-sharing-links-in-genesis/