|
MI Tab Panel 1.00
|
| Mehmet |
Posted on 16-05-2012 17:26
|

Member

Posts: 53
Joined: 13/11/2009
|

Name: MI Tab Panel
Version: 1.00
Author: Mehmet
License: Released as free software without warranties under GNU Affero GPL v3.
DESCRIPTION
MI Tab Panel adds three style tab panels. You can adjust tab color, content color, border color and other.
NOTE: Please don't delete copyright information. If you want delete copyright, contact me please!
INSTALL
Upload all files and folders in the main /files/ folder.
Go to Site Admin >>> System Admin >>> Infusions:
Select MI Tab Panel and Infuse.
You don't need go to add panels. Panel is automatically adds but deactive. You will activate it only.
Go to Site Admin >>> Infusions >>> MI Tab Panel: .
Save your settings.
Enjoy!
CHANGELOG
v1.00
- First public release
SUPPORT
If you require support for this Addon please visit the my PHP Fusion Mods website forum at
http://fusion.kar...read_id=12
and the PHP Fusion Turkey Forum at
http://www.phpfus...ad_id=4467
My Contact Address: mehipek[at]gmail.com
CREDITS
Developer: Mehmet
JQuery Code based on code from UI Jquery Tab, ID Tab and Folder Tab.
Admin CSS Menu Code from Fatih Hayrioglu. CSS code editing by HaYaLeT.
Tests: HaYaLeT
Thanks to all.
PREVIEW
LIVE
http://fusion.kar...sireti.com
-- View this Addon --
Edited by Mehmet on 03-03-2013 21:56
|
| |
|
|
| HaYaLeT |
Posted on 16-05-2012 20:00
|

Senior Member

Posts: 276
Joined: 31/10/2008
|
Great addon,congrats Mehmet..
|
| |
|
|
| Mehmet |
Posted on 16-05-2012 20:51
|

Member

Posts: 53
Joined: 13/11/2009
|
Thanks @HaYaLeT.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| jikaka |
Posted on 16-05-2012 21:29
|

Admin

Posts: 743
Joined: 28/01/2010
|
super! i like it!
|
| |
|
|
| Mehmet |
Posted on 16-05-2012 22:44
|

Member

Posts: 53
Joined: 13/11/2009
|
Thanks @jikaka.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| spunk |
Posted on 25-06-2012 18:30
|

Member

Posts: 64
Joined: 01/11/2010
|
Hi Mehmet!
Please have a look on my site.
There is a error with my navigation. The Dropdown-Menu is behind your Tabs...
http://www.f95tub...
Any solution for this? |
| |
|
|
| Gillette |
Posted on 25-06-2012 18:33
|

Admin

Posts: 291
Joined: 09/04/2012
|
Nice addon,Very good job!
[spam was removed from this thread] |
| |
|
|
| Mehmet |
Posted on 26-06-2012 16:54
|

Member

Posts: 53
Joined: 13/11/2009
|
spunk wrote:
Hi Mehmet!
Please have a look on my site.
There is a error with my navigation. The Dropdown-Menu is behind your Tabs...
http://www.f95tub...
Any solution for this?
I'm sory. I saw new your message, because forum information e-mail go to spam :S.
You can add z-index:999; or highest number to your menu css.
Example;
#menu {
margin: 15px 0 0 0;
background-color: #DDD;
z-index:999;
}
If you fix your problem, I learn it.
Gillette wrote:
Nice addon,Very good job!
[spam was removed from this thread]
Thanks @Gillette.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| Mehmet |
Posted on 26-06-2012 17:39
|

Member

Posts: 53
Joined: 13/11/2009
|
@spunk I fixed your problem.
Open themes/Fortuna/includes/menu/styles-menu.css
And find below;
ul#cssmenu {
width: 100%;
margin: 0;
border: 0 none;
padding: 0;
list-style: none;
height: 33px;
font: 14px/28px Verdana, Arial;
}
And add below code to ul#cssmenu { ;
position: relative;
z-index: 9999;
So finally code like below;
ul#cssmenu {
width: 100%;
margin: 0;
border: 0 none;
padding: 0;
list-style: none;
height: 33px;
font: 14px/28px Verdana, Arial;
position: relative;
z-index: 9999;
}
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| spunk |
Posted on 26-06-2012 18:30
|

