Jump to content

Caleeco

Apprentice
  • Posts

    103
  • Joined

  • Last visited

Everything posted by Caleeco

  1. Hello, All the screenshots are from the same website. The ones on the left are Font Awesome, just and older version. This is the custom CSS. /*== [Forums] ==*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='7'] > i:before{ content: "\f197" } /*War Room*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='8'] > i:before{ content: "\f234" } /*Introduce Yourself*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='3'] > i:before{ content: "\f0e3" } /*Boardroom*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='2'] > i:before{ content: "\f1cb" } /*Test Forum*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='10'] > i:before{ content: "\f074" } /*Random*/ But when i change to the new THEME - FLUENT. The icons revert back to their defaults & the custom CCS is not applied. So im not sure why that would be, unless there is some CSS somewhere overriding the custom CSS? Many Thanks Caleeco
  2. I wish I wasn't such a fool. ? I wanted to update the CKEditor to include some additional plugins. So I created a new CKE install. https://ckeditor.com/cke4/builder I then used my webhost file manager to extract/overwrite into this location: public_html/forum/applications/core/interface/ckeditor/ckeditor I cleared Cache in my browser and reloaded page. Also purged cache from my Cloudflare cache. However, now my CKEditor will not show up in the forum or the settings (Attached image). Am i missing a step? Any help is apprecited Thanks Caleeco
  3. Hello @S!r.ReaDy Thanks for the reply. I have attached a picture to illustrate what I mean. LEFT: Existing Theme with updated FA icons using custom CSS MIDDLE: New Theme RIGHT: The Icons I'm trying to edit (example on 1st subforum) So this line: .cForumList .cForumRow[data-categoryid="4"] .cForumTitle::before {content: "\f1c3";} Will edit the SOCIAL & RANDOM category. But I'm trying to edit the subforums items also Many Thanks Caleeco
  4. Hello, I am using the Fluent theme, and am trying to set the icons of each forum in 4.4.10. The theme interface allows you to edit the Category icon using the line of code below: .cForumList .cForumRow[data-categoryid="4"] .cForumTitle::before {content: "\f1c3";} However, this does not work for forums contained in each category. I presume i need to reference the data-forumid instead. But my random code editing doesn't seem to take effect! I can do a live edit using 'inspect element' and can change the font awesome icon, but cant figure out how to do it in the theme. I also tried following the guidance found here, but it doesn't seem to take effect: Any help is appreciated Cheers Caleeco
  5. You Legend! Works like a charm Thanks for helping me solve this problem , its much appreciated! Caleeco
  6. Hey @S!r.ReaDy I appreciate you taking the time to help! Im a HTML Noob! This is my topContributors Module <h3 class='ipsType_reset ipsWidget_title'>{lang="block_topContributors"}</h3> <div class='ipsTabs ipsTabs_small ipsTabs_stretch ipsClearfix' id='elTopContributors' data-ipsTabBar data-ipsTabBar-updateURL='false' data-ipsTabBar-contentArea='#elTopContributors_content'> <a href='#elTopContributors' data-action='expandTabs'><i class='fa fa-caret-down'></i></a> <ul role="tablist" class='ipsList_reset'> <li> <a href='#ipsTabs_elTopContributors_el_topContributorsWeek_panel' id='el_topContributorsWeek' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='true'>{lang="week"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=month&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsMonth' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="month"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=year&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsYear' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="year"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=all&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsAll' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="alltime"}</a> </li> </ul> </div> <section id='elTopContributors_content' class='ipsWidget_inner ipsPad_half'> <div id="ipsTabs_elTopContributors_el_topContributorsWeek_panel" class='ipsTabs_panel'> {template="topContributorRows" group="widgets" app="core" params="$topContributorsThisWeek, 'week', $orientation"} </div> </section> As you suggested, i cut the activeITEM and pasted it in the ALL section. I also update the aria-selected TRUE/FALSE statements. However, after Saving, the widget remains unchanged. What have i done wrong ? <h3 class='ipsType_reset ipsWidget_title'>{lang="block_topContributors"}</h3> <div class='ipsTabs ipsTabs_small ipsTabs_stretch ipsClearfix' id='elTopContributors' data-ipsTabBar data-ipsTabBar-updateURL='false' data-ipsTabBar-contentArea='#elTopContributors_content'> <a href='#elTopContributors' data-action='expandTabs'><i class='fa fa-caret-down'></i></a> <ul role="tablist" class='ipsList_reset'> <li> <a href='#ipsTabs_elTopContributors_el_topContributorsWeek_panel' id='el_topContributorsWeek' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='false'>{lang="week"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=month&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsMonth' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="month"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=year&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsYear' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="year"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=all&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsAll' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='true'>{lang="alltime"}</a> </li> </ul> </div> <section id='elTopContributors_content' class='ipsWidget_inner ipsPad_half'> <div id="ipsTabs_elTopContributors_el_topContributorsWeek_panel" class='ipsTabs_panel'> {template="topContributorRows" group="widgets" app="core" params="$topContributorsThisWeek, 'week', $orientation"} </div> </section> Many Thanks Caleeco
  7. Hello, I am running IPS 4.4.10, and would like to modify the Popular Contributors Widget that appears in the FORUM. By default the 'Week' tab is selected. Is it possible to make it so that the 'All Time' tab is instead selected by default? (see attached) Any help is appreciated Thanks Caleeco
  8. Hi Jeffrey, Thanks for the response, i went through the Settings > Support prompts and the interface seems to have fixed itself (all icons are back!) Out of interest how do I execute that second method? Do I flush dns via IPS interface or is that a command I would run on my WebHost? Thanks, marked as solved! Caleeco
  9. Hello, I moved my forum recently (from MyWebsite.com to MyWebsite.com/forum). The data seems to have ported across ok, but lots of images seem to be missing (things like the Quote button, reputation, icons in the main nav bar etc). So something has gone wrong. I wanted to re-install my current version 4.4.10, to hopefully fix these issues. So I followed the usual upgrade method > Backup > Upload IPS Files to install location > go to MyWebsite.com/forum/upgrade/ However, I now get an error message saying "There are no applications available to upgrade". Does anyone know what I'm doing wrong here? Many Thanks, Caleeco
  10. Never used anything other than windows! So i dont know what i could be missing haha
  11. My default is a light theme, I think a dark theme comes across as a section of the deep dark web ?
  12. AH ok, thanks for the clarification. I skipped that step.. and the install worked great! Must have been fixed in the 4.3.5 release as you say
  13. Thanks I just upgraded using your guide Could someone enlighten me as to what the above step does? Thanks Caleeco
  14. This looks clean... will look to integrate it and let you know how i get on
  15. Welcome! The translator is pretty good! ;)
  16. Thanks for the detailed guide, just about to do this upgrade! ?
  17. Hello, I have a 4.3 IPS forum and have made many edits to my theme. The trouble is, when I need to update the theme (new version of the same theme)... I need to reapply all the edits I have made. Am I missing an easier way to do handle this upgrade process? I read somewhere that you could have a PARENT theme installed and then a CHILD theme, with only one of them holding edits (and the other is the one that gets updated with new releases). Any Help/Advice is appreciated Thanks Caleeco
  18. @Rampagerabbit Thanks you very much! Might just upgrade to IPS 4.3 now!
  19. Version 2.0.5

    18 downloads

    Learning Management Theme Clever Course is a LMS (Learning Management System) wordpress theme. It?s suitable for school, university, college, education etc.. This theme is designed especially for creating and sell courses. You can sell both online course either onsite course. For online, each course can be separate into parts/sections and you can also create online quiz to evaluate learners. About payment, learner can choose to pay by Paypal, Stripe, PayMill, Authorized.net or CloudPayments.eu(.ru) directly or they can choose to transfer by other methods(Admin can provide other methods such as bank transfer) then learners will have a submission from in backend to submit payment evidence(Bank transfer receipt for example). After learner submit, admin can check the evidence in admin?s backend and approve or reject the submission later. For Onsite Course, learner can fill the amount of package in case of purchasing for friends. After purchasing, learner will get the reference code which be used for instructor to compare with the record in the date of studying. Source: https://themeforest.net/item/clever-course-learning-management-system-theme/8645312
  20. hmm that's strange, maybe an install problem? I will try to resinstall!
  21. Hello, Something strange I've come across, not sure if its an IPS problem or a "Medals And Trophies" Problem. When I create a new Trophy, and then click in the description box to type... the entire box just greys out and doesnt allow me to type. Has anyone come across this? Any help is appreaciated Thanks Caleeco
  22. luckily I had only uploaded about 6 out of 36! Seems to be working, the image does appear to be slightly sharper! Thank you very much!
  23. ah i switched the top option to "GD" and the compressions PNG slider appeared! So I assume this needs to be set to 9/9 for the best images?
  24. Hey Titcrunch, I couldnt find that path... i can get to Admin > Overview > Files > Image Settings Is this not for user uploaded images? Should I be saving my rank icons as JPG instead of PNG? Thanks for your help Caleeco
×
×
  • Create New...