Giri
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
You are welcome Clem.
Let us know if you need anything.
Thanks
Hello tim, Just follow these steps.
WP Admin -> Media -> Add New -> Select header image file > Edit uploaded image -> You can see the “File URL” in the right side.
Copy that and then paste that inside src tag.
That should work.
Let me know if it doesn’t.
Thanks
Hey Clem, Just got back to my work.
I have just fixed your problem. Let me know if you still have problem
Thanks
P.S:
I use my personal email ID for work too and your issue seemed like a high priority issue since you had fatal error. Thats why I helped you last night. Hope everything’s fine now.
Clem, I have fixed that fatal error.
We are working from different timezones and its very late here. I’ll fix the group problem tomorrow. Please provide direct link to test the problem in the meantime.
Thanks
Hey i’m about to go to bed. Just found your mail. Give me few minutes. I’ll correct it.
Hello Tim,
you can upload the image anywhere you want. Just replace the url in the src parameter.
You are welcome..
Try this code
add_filter( 'template_include', 'custom_geodir_event_template_loader',0); function custom_geodir_event_template_loader($template) { if(geodir_get_current_posttype() == 'gd_event'){ remove_filter('geodir_detail_page_sidebar_content', 'geodir_event_detail_page_sitebar_content', 2); add_action('geodir_after_main_content', 'geodir_event_show_shedule_date'); } }
I’m not sure what do you mean. Could you post your site link or screenshot. So i can understand?
You are welcome Clem 🙂
This reply has been marked as private.Hi Tim, We have a hook in DS to add content before header top. Do you wanna place it above header top section?
Hey Clem,
Its working now
I have installed code snippets plugin and added some code over there. Feel free to move that code to child theme if you want.
yoursite.com/wp-admin/admin.php?page=snippets
function gdmapapi_dequeue_script() { if (bp_is_profile_component() && bp_is_current_action( 'edit' )) { wp_dequeue_script( 'geodirectory-googlemap-script' ); } } add_action( 'wp_enqueue_scripts', 'gdmapapi_dequeue_script');
Place this code in your child theme functions.php file or using code snippets plugin.
add_filter( 'template_include', 'custom_geodir_event_template_loader',0); function custom_geodir_event_template_loader($template) { if(geodir_get_current_posttype() == 'gd_event'){ remove_filter('geodir_detail_page_sidebar_content', 'geodir_event_detail_page_sitebar_content', 2); add_action('geodir_before_show_post', 'geodir_event_show_shedule_date'); } }
-
AuthorPosts