Member

Posts: 64
Joined: 01/11/2010
|
Ahhh, z-index!
Thank you very much, Mehmet! You fixed it! 
I´m glad i can use your Tab-Panel... |
| |
|
|
| Mehmet |
Posted on 26-06-2012 18:50
|

Member

Posts: 53
Joined: 13/11/2009
|
spunk wrote:
Ahhh, z-index!
Thank you very much, Mehmet! You fixed it!
I´m glad i can use your Tab-Panel...
You're welcome. Enjoy it.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| Layzee |
Posted on 13-07-2012 18:15
|

Member

Posts: 62
Joined: 07/01/2011
|
Well, great addon, but I have a question.
I would like to include some Panels (something like "latest download panel" or similar) into the tab content but it doesn't works. Neither with <iframe> nor with PHP-Code like "include...".
What do I have to change to make that possible?
Thx in advance...
Layzee
Edited by Layzee on 13-07-2012 19:43
|
| |
|
|
| Mehmet |
Posted on 16-07-2012 13:07
|

Member

Posts: 53
Joined: 13/11/2009
|
Sory, I was outside the city. I came yet.
@Layzee you can't add to php code with tinymce and other. But I will work on it at new version.
Now you can add your codes to style1_mitab_panel.php, style2_mitab_panel.php or style3_mitab_panel.php.
For example if you will add your codes to style1_mitab_panel.php, you open style1_mitab_panel.php and find this.
if ($mitabsettings['tab1_enable'] == "1" && $mitabsettings['tab1_content'] !== "" && $mitabsettings['tab1_name'] !== "") {
echo "<div id='tabs-1'>";
echo stripslashes($mitabsettings['tab1_content']);
echo "</div>\n";
and change with this.
if ($mitabsettings['tab1_enable'] == "1" && $mitabsettings['tab1_content'] !== "" && $mitabsettings['tab1_name'] !== "") {
echo "<div id='tabs-1'>";
echo"YOUR CODDES";
echo "</div>\n";
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| Layzee |
Posted on 16-07-2012 18:02
|

Member

Posts: 62
Joined: 07/01/2011
|
Thanks mate, figured that out by myself meanwhile and of course it works fine ;-)
Would be great if in next versions that panel could take PHP-Code like include or at least a wider spectrum of HTML, such as <iframe>.
Edited by Layzee on 16-07-2012 18:12
|
| |
|
|
| djdandi |
Posted on 29-07-2012 16:55
|

Junior Member

Posts: 16
Joined: 03/11/2010
|
I have a problem from 3 with style see not cannon how should.
http://pogoda.brz...2/news.php
please for the help I thank. |
| |
|
|
| Mehmet |
Posted on 29-07-2012 20:15
|

Member

Posts: 53
Joined: 13/11/2009
|
I did not understand your problem. You can explain problem. And you can show me the problem.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| djdandi |
Posted on 29-07-2012 20:27
|

Junior Member

Posts: 16
Joined: 03/11/2010
|
See aside it isn't possible to go between bookmarks
http://pogoda.brz...2/news.php
In the first bookmark all data is being shown from bookmarks
I apologise from my English |
| |
|
|
| Mehmet |
Posted on 30-07-2012 00:09
|

Member

Posts: 53
Joined: 13/11/2009
|
your problem the follow image?

Sory, problem is contents, ok. Firstly you can upload original tab files again? Because you edit files. I think that same css codes conflicting.
Edited by Mehmet on 30-07-2012 00:24
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|
|
| afoster |
Posted on 30-07-2012 02:09
|

Senior Member

Posts: 423
Joined: 11/06/2007
|
Can php code be used with this infusion? I'm trying to find out if I can include information pulled from the database as you can in a panel. |
| |
|
|
| Mehmet |
Posted on 30-07-2012 02:38
|

Member

Posts: 53
Joined: 13/11/2009
|
afoster wrote:
Can php code be used with this infusion? I'm trying to find out if I can include information pulled from the database as you can in a panel.
You can not use php code and add to content now. But I will do it next version.
Mehmet ( PHP Fusion Turkish Support Site Moderator)
|
| |
|