Thread Starter
leogc
(@leogc)
For the moment i have just sorted the Tabs all into one Tab so that no one need to klick somthing, just scroll down. But basically this should not be the solution, i used wpdebug, and checked the page but nothing was showing up.
In the Console is see the in the specific code area:
https://ibb.co/r5zKMbc
This :: marker is the dot which shows up and should not be there i guess…?
Plugin Author
Paolo
(@paoltaia)
Hi, that sounds like a javascript conflict. Please provide a link to a page where the error is visible and we will tell you how to proceed.
Thanks,
Thread Starter
leogc
(@leogc)
Hi @paoltaia,
if you mean a link to one of the Details Pages, here: https://infos-grancanaria.com/hotels_gran_canaria/casa-rural-el-molino/
I have changed the setting into “List view”, but this “dot” shows up there as well…? Thanks in advance
Plugin Author
Paolo
(@paoltaia)
I see at least one jQuery error on that page, which is definitely what is breaking the tabs.
(index):369 Uncaught TypeError: jQuery(...).tooltip is not a function
at aui_init_tooltips ((index):369:5782)
at aui_init ((index):369:19660)
at (index):369:19885
at dispatch (jquery.js?ver=3.6.0:5430:27)
at elemData.handle (jquery.js?ver=3.6.0:5234:28)
You should try to disable all non GeoDirectory plugins to see which one is causing this.
The dots are added by your theme because that’s a list.
You can remove them with CSS:
.entry-content ul.geodir-tabs-content, .entry-summary ul.geodir-tabs-content {
list-style-type: none;
}
Thanks,
Thread Starter
leogc
(@leogc)
Ah ok, thanks @paoltaia,
well i will check this jquery thing on my test page in the next days, maybe i find out.
And were should i place this CSS?
Greetings
Plugin Author
Paolo
(@paoltaia)
In Additional CSS
Appearance > Customize > Additional CSS
Or in your child theme’s style.css file.
Thanks
Thread Starter
leogc
(@leogc)
Hi @paoltaia,
the CSS works but not 100 % i did not get the Dot anymore but if i switch to the normal view of Tabs i can not make a click on the tabs. I can click, but nothing is happening.
The other Cause (jQuery) i can check the weekend. Maybe we find out.
Plugin Author
Paolo
(@paoltaia)
Hi @leogc,
as explained in my previous reply, the tabs won’t work unless you fix the JS error.
The CSS was only intended to remove the dots from the list. CSS can’t fix JS errors.
Thanks,