FincelDesign
Forum Replies Created
-
Here’s the exact shortcode on that page:
[rem_list_properties posts=”9″ order=”ASC” orderby=”date” style=”3″ class=”col-sm-4″ meta=”property_status|Available”][/rem_list_properties]
So that’s exactly what we have on this page and it’s showing ALL properties still.
Hello,
I see the plugin update has come out. Can you tell me the following:
1. On the [rem_list_properties] shortcode, how do we limit to only “available” properties?
2. Is there a place to view what is different with this update?
Great that filter works. Now what about the [rem_list_properties] shortcode. How do we just show “available” on this shortcode?
Also, if we’re trying to create a function to select only available properties, what would the taxonomy be to filter that? Our current function query is currently below which pulls all properties.
$args = array(
‘post_type’ => ‘rem_property’,
‘posts_per_page’ => -1,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘property_status’,
‘field’ => ‘name’,
‘terms’ => ‘Available’
)
)
);Need to add the “Available” filter here as well. But it’s still returning all properties.
Forum: Plugins
In reply to: [W3 Total Cache] Disable CDN for SSL pages not working – Avada ThemeWell, I see what you mean, I just don’t have a way to do this through W3TC I don’t think. Has anyone else experienced this using Avada theme? Could it be fixed by changing or patching the theme file that is calling this css file?
- This reply was modified 8 years, 2 months ago by FincelDesign.