Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Hi Javier,
Do you want it removed for all or just for some?
Stiofan
Hi Katie,
It is because of the video settings on Vimeo, it likely has embedding turned off.
Stiofan
This reply has been marked as private.Permalinks can be funny as many plugins might try to change them at different times and it can result in them breaking, saving them the normal WP way usually resolves it in 99% of cases.
When i do updates on my sites i then clear all caches and browse most page types, its part of my update routine.Thanks,
Stiofan
Seems to work for me also, there was fix in latest GD release maybe that resolved it?
Stiofan
Hi Vlad,
Can you please provide ftp details.
Do you have checkboxes next to your IPN’s https://www.paypal.com/cgi-bin/webscr?cmd=_display-ipns-history can u check then and resend them?Stiofan
October 14, 2017 at 10:38 am in reply to: main menu " add listing" link extends down the page #400641You are welcome! 🙂
🙂
Please send them.
Stiofan
Yes please use the code snippets plugin and use the following snippet.
add_filter('geodir_custom_field_output_text_key_get_directions','_my_change_map_link',11,3); function _my_change_map_link($html,$location,$cf){ $html = str_replace("maps.apple.com","maps.google.com",$html); return $html; }Thanks,
Stiofan
This should do it:
add_filter( 'geodir_custom_field_website_name', 'geodir_change_website_field_display_name', 10, 3 ); function geodir_change_website_field_display_name($name,$website,$post_id){ if($name=='Facebook' || $name=='Twitter' || $name=='Instagram' || $name=='Website'){return $website ; } else{return $name;} }Thanks,
Stiofan
You can try filtering the ‘geodir_detail_page_tab_list_extend’ to filter the array kets, i think that is what is used. I have not tested this though.
Thanks,
Stiofan
Can you link me to the broken pages?
Stiofan
October 13, 2017 at 5:55 pm in reply to: main menu " add listing" link extends down the page #400531I got in! 🙂
I added the below CSS to give u a scroll in the menu (below for future reference):
#primary-nav .menu-gd-listings .sub-menu, #primary-nav .menu-gd-add-listing .sub-menu{ max-height: 400px; overflow-y: scroll; }Thanks,
Stiofan
Yeah, apple taking over from IE in the not sticking to converntions…
Looks like you will need a JS solution, add this to GD>Design>Scripts>footer script
<script> jQuery(function() { jQuery("#gd_list_view option[value='3']").remove(); jQuery("#gd_list_view option[value='4']").remove(); jQuery("#gd_list_view option[value='5']").remove(); }); </script>Stiofan
-
AuthorPosts