ToggleME

ToggleME 3.1.4

No permission to download
Hi,

We are on XF 1.4.5, but I receive this error when trying to install the add-on - any idea what might be causing this?

Callback Sedo_ToggleME_Listener::template_create is invalid (Invalid Class).

Thanks!
Reupload files, check if the directory is correct.
 
cclaerhout updated ToggleME with a new update entry:

Version 3.1.2 released

Version 3.1.2 released
  • Auto trim fix
    For those who have problems with some links that have strange letters added at the begin or the end of them (ie: somelink.63/%0A), I confirm it's because somewhere in your code some blank characters have been inserted at the begin or the end of the url. When the PHP dom function process to those nodes ('a' => which is an url), the attribute href (which contains the url) will be coded to guaranty a safe url:...

Read the rest of this update entry...
 
hello @cclaerhout
there are some way to hide some toggles only in mobile devices?
I would like to hide the toggle of user extra information in postbit in mobile devices,
any idea? :coffee:
 
Looks pretty nice / minimalistic and clean with the sidebar closed. I like it,
in fact I think would be great consider it in the future, if possible :coffee:
 
Hey,

is it possible to collapse the categories by clicking the category bar/strip instead of the little button on top right corner? That would be much more intuitive and easy to use.

And also much more faster and user friendly.

For example if your board has many categories and forums, you could make the default that everything is collapsed. So the site is not long anymore, no need to scroll down much. And then you can quick collapse the category you want by clicking the correct category strip. Maybe also with a hover effect.
 
Last edited:
is it possible to collapse the categories by clicking the category bar/strip instead of the little button on top right corner?
No and I don't plan to add this as a feature: that's just require css adjustements (probably a 100% width and defined height without any button element ; with the font-awesome, just let the field blank). But I will not support them: there are the responsability of each admin.

For example if your board has many categories and forums, you could make the default that everything is collapsed
You mean automatically based on the number of nodes? Then that would be also a no for me. If you want to collaspe a category by default, there's already an option for this.
 
No and I don't plan to add this as a feature: that's just require css adjustements (probably a 100% width and defined height without any button element ; with the font-awesome, just let the field blank). But I will not support them: there are the responsability of each admin.
Hmm, ok thanks. The button element should stay (so people are aware of collapsing) but I thought it would be more quicker to make the "click area" bigger and wider.

Can you tell me how I can make the "collapse click area" bigger with css? So I can use the button click area and make it bigger and wider?
 
Why you want to do that? I think the actual style is perfect and very intuitive to everyone. imo.
anyway you can do whatever you want with css. the addon is very customisable.
 
Why you want to do that? I think the actual style is perfect and very intuitive to everyone. imo.
anyway you can do whatever you want with css. the addon is very customisable.
Because when your screen is big (like mine 27 inch), the little tiny button on top of corner is not very user-friendly. I have to spend too much time to "find" the button with my mouse.

Can you tell me how I can make the "click area" bigger with css?
 
Hmm, ok thanks. The button element should stay (so people are aware of collapsing) but I thought it would be more quicker to make the "click area" bigger and wider.

Can you tell me how I can make the "collapse click area" bigger with css? So I can use the button click area and make it bigger and wider?
I'm going to repeat that all css modifications must be made by you, I can't and won't support these kind of modifications, especially when they depend on the toggleme mode you're using (sprites/pure css/font-awesome). You can check with a basic mod such as this:
Code:
.nodeList .toggleMEtrigger {
  position: relative;
}

.nodeList .toggleMEtrigger .toggle_me {
  position: absolute;
  width: 99%;
  opacity: 0;
  //increase height if needed
}

If it doesn't work on your style, just find a tutorial on the web on how css are working and try to customize them for your style.

I have to spend too much time to "find" the button with my mouse.
If you spend so much time to bring your mouse to the the opposite side of your screen, you might need to modify your mouse cpi configuration...
 
@sbj I recommend you take a look at this video:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

More info here in this thread
And learn a little CSS, is easy and fun. Otherwise if you want to do this quickly and want some help is necesary provide your url to take a look into the code. (Like in the video) :coffee:
Here around are a lot of developers that could give you a hand with it in the follow forums:
Styling and Customization Questions
Custom Service/Development Requests
 
  • Like
Reactions: sbj
m going to repeat that all css modifications must be made by you, I can't and won't support these kind of modifications, especially when they depend on the toggleme mode you're using (sprites/pure css/font-awesome).
It is ok. I got it. If what I want can be done via css, then it is totally fine. Of course no need to implement to the add-on this.

Ok, now the code what you gave me just moved the button from top right to top left. Not what I wanted really.

I am using pure css mode. Can you give me the css code for the button? I want to make the button wider.
upload_2015-3-15_18-48-8.webp

My problem is not to use css code, my problem is I don't know what kind of names I have to use like .nodeList .toggleMEtrigger .toggle_me. How should I know that this?
 
I am using pure css mode
Your screenshot shows you don't ; you use the sprite mode (original mode).

Can you give me the css code for the button?
See this:
If it doesn't work on your style, just find a tutorial on the web on how css are working and try to customize them for your style.

How should I know that this?
Use your browser development tools (Firefox => F12 / Chrome => CTRL+MAJ+I), browse in the dom, update the css properties see the modifications in live (FF is better for that).
 
Back
Top Bottom