Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
it seems to be related to some wp stats plugin, i would just hide it
#wpstats{display:none;}Stiofan
It seem to be working fine for me, can you explain exactly what you are doing and entering and the URL of the page you end up on please.
Thanks,
Stiofan
Thanks for the info i have added the following snippet to your site under “Code Snippets”
add_filter('geodir_custom_field_output_text','ggp_geodir_classification',15,3); function ggp_geodir_classification( $html,$location,$cf){ global $post; if($cf['name']!='geodir_classification'){return $html;} // if not the field we want then return standard $classification = $post->{$cf['htmlvar_name']}; if($classification =='5') $html = str_replace('5','<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>',$html); elseif($classification =='4') $html = str_replace('4','<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>',$html); elseif($classification =='3') $html = str_replace('3','<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>',$html); elseif($classification =='2') $html = str_replace('2','<i class="fa fa-star"></i><i class="fa fa-star">',$html); else $html = str_replace('1','<i class="fa fa-star"></i>',$html); return $html; }Thanks,
Stiofan
Hello,
Can you please provide FTP and i will debug this.
Thanks,
Stiofan
You can filter the where clause but the problem is it filters it for all, you would have to do some further checks for the page and then further checks for what X number of times it has been called to filter in different ways. In short there is no easy way to do it. You can filter by Featured listings which you could assign to the top price package though?
Stiofan
localhost is not counted.
Thanks,
Stiofan
Each field type requires a different hook
add_filter(‘geodir_custom_field_output_text’,’my_enable_shortcodes_in_cf’,15,3);
add_filter(‘geodir_custom_field_output_textarea’,’my_enable_shortcodes_in_cf’,15,3);So this should cover text AND textarea fields
function my_enable_shortcodes_in_cf($html,$location,$cf){ // this line will enable it for all text inputs $html = do_shortcode( $html ); return $html; } add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3); add_filter('geodir_custom_field_output_textarea','my_enable_shortcodes_in_cf',15,3);Thanks,
Stiofan
It should work there, if you feel its not then please provide FTP and wp-admin details and we will investigate.
Thanks,
Stiofan
It’s out! 🙂
Stiofan
How are u adding the logo? It looks like you are missing a closing ”
<i class="fa fa-twitter >Stiofan
Do you have multiple cities with the same name? If so you need to merge them.
If you select the search suggestion it limits the listings to that area only, if you dont then it will show all listings within the range ordered by distance to the center of the city.
You can disable the ajax near search under advanced search options if u want.Thanks,
Stiofan
SSL: Expires On Sunday, May 21, 2017 at 12:59:59 AM
If you had a free SSL sometimes they only issue them for a few months instead of a year.
Stiofan
Checkout the GD Import/export page to see what is available to export.
Stiofan
Hi Bruce,
I have removed the default full screen button and the change will be in the next release (hopefully today)
Thanks,
Stiofan
Hi Ronny,
This has been implemented and will be in the next release of payments manager.
Thanks,
Stiofan
-
AuthorPosts