(2020-02-19, 06:21 AM)LittleFoxy Wrote: (2020-02-18, 09:17 PM)vintagedaddyo Wrote: (2020-02-18, 08:45 PM)LittleFoxy Wrote: (2020-02-18, 08:35 PM)vintagedaddyo Wrote: (2020-02-18, 08:25 PM)LittleFoxy Wrote: I will try the first thx
Best of luck!
Quote:Two ways to do this: one is manually change the fa inlude and the modify the css and templates for the fa5 changes which takes longer than option 2
Two while faster and more simple than option 1 still requires alot of the same work but in the end has more advantages
If I give you admin to fix it, will you do it?
Currently limited on free time which option are you wanting? If it is option one, I don't need admin access I just need a copy of the theme package to install and modify on my localhost... if it is option two i could also avoid needing admin access by getting the theme pkg from you to install on localhost and install plugin on localhost modify so the plug inserts are existant in said theme then modify the rest of the icons in the theme for fa5 but either of those two options would be dependant on two things one sending me privately the theme ppkg to modify and two your patience as this will have to be done when I have the free time to do so after getting the theme pkg from you
I will pm you after
No worries, let me know. Anyhoo, looking at your source it looks like you are trying to use the myfontawesomeicons 4 version? I know this because I see the headerinclude for the plugin here:
<link href="https://geekhall.xyz/inc/plugins/myfontawesomeicons/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
Also not since you are including the locally hosted fa library via the plugin you need to remove any other fa library includes to avoid confusion, conflicts and duplicate includes like this one for example:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
I also notice you attempted to manually add the stylesheet
https://geekhall.xyz/css.php?stylesheet%5B0%5D=110
*
Note: the attached stylesheet is called myfontawesomeicons.css that the fa4 plugin uses
Also note: like I told Anon in another support request about same theme and the plugin he ran into having duplicate icons and that is caused by either one not correctly installing the manual inserts and say still leaving the existing theme fa icon call in the forumbit and then adding the plugin icon insert (easy mistake) thus loading two icons ie: theme icon and plugin icon rather than just plugin icon or two if not that and installed correctly then thats because your theme has forum icons styling in dark.css with !important and that is conflicting with the plugins !important override, comment out the forum overrides in dark.css
Comment out this in dark.css:
/*
.forum_status {
font-size: 17px !important;
text-align: center;
padding-top: 5px !important;
}
.forum_status i {
display: inline-block
}
.forum_on {
color: #527fbd;
font-size: 17px !important;
opacity: .8;
}
.forum_off, .forum_offlock, .forum_offlink {
color: #527fbd;
}
.forum_off {
opacity: 1;
}
.forum_on::before {
font-family: 'FontAwesome';
content: "\f07c";
}
.forum_off::before {
font-family: 'FontAwesome';
content: "\f07b";
}
.forum_offlock:before {
font-family: 'FontAwesome';
content: "\f023"
}
.forum_offlink:before {
font-family: 'FontAwesome';
content: "\f0c1"
}
.ministatus {
line-height: 2;
padding-right: 0px;
padding-left: 10px;
}
.ministatus .forum_on, .ministatus .forum_off, .ministatus .forum_offlock, .ministatus .forum_offlink {
font-size: 16px !important;
}
.subforumicon {
height: 10px;
width: 10px;
margin: 0 10px 0 -7px;
opacity: 1 !important;
}
.subforum_minion {
color: #434a56
}
.subforum_minioff, .subforum_miniofflock, .subforum_miniofflink {
color: #434a56
}
.subforum_minioff {
opacity: .4
}
.subforum_miniofflock i:before {
content: "\f023"
}
.subforum_miniofflink i:before {
content: "\f0c1"
}
*/
* I also noted in that support request that this theme is not current as you can see by the offlock usage here as well as the lock usage in threads status as well as most likely the respective templates and mybb changed from lock to close a good while ago, just pointing that fact out.
Not sure if you have the followed the manual insert instructions for existing fa themes but following them and taking note of what I just mentioned should get you sorted for the fa4 myfontawesomeicons plugin you are trying to use.
[note] installing the fa5 myfontawesomeicons plugin is a very similar but not exactly same process as there are a few diffeence like the include libraryname and css is different.