Why Aren’t My Styles Applying?

If you have created a child theme and have started adding custom styles to your website and they seem to not be applying, it is likely because your CSS selectors are not specific enough to override the existing rules.  A good way to do this is to prepend the body […]

Order Regions Alphabetically

Add the follow code to your child theme’s functions.php file: If you have existing code in your functions.php be sure to omit the first line (<?php) when adding the code to your file.

Can I Use a Custom Icon Font for the Map Markers

This is possible with some custom CSS. Load your custom font icon into WordPress. Override the default ion classes with your custom font content. Since the markers simply load the class name from the customizer in to a <i></i> tag to output it. So <i class=”ion-icon”></i> for example. In your […]

Why Does the Category Field Disappear

When you search for a category from the homepage, or click directly to a category archive from your navigation menu, you may notice that the category dropdown no longer appears. This is intentional. This page is meant to act as a permanent archive for this category, therefore having the ability […]

Why is the search button and categories drop-down stretched full-width

Is your search button and categories drop-down stretched full-width on your job searching page? This is because you have the option enabled inside of Job Listings > Settings > “Multi-select Categories – Enable category multi-select by default” If you disable this option you will see that your search button and drop-down for categories will now look like our […]

Add a Button to the Single Listing Hero Actions

To add a custom button in the same place as the “Submit a Review” and booking buttons, you can add the following code to your child theme’s functions.php file: If you have existing code in your functions.php be sure to omit the first line (<?php) when adding the code to […]