mdf84
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 503 Service UnavailableHi guys this may be a late one but noticed this thread isn’t resolved! I had a similar experience with a site that had a cache plugin installed. The plugin turned out to cause more problems to the point where I couldn’t even view the site front end or login either due to ‘too many redirects’ error.
I had to delete the plugin and associated files through FTP as many have suggested above, then I had to clear the browsers cache, cookies and plugin data (using Chrome) which did eventually let me view the site and login to the admin panel.
Hope this helps someone! ??
Forum: Plugins
In reply to: [Easy Responsive Tabs] Add ID to tabHi Kasper,
Don’t know if you still require this, I have managed to found a way to add the ID to each tab.
In the main php file (easy_res_tab.php) at line 220 you should see this line…
$_ert_restabs[$index][‘tabs’][] = ‘<li class=”‘ . $active . ‘”>‘ . $title
. ‘‘;Change the li class from ‘ . $active . ‘ to ‘ . $pane_id . ‘ so like this…
$_ert_restabs[$index][‘tabs’][] = ‘<li class=”‘. $pane_id . ‘ ‘ . $active . ‘”>‘ . $title
. ‘‘;Noticed I kept the original $active class too in case you want the first or active tab to appear different too or you can remove as the line above.
With this you can then target your individual tabs using this css selector then place whatever you like in there. li.ert_pane1-0 is the first tab then li.ert_pane1-1, li.ert_pane1-2 and so on.
.osc-res-tab ul.osc-tabs-center-ul li.ert_pane1-0 {
styles…..
}
Hope this helps! ??
Forum: Plugins
In reply to: [Responsive Lightbox] Position of X close buttonHi thanks for that i have had a play around with them styles which work to a certain extent however when resizing the screen or looking on alternative browsers the X button is in random places. Is there anyway of fixing the position so it’s fixed to the top right corner of the white box and stays in that position even when resizing the screen etc.
Thanks for the help! ??
Hi Baden,
Did you get my last reply? Many thanks
Michael
Hi Baden
Thanks for the help. I don’t seem to recieve emails letting me know you have replied so apologies for the late replies!, the update didn’t quite seem to make a difference only the speed of the sliding. My quess is (although I’m no expert) is the timings of the slide so when the next tab is clicked it will fully close the last one (quite smoothly) then open the next. I have a link below to a tab demo which best describes what i am saying ?? it is exactly the kind of thing I would like. So my question to you is can this plugin replicate this kind of behaviour?
Thanks again in advance, appreciate the help.
Yes indeed this already works fine for the other panels, it is just those tabs ‘research analysis’ ‘product design’ When you click on each tab the content seems to slide up rather than closing the last one then revealing the new content.
Thanks for the quick reply ??