Giri
Forum Replies Created
-
AuthorPosts
-
Thanks for letting us know.
Hi forbes, Event date is different from normal listings time field.
Thats why you are having issues.
Kiran is the one who has much knowledge about event addon. I’ll ask him tomorrow whether we can move the date to its own tab. If thats not possible, then i’ll help you with moving the event date to your preferred position.
Thanks for your patience.
Hi there,
I have just added a hook for extra links. This is the hook I added.
<?php do_action('sd_my_account_logged_in_extras'); ?>
This hook will be available in next version. But you can apply the patch by yourself.
https://github.com/mistergiri/supreme-directory/commit/c1e2db5bc6b494a5f5d9c6a5294ab8a6957750cc
Once thats done, next step add the follow code in your code snippets.
add_action('sd_my_account_logged_in_extras', 'sd_my_account_logged_in_extras'); function sd_my_account_logged_in_extras() { ?> <ul class="sd-my-account-dd-menu-group sd-my-account-dd-menu-bp-group"> <li class="sd-my-account-dd-menu-link"> <a href="#"> <i class="fa fa-user"></i> Link1 </a> </li> <li class="sd-my-account-dd-menu-link"> <a href="#"> <i class="fa fa-user"></i> Link2 </a> </li> </ul> <?php }
You are welcome.
Try this code.
.uwp-register-now { clear: both; }
For registration redirect, I have just added a filter.
You need to replace this line
wp_redirect(home_url('/'));
with
$regsiter_redirect = apply_filters('uwp_register_redirect_url', home_url('/')); wp_redirect($regsiter_redirect);
See here
Once thats done, add the following snippet in your code snippets
add_filter('uwp_register_redirect_url', 'modify_uwp_register_redirect_url'); function modify_uwp_register_redirect_url() { return get_permalink(geodir_add_listing_page_id()); }
Thanks
March 7, 2017 at 2:55 pm in reply to: Supreme Directory – List view: right area, content, left area #365927oops i wrote the code 🙂
March 7, 2017 at 2:54 pm in reply to: Supreme Directory – List view: right area, content, left area #365926Atilla,
I can give you guidance. but i cannot write code for you since it will require time.
You best bet is use shortcode to place the content.
lets say you want to use advanced search in left sidebar.
then you should use something like this.
add_action('geodir_listings_sidebar_left_inside', 'geodir_listings_sidebar_left_inside_extras'); function geodir_listings_sidebar_left_inside_extras() { echo do_shortcode('[gd_advanced_search]'); }
This will add content in the left side. If you don’t see the content then you have to play with the GD listings tab settings
Finally, you use the css to adjust the width.
Hi I don’t understand what is your problem.
I see the calendar at the footer.
https://www.dropbox.com/s/ckpb585709idlbd/Screenshot%202017-03-07%2020.12.16.png?dl=0
I don’t see any event date in sidebar. can you link me to that page or show me screenshot?
Not to distract from topic, but is there a way to hide tabs on detail if there is no info for one? I have not searched for this yet, but since I have you :).
I guess that how it works. if the content is empty that tab won’t get displayed. let me know where you see this empty tabs.
Thanks
This reply has been marked as private.Thanks for letting us know.
March 7, 2017 at 12:27 pm in reply to: Supreme Directory – List view: right area, content, left area #365886What exactly you are planning to add in the left side?
Most likely you will need scrolling in the left box. Otherwise the box will be cut off in the middle. We don’t have scroll in the map, that because its a draggable one.
So think about before you proceed. You also need to customize styles to make it compatibile with Tablets and Mobiles.
You need to add a custom field with key
subtitle
https://www.dropbox.com/s/zz3jg5rn306u7pq/Screenshot%202017-03-07%2017.46.39.png?dl=0
Thanks
March 7, 2017 at 11:59 am in reply to: Supreme Directory – List view: right area, content, left area #365881Actually supreme is created by Paolo. But he is usually busy. So he forget things.
Well you are missing the point. The right side, left side settings are coming from GD. You can switch the 2 column layouts. Meaning you can either display map on left side or right side. That would work.
But you cannot display three columns since we have removed support for 3 column layout. The primary reason is it has to do something with the scrolling i guess. If you make it three column then you will have two grids that is scrollable and you will have some issues with scrolling.
You can still add custom code to make it three column.
Just refer these hooks.
geodir_listings_sidebar_left_inside
geodir_listings_sidebar_right_insideThanks
March 7, 2017 at 11:41 am in reply to: Supreme Directory – List view: right area, content, left area #365878Atilla, please check my last reply.
Thanks
-
AuthorPosts