Julian Screawn
Forum Replies Created
-
AuthorPosts
-
Sorry, there was a #geodir_post_tags_row {display: none;} in the css file. Client had requested tags to be hidden previously and I forgot.
Okay, thanks, that would be a nice feature.
Thanks, I was looking in the wrong po file, the location one. Resolved.
Thanks, I set the list_sort=”random” for the [gd_popular_post_view] and it works great. Now I would like to have this same feature on the listing result page.
For example, when I click on a category say beverages, for a particular location, and if there are two featured results that appear at the top of all the listings for beverages for that location, they(featured items) seem to be sorted by latest featured listing added. Is it possible to just have the featured items list randomly not by latest at the top of all the listings results ?
That did it thanks.
This reply has been marked as private.Thanks, Is there a hook I can use to disable ?
Hi Kiran/Alex, is it possible to filter for the output location … see below:
// Filter geodir_food_locality_rank field content. function _gd_custom_customize_food_locality_rank( $html, $location, $cf, $p = 0 ) { if ( ! empty( $html ) && ! empty( $cf['htmlvar_name'] ) && $cf['htmlvar_name'] == 'geodir_food_locality_rank' ) { --- IF LOCATION IS MAP BUBBLE THEN --- $html = str_replace( ' OR ', ' <strong>OR</strong> ', $html ); } return $html; } add_filter( 'geodir_custom_field_output_select', '_gd_custom_customize_food_locality_rank', 100, 3 );
November 27, 2017 at 10:41 pm in reply to: Custom Post Type Listing not displaying on main map. #407047Hi Alex, thanks for the help. I added a new post type called gd_community, and added a test listing. It did show up on the homepage map. Perhaps the reason event listings do not show on the homepage map is related to the fact that gd_event is reserved.
Hi Alex, the User would be adding the listing from the front-end, not within the editor.
November 27, 2017 at 5:41 pm in reply to: Custom Post Type Listing not displaying on main map. #407001This reply has been marked as private.Thanks Kiran the filter works fine, where the custom field is output, ie. Listing or Detail page. However it does not work on the “Add Food Item Lising”, where the user inputs a new Food Item. I checked by having the filter
echo "hello"; exit;
, it will not exit only on the Add Listing page.
Okay thanks. I was wondering after the user submits an “Add Listing” form from one of the custom post types, say gd_food is there a hook I can use to process the select field results ?
Hi Kiran, that hook is usefull, however, I would like to have the map area only full width, and the before_widget_area hook, places me inside the wrap area (see Hook result below), which has a max width of 1280px. I would like to hook in just before search-bar-widget area so the area is not bounded by the wrap (see Hook here below). The genesis after header hook actually places me below the search-bar widget.
<div class="geo1280-placeholder"></div> <div style="padding-top:50px;">Hook here.</div> <div class="search-bar widget-area"> <div class="wrap"><div class="container-fluid"> <div class="row"><div class="col-sm-9">Hook Result</div></div></div> <div id="catcher_geodir_map_v3_home_map_4"></div>
Thanks, Julian
Hi Kiran, I would like to have control over the Search bar widget before and after entries, essentially I would like to replace the class with my own bootsrap classes.
example:
function geo1280_search_bar() { if ( is_active_sidebar( 'search-bar' ) ) { genesis_widget_area( 'search-bar', array( 'before' => '<div class="row"><div class="col-sm-6">', 'after' => '</div></div>', ) ); } else { echo '<div class="geo1280-placeholder"></div>'; } }
Thanks, Julian
-
AuthorPosts