Giri
Forum Replies Created
-
AuthorPosts
-
Create list button basically links to that link and nothing else. if all you need is a create list button, You can simply add a link in your main menu like
http://yourwebsite.com/add-list/
Hi Eduardo,
I’ll test supreme with Yoast SEO and give you patch.
Thanks for reporting.
Hi Gautam,
We wrote an extensive documentation for re ordering the tabs.
Please go though that documentation and let me know if you still need help.
https://wpgeodirectory.com/re-order-tabs-in-a-listing-detail-page/
The way I see it, you wanna push only the review tab and related listing tab to the last.
In that case, this code would work I guess
add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend'); function geodir_detail_page_tab_list_extend($tab_array) { global $preview; if ($preview) { return $tab_array; } $new_tab_array = array(); // here u can modify this array, u can create a completely new one too. if (isset($tab_array['reviews'])) { $new_tab_array['reviews'] = $tab_array['reviews'];// set in new array unset($tab_array['reviews']);//unset in old one } if(isset($tab_array['related_listing'])){ $new_tab_array['related_listing'] = $tab_array['related_listing'];// set in new array unset($tab_array['related_listing']);//unset in old one } // now we set any remaining tabs that have not been assigned an order foreach ($tab_array as $key => $tab) { $new_tab_array[$key] = $tab; } $new_tab_array = array_merge($tab_array, $new_tab_array); return $new_tab_array; }
Let me know how that goes.
Thanks
Hi Joei,
Yes I put that css in GD > Design > Scripts > Custom CSS as paolo said.
It won’t be taken away when you upgrade since i have added the php code in your child theme.
Thanks
You are welcome.
For the record, you can check here my past replies to other customers.
https://wpgeodirectory.com/support/members/giri/replies/
The last reply I created was at February 17, 2017 at 1:21 pm.
I saw you answering everyone but you dont answer me
Hi there,
Most of us don’t work on saturdays and sundays. Not sure who you are referring to.
You are our paying customer? Is it make any sense to not answer only you on purpose?
As for your question,
This client is testing our new AYI addon. Whoop theme depends on that plugin since we moved the code.
https://wpgeodirectory.com/support/topic/use-of-ayi-widget-with-another-theme/page/2/#post-362133
Once all the bugs are fixed in that addon, we will release whoop theme. Most probably we will release whoop with the addon in this week.
Hope that helps.
OK Thanks for the feedback JJJ.
But you need to elaborate your request little bit.
But still : when attending, nothing is displayed within the submenu, both for recurring and not recurring events. (BP activity well records the info btw.)
When you mean submenu which menu your are talking about. Please take screenshot for better clarity
Could you quickly add “who’s attending” within the Event Lists (page and shortcodes/widgets) to check it as well?
I need more info for this as well.
When you click x users interested link it displays the users who are attending. You mean you want that hyperlink in shortcodes and widgets?
Let me know.
Thanks
Hi Roman,
In last version we changed an unnecssary claim button for non loggedin users.
https://github.com/mistergiri/supreme-directory/commit/2bac5e94852d7456854df6f7887c8c57d0d5ab6d
That caused your issue since you have not activated the claim manager. I have modified the code to work properly even when claim manager not active and applied the patch in your website.
Hope that helps
Thanks
Hi Joei,
That is intended behaviour. Our Avada compatibility functions removed the GD title since avada uses different title location.
I have put that back. So the title get displayed in preview. I have used CSS to hide the detail page title.
Hope that helps.
Thanks
February 16, 2017 at 3:12 pm in reply to: Possible to change position of Location Switcher on main menu? #362047You are welcome.
February 16, 2017 at 2:37 pm in reply to: Possible to change position of Location Switcher on main menu? #362038Hi Ronny,
I checked our code. Its not possible.
But you can use some css hacks like
float: left
last item and
float:right
for other items.
ul#menu-main-menu li { float: right !important; } ul#menu-main-menu li:last-child { float: left !important; }
You have to reorder the menu in Appearance > Menus accordingly. You may have to remove one menu item to display properly.
Hope that helps.
Thanks
Hi Roman,
I have fixed it. Can you check now?
Thanks
That seemed to work. HOWEVER, the ‘Contact the author’ link is outside the side column
Your “Contact the author” link is called “Send Enquiry” link.
You are welcome 🙂
-
AuthorPosts