Kor
Forum Replies Created
-
AuthorPosts
-
Hi there,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Thanks!
Hi sacha,
You can achieve this by using the custom PHP code below. Kindly insert this into the “Code Snippet” plugin.
/* START */ // GeoDirectory: Display event schedule as a tab on event detail page. function gd_show_event_schedule_as_tab( $template ) { if ( has_filter( 'geodir_detail_page_sidebar_content', 'geodir_event_detail_page_sitebar_content' ) ) { remove_filter( 'geodir_detail_page_sidebar_content', 'geodir_event_detail_page_sitebar_content', 2 ); add_filter( 'geodir_detail_page_tab_list_extend', 'gd_detail_page_tab_event_schedule', 10, 1 ); add_action( 'geodir_after_tab_content', 'gd_detail_page_tab_content_event_schedule', 10, 1 ); } return $template; } add_filter( 'template_include', 'gd_show_event_schedule_as_tab', 10 ); function gd_detail_page_tab_event_schedule( $tab_array ) { if ( 'gd_event' == get_post_type() ) { $tab_array['event_schedule'] = array( 'heading_text' => __( 'Event Schedule', 'geodirevents' ), 'is_active_tab' => false, 'is_display' => apply_filters( 'geodir_detail_page_tab_is_display', true, 'event_schedule' ), 'tab_content' => '' ); } return $tab_array ; } function gd_detail_page_tab_content_event_schedule( $tab ) { if ( $tab == 'event_schedule' ) { geodir_event_show_shedule_date(); } }Hi Jeff,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Hi Steve,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Thanks!
March 16, 2017 at 6:12 am in reply to: Add Front End Descriptions for "Business Owner/Associate" and "[CPT] Title" #367631Hi there,
Let me try to answer your questions accordingly.
#1 To change business owner text, you will need to edit the text string in the translation file of the claim listing add-on:
http://docs.wpgeodirectory.com/translate-core/
https://wpgeodirectory.com/docs/translating-addons/
#2 Not sure what you mean by this, have you tried configuring the names using the “Custom Post type” addon
Thanks
Hi Tim,
Could you please share the URL of the site in question so that we could take a better look at it? Also, it would be better if you could provide us a WP temp admin access so that we could test some custom CSS directly.
Thanks!
Hi Gautam,
Please refer to this thread https://wpgeodirectory.com/support/topic/copyright-text-supreme-directory/#post-300266
Thanks!
You’re Welcome. Please let us know if you need anything else.
Hi Dave,
Could you please make sure that you’ve setup the Google MAP API key correctly as mentioned here in this section of the documentation? https://wpgeodirectory.com/docs/add-google-api-key/
Thanks!
Hi there,
Please refer to this post for more info https://wpgeodirectory.com/support/topic/backend-when-crazy-do-i-need-an-updated-version/#post-367522
Thanks!
Hi there,
Try using the custom CSS code below and see if it’s what you’re looking for. Insert into GD > Design > Scripts > Custom Style CSS
#geodir-wrapper { width: 1170px !important; margin-left: auto !important; margin-right: auto !important; padding: 0 30px;!important; }Thanks!
Hi Fabio,
Sorry, I’mn not sure if I’m getting this. Do you mean you can’t select multiple categories as shown in this screenshot? http://prntscr.com/ekaxn0 . If not, could you elaborate a little bit more? Perhaps some screenshots?
Thanks!
Hi Matt,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Hi there,
Not sure why it worked for you previously. But if you check the console, you should get an error saying that you have “Multiple Google Map” on your Website. Are you able to get that console error when you switched it back to “Google Map” in GD settings?
Thanks!
Hi Nicole,
You’re Welcome. Please let us know if you need anything else.
Thanks!
-
AuthorPosts