CodeCanyon

Explr - jQuery Simple Tree Plugin

  • Bought between 50 and 99 items
  • Canada
  • Has been a member for 2-3 years

Hi amatyr4n,

That’s the last time that i’m asking some help.

I’m waiting for you since a good month now.

I don’t understand there’s no big problem with your script (with ie8 it’s overlay folder and the second level wont’ stay open for all browser), this should be resolve easely.

If you don’t want to help me with your script, at least just let me know.

Claude

amatyr4n

Hi claudeabandonato, I’m really sorrry for my late reply, I’ve been very busy lately, I’ll try to identify the problem soon as I’ve finished my deadline in around this week.

-amatyr4n

amatyr4n

After seeing the demo you give to me it seems that it’s because you define the explr to all class named “auto_sitemap”

$(".auto_sitemap").explr();

when in the same tree you have 25 list with that class name. That’s why you experience the glitch, because explr will be applied for every ul with class=”auto_sitemap”

It’s rather easy to fix, simply give the topmost ul an id=”topmost_ul” (or anything as you like), then change the statement above before to this:

$("#topmost_ul").explr();

This will make sure explr isn’t applied everywhere ;)

-amatyr4n

  • Bought between 50 and 99 items
  • Canada
  • Has been a member for 2-3 years

Hi amatyr4n,

Thank you very much to reply to my comment.

It’s true that it took a long time, but i’m very happy that you reply.

Hi try to find where an i change the first ul but no succes. i will email you my page.

Thank.s again and i’m very happy to let me know that they were no big issue because your script i found it very nice and it’s fill all my need with this sitemap.

Thank’s again for your reply,

kindly

Claude

amatyr4n

Hi Claude, for targeting only the topmost ul element you can change this line

$(".auto_sitemap").explr();

into this

$(".auto_sitemap_container").children('ul').explr();

-amatyr4n

  • Bought between 50 and 99 items
  • Canada
  • Has been a member for 2-3 years

Hi again amatyr4n,

I still have only one problem with your menu.

The problem should be a css one.

Like a write in an older comment on top of this page, with ie8 when i click on a menu instead of pushing the rest of the menu down their alway one under the menu that i click who stay there (it didn’t want to go down and it’s overlay the menu.

Sorry for my poor english and i hope that you understand something.

Beleive me, after that i will not brake your balls anymore.

Just to let you know that your Sticklr script work perfectly and i’m very happy of it.

Kindly,

Claude

amatyr4n

Hi Claude, it’s an easy fix, just move your doctype tag to the topmost of your html document.. All good now eh? ;)

-amatyr4n

  • Bought between 50 and 99 items
  • Canada
  • Has been a member for 2-3 years

Hi amartyr4n,

you fix my problem again.

I’m impress, you give to your customer one of the best service that i got on this site.

5 stars for your script and 5 stars for your service.

Wish you the best.

Regards

Claude

amatyr4n

Hi Claude, no problem ;) thanks :)

-amatyr4n

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hi!

It seems some kind of trouble with live preview :( Page is just blinking :)

amatyr4n

Hi b0rman, thanks for reporting, the glitch in demo page actually happened in IE seems because of the protection script I put inside the demo page, it’s not related with the plugin itself ;)

-amatyr4n

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Actually I noticed it in FireFox and Chrome :(

amatyr4n

Hi b0rman, it’s fixed now thanks ;)

-amatyr4n

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

I am interested in buying this item. i have quick question. Can you have certain tab open by default when my page loads? is that possible

amatyr4n

Hi kadriatil, yep that’s possible :D just add a class “explr-expand” to each node you wanted them to be opened by default

<ul class="explr-expand">

-amatyr4n

  • Bought between 10 and 49 items
  • Has been a member for 5-6 years

Not really a bug, more of a feature request:

If the text in a node is long then you get a horizontal scrollbar which isn’t very attractive and may not be visible if the tree is very long.

Is it possible to have the text wrap?

amatyr4n

Hi cgarvey, to activate the text wrap globally, you can modify explr.css line 43 in white-space property from nowrap to normal:

.explr-tree li {
    ....
    white-space: nowrap;
}

Or to activate text wrap individually you can add inline css rule in each li node you want:

li style="white-space:normal;" 

-amatyr4n

  • Bought between 50 and 99 items
  • Has been a member for 1-2 years
DuCarlion Purchased

