Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Yes, you can try any other website and it will work but not our site, they must be blocking it.
Stiofan
The code i gave was for specifically hiding a tab not an individual item.
this is the one for individuals:
“geodir_custom_field_output_{$filed_type}”add_filter("geodir_custom_field_output_textarea",'_my_hide_field_from_admin',10,3); add_filter("geodir_custom_field_output_datepicker",'_my_hide_field_from_admin',10,3); add_filter("geodir_custom_field_output_url",'_my_hide_field_from_admin',10,3); function _my_hide_field_from_admin($html,$fields_location,$type){ if(isset($type['is_admin']) && $type['is_admin'] && !is_super_admin()){ $html = ''; } return $html; }Stiofan
November 29, 2016 at 5:19 pm in reply to: Licence not activated! Please renew or seek support #314526Hi Gareth,
1and1 hosting in Germany has a problem connecting to our servers to validate the licence, you can try contacting their support but a few users have and they have been useless, i have tried everything in my power to resolve it but there is no way for me to communicate with 1and1 Germany support.
You can use this plugin to do updates if you can’t get 1and1 to solve this: https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/
Thanks,
Stiofan
Thanks for the info, you had filtered the address in your child theme, i made it translatable again.
Thanks,
Stiofan
Hi Patrick,
OK when adding a new field, you can make it “admin use only” this will mean only admins will be able to see the field on the add listing form (if you want that functionality)
Then you can use this filter for the tabs
geodir_tab_show_{$html_var}
so if the tab is called geodir_facebookwe would add:
add_filter('geodir_detail_page_tab_is_display','_my_hide_tabs_to_non_admin',10,2); function _my_hide_tabs_to_non_admin($val,$htmlvar_name){ //echo '###'.$htmlvar_name; // uncomment to get var names if($htmlvar_name=='geodir_facebook' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_someother' && !is_super_admin()){$val = false;} return $val; }Thanks,
Stiofan
November 29, 2016 at 12:21 pm in reply to: How to add custom class on add-listing page fields #314287if you can provide wp-admin i will take a quick look.
Stiofan
You are best removing the events calendar ver of google maps, we add several other parameters to our api call that are not added by the events calendar.
Thanks,
Stiofan
Hello, can you please double check the details, i get “Authentication failed” when i try them.
Thanks,
Stiofan
🙂
Please check now.
Stiofan
It seems to work for me now, what browser are u using, is it upto date?
Stiofan
Have you checked out our latest beta invoiceing and payments manager which account for tax?
You should just search the code for that text and work your way back until you find the checks.
Stiofan
That has been fixed and will be in the next release.
Stiofan
Hi Mark,
Thanks for the info, a hosting package like that is maybe adequate to run a small static blog but it lacks the processing power needed to run a web application type site.
You should have a read of this post (yes, its satirical) https://wpgeodirectory.com/making-your-wordpress-site-slow/
We recommend a minimum of a VPS type hosting.
Thanks,
Stiofan
this is a second test reply
-
AuthorPosts