zeppos
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Do you plan to update it?I tried with BuddyPress Nouveau and BuddyPress Legacy but nothing worked. No extra fields in the settings tab, and also no extra tab. I disabled all other plugins because I thought it maybe was a conflict with other plugins but nothing changed. Update would be nice for sure. Great plugin for Group customisation. Kind of surprised it’s the only of its kind, lots of plugins to customise the users pages, but not the groups.
Thanks for working on an update. Looking forward to it!From all the 17 people that gave a 1 star ratings in the review section there are 6 people saying that this plugin is putting your website wide open for mayor security/hacking risks. It’s kind of hard to miss, you are not aware of these reviews?
Forum: Plugins
In reply to: [Joli Table Of Contents] Fold on clicking link in TOCThis is the jQuery script I found and used:
<script>
jQuery(“.toc-container-close”).click(function() {
jQuery(this).closest(“.toc-container-close”).toggleClass(“.toc-container-open”);
});
</script>This is the css I used:
.toc-container.close {
width: 35px;
height: 35px!Important;
overflow: hidden;
border: solid 2px #ddd;
background: #fff;
}.toc-container-open {
width: auto;
height: auto;
overflow: auto;
border: solid 2px #ddd;
background: #fff;
}.toc-container-close is the css class of the Elementor section the WPJoli shortcode is in. On default it is a closed round button:
On click on the round button, or any of the links that are inside the .toc-container-open the class is every time toggled between .toc-container-close and .toc-container-open.
Making it this way gave me more control to put other things in the TOC container.
Not exactly like you said, but the idea is the same.Forum: Plugins
In reply to: [Joli Table Of Contents] Fold on clicking link in TOCThanks man! I’m not a programmer, but I managed to make it work just like you said.
I had an other try, and it looks like it is possible, and it even isn’t that difficult. Just give the carousel container ID a large width combined width an overflow that is hidden in the parent Elementor section. It’s just a few lines of ccs.