i have purchased this and just wanted to say i was extremely impressed with it even down to the attractive icons that come along with it everything looks and works great just wanted to congratulate and thank you for such great work i will be looking at your products in future anytime the needs arise as this is well worth the small cost for such an easily modifiable menu system

amatyr4n

Hi DuCarlion, thank you glad you like it :)

-amatyr4n

  • Bought between 50 and 99 items
  • Has been a member for 3-4 years
LiMarko Purchased

Is there an option to have a button to collapse the full tree?

Regards, Marko

amatyr4n

Hi LiMarko, I’m sorry but currently I haven’t provided a public method to do that. Meanwhile, the workaround can be achieved by something like this:

<a href="#" id="togglebtn">click to toggle</a>
<script>
$(document).ready(function() {
  $('#togglebtn').click(function(e){
    $('.explr-tree .explr-plus').siblings('ul').slideToggle().siblings('.explr-plus').toggleClass('explr-minus');
    e.preventDefault();
  });
});
</script>

-amatyr4n

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hei mate, I get a $(..) not a function error. I’m trying to use it on an OpenCart site that uses a few other jQuery scripts Could it be a conflict? And if so, how can I rzolve it?

Thanks

amatyr4n

Hi Schtrudahl, yeah that could be that or $ variable isn’t reserved by jQuery, you can email me the link, I’ll try to identify the problem ;)

-amatyr4n

  • Bought between 50 and 99 items
  • Has been a member for 3-4 years
LiMarko Purchased

Hi, I get error in Chrome and Opera: XMLHttpRequest cannot load file:///C:/Users/test/test.html. Origin null is not allowed by Access-Control-Allow-Origin. I used script for a local files, not uploaded on some server or local server. Do you have any sugesstion how to solve that problem. Thanks!

amatyr4n

Hi LiMarko, that’s what expected to be happened when you run it locally because of default security settings in Chrome and Opera. To solve this problem you can install XAMPP for testing in local server.

Or you can try run this from command line

chrome.exe --allow-file-access-from-files

Haven’t try this myself but it’s what some other people suggested, hope it helps ;)

-amatyr4n

  • Bought between 50 and 99 items
  • Has been a member for 4-5 years
mamoyano Purchased

I have a problem with this plugin when I use three times in the same page.

With IE, if you click and click a folder from the first tree… you will see that the second and third tree go down little by little.

Could you check in http://www.g-se.com/test/test.html ?

Please, click a folder from the first tree many times with IE.

Thank you.

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Hey just wondering what the method would be to creating navigation between ajax loaded content. Is it possible to load some content via ajax and have ‘next’ and ‘previous’ pieces of navigation within the loaded .html files?

I’m struggling to solve this so if you have any insite it would be greatly appreciated!

Thanks

amatyr4n

Hi jjensen11, theoretically yes that’s possible but requires you to code some little js :)

-amatyr4n

  • Bought between 50 and 99 items
  • Has been a member for 0-1 years

Very elementary question..

how to install this plugin?

an error message occur when uploading zip file on dashboard.

like this:

Warning: Invalid argument supplied for foreach() in /www/kyw8837.godohosting.com/wp-admin/includes/class-wp-upgrader.php on line 558

help some

amatyr4n

Hi kyw8837, you should extract it to /wp-content/plugins/ ;)

-amatyr4n

Default-user

i did it already, but it hasn’t seen plugins on dashboard.

i’ve downloaded file below

codecanyon-136839-explr-jquery-simple-tree-plugin-

and move this into the /wp-content/plugins folder after extract it

any idea of this?

thanks

amatyr4n

Oh my bad, sorry I thought you asked about my other item which is a wp plugin.. if you refer to this item you can see that this isn’t a wp plugin at all, as you can see from the category it’s a jQuery plugin ;)

-amatyr4n

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
  • United States

hey amatyr4n – i cant seem to figure out how to get hold of you.

first off, i LOVE explr – i searched high and low (and far and wide) for a decent jQ tree – your was worth 10 times what you charge. (yes i purchased)

hey – could you pls. send me your email addy – pls. write to me at mark at edwardsmark dot com – thanks.

amatyr4n

Hi Mark, thank you ;) you can reach me by email through contact form in my profile page :)

-amatyr4n

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Slovenia

Hy!

Just to let you know – the DEMO doesn’t work..

  • Bought between 10 and 49 items
  • Has been a member for 0-1 years

demo does not work

by
by
by
by
by