inherit
219426
0
Aug 13, 2015 18:33:57 GMT -8
Sinopa
26
March 2015
sinopa
|
Post by Sinopa on Mar 23, 2015 21:26:13 GMT -8
Awesome thank you so much! You should be admin now Inserted <p style="visibility:hidden;display:none" id="welcome"></p> <script> $('#welcome').html('Welcome '+pb.data('user').name+'.') </script> In your header and it seems to have fixed your problem. (And I gave my user a bajillion dollars on my account, -not that I need admin privileges to do that.) Ah! That worked! Thank you so much! But I still can't add images to the same gallery, and the edit button doesn't work, and it seems that When I click the button to create the thread I have to double click it then it takes me to a create thread form, but I can go back to the board and its there lol erm feel free to create your own gallery to see what I mean XD I'm kind of horrible at explaining things lol
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 23, 2015 22:03:19 GMT -8
Inserted <p style="visibility:hidden;display:none" id="welcome"></p> <script> $('#welcome').html('Welcome '+pb.data('user').name+'.') </script> In your header and it seems to have fixed your problem. (And I gave my user a bajillion dollars on my account, -not that I need admin privileges to do that.) Ah! That worked! Thank you so much! But I still can't add images to the same gallery, and the edit button doesn't work, and it seems that When I click the button to create the thread I have to double click it then it takes me to a create thread form, but I can go back to the board and its there lol erm feel free to create your own gallery to see what I mean XD I'm kind of horrible at explaining things lol The edit button throws an error because of double quotes in double quotes. Which is interesting that it would respond in such fashion. Usually such quotes would be alternated. I prefer to use a onclick= instead of href="javascript: Fixed that problem with code. <script>
$(document).ready(function() {
var testbut=$('a.button.edit-button')
for(zz=0;zz<testbut.length;zz++)
{if($(testbut[zz]).attr('href').indexOf('grabImageInfo')!=-1){
var temp=$(testbut[zz]).attr('href')
$(testbut[zz]).attr('href',temp.replace('"icon-twitter-circled"','\'icon-twitter-circled\''))
}
}
});
</script>
Now the edit entry button is trying to redirect the user too quickly and it alerts that ajax is still processing and I have to stay on the page or it won't update. Todge should really wait for ajaxComplete to fire before redirecting the user. What else is broken now? ( I have never used this plugin before)
|
|
inherit
219426
0
Aug 13, 2015 18:33:57 GMT -8
Sinopa
26
March 2015
sinopa
|
Post by Sinopa on Mar 23, 2015 22:08:00 GMT -8
Oh wow! You're awesome! Thanks XD The add image button, to add more posts to a single gallery like this.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 23, 2015 22:55:44 GMT -8
Oh wow! You're awesome! Thanks XD The add image button, to add more posts to a single gallery like this. Broke because of button looking for an owner name var owner = td[t].getElementsByTagName('a')[0].innerHTML; Your name is actually encapsulated with a span.name So I added if(helpingthis == pb.data('user').name){ var tempp= $('.reply-button') for(yy=0;yy<tempp.length;yy++) { if($(tempp[yy]).css('display')=="none") {$(tempp[yy]).css('display','initial') $(tempp[yy]).attr('href','javascript: goGallery();') $(tempp[yy]).html('Add Image') tempp[yy].onclick = function(){sessionStorage.gallery = 'add';}} } } }); and a footer setting helpingthis var helpingthis = $('.name').html() Is there anything else not working as intended?
|
|
inherit
219426
0
Aug 13, 2015 18:33:57 GMT -8
Sinopa
26
March 2015
sinopa
|
Post by Sinopa on Mar 23, 2015 23:08:37 GMT -8
Oh wow! You're awesome! Thanks XD The add image button, to add more posts to a single gallery like this. Broke because of button looking for an owner name var owner = td[t].getElementsByTagName('a')[0].innerHTML; Your name is actually encapsulated with a span.name So I added if(helpingthis == pb.data('user').name){ var tempp= $('.reply-button') for(yy=0;yy<tempp.length;yy++) { if($(tempp[yy]).css('display')=="none") {$(tempp[yy]).css('display','initial') $(tempp[yy]).attr('href','javascript: goGallery();') $(tempp[yy]).html('Add Image') tempp[yy].onclick = function(){sessionStorage.gallery = 'add';}} } } }); and a footer setting helpingthis var helpingthis = $('.name').html() Is there anything else not working as intended? Oh my goodness thank you so much! You are now one of my favorite people in the world lol XD I think thats all I was having trouble with. Again thank you so much for doing this
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 23, 2015 23:17:30 GMT -8
Broke because of button looking for an owner name var owner = td[t].getElementsByTagName('a')[0].innerHTML; Your name is actually encapsulated with a span.name So I added if(helpingthis == pb.data('user').name){ var tempp= $('.reply-button') for(yy=0;yy<tempp.length;yy++) { if($(tempp[yy]).css('display')=="none") {$(tempp[yy]).css('display','initial') $(tempp[yy]).attr('href','javascript: goGallery();') $(tempp[yy]).html('Add Image') tempp[yy].onclick = function(){sessionStorage.gallery = 'add';}} } } }); and a footer setting helpingthis var helpingthis = $('.name').html() Is there anything else not working as intended? Oh my goodness thank you so much! You are now one of my favorite people in the world lol XD I think thats all I was having trouble with. Again thank you so much for doing this Your welcome. Themes are as important as plugins.
|
|
inherit
211776
0
Jun 10, 2015 13:14:41 GMT -8
kalena257
15
July 2014
kalena257
|
Post by kalena257 on Mar 25, 2015 9:49:56 GMT -8
Hello! I have the same problem, some users can't see the add image button. Yesterday someone posted in one gallery from tapatalk, and the owner of that gallery couldn't add any image. I deleted the message from the view recent posts on the user profile and nothing happens, the owner of the gallery still could'n't do anything, so I uninstalled and installed again the member gallery plugin and the member gallery comment key, all worked well untill today. Now some users can't see the add image button, so i did the same, uninstall and installed both, but this time it didn't work. Any ideas? My forum: gurumilandia.proboards.com/
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 25, 2015 14:10:15 GMT -8
Hello! I have the same problem, some users can't see the add image button. Yesterday someone posted in one gallery from tapatalk, and the owner of that gallery couldn't add any image. I deleted the message from the view recent posts on the user profile and nothing happens, the owner of the gallery still could'n't do anything, so I uninstalled and installed again the member gallery plugin and the member gallery comment key, all worked well untill today. Now some users can't see the add image button, so i did the same, uninstall and installed both, but this time it didn't work. Any ideas? My forum: gurumilandia.proboards.com/Did you change your theme recently?
|
|
inherit
211776
0
Jun 10, 2015 13:14:41 GMT -8
kalena257
15
July 2014
kalena257
|
Post by kalena257 on Mar 25, 2015 15:46:30 GMT -8
No.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 26, 2015 9:47:50 GMT -8
This is one of the first plugins I did for v5, and is shortly going to be updated.. If you can wait a few days I'll move it to the top of the list and try to get it done over the coming weekend.
|
|
inherit
211776
0
Jun 10, 2015 13:14:41 GMT -8
kalena257
15
July 2014
kalena257
|
Post by kalena257 on Mar 26, 2015 15:50:51 GMT -8
ok, thank you!!
|
|
inherit
darrenelliott@hotmail.com
129389
0
Sept 3, 2024 15:23:42 GMT -8
darrenvox
212
August 2008
darrenvox
|
Post by darrenvox on Mar 27, 2015 9:00:20 GMT -8
i think member galleries could change to a upload images flash controller that allows you to upload more than one at a time...kinda like facebook alows you to do...hope that comes soon!!
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 27, 2015 14:29:51 GMT -8
i think member galleries could change to a upload images flash controller that allows you to upload more than one at a time...kinda like facebook alows you to do...hope that comes soon!! It's a post on a thread. You can't really upload multiple photos and put them on separate posts. If you want something like that, you should use a slideshow plugin.
|
|
inherit
217416
0
May 30, 2016 0:01:26 GMT -8
vodkaman
17
January 2015
vodkaman
|
Post by vodkaman on Mar 31, 2015 1:04:42 GMT -8
Semi bulk uploader
Todge - This is an idea or asuggestion based on my experience with the Gallery plugin:
My experience - I have several thousand bug images that I wish to upload. These images are in families and species and I am uploading them in batches of 15 to suit the gallery functionality.
This is an extremely tedious process and I know it cannot be automated, as different users bring images in from a variety of sources; Photobucket, Flickr etc.
My method - I have found the most efficient way, is to copy the links from the host for the batch of 15 and paste them into a notepad with a single blank line between each one. This is a fairly painless process and even allows me to check the length of the links, to make sure none are too long, which is an issue with the scientific names of the bugs.
I then move across to my website and re-copy and paste from the notepad into the gallery.
This may not be much of a time saving, but much less of a brain strain and less tedious mistakes are made.
The idea - I believe a bulk loader could be built for the second stage, from the notepad to the gallery. Also, everyone has a notepad on their windows system and I am sure MAC will have something similar.
If this second part could be automated, it would cut the upload time and effort in half. I am sure that I am not the only one with this issue and I have months of uploading ahead of me.
So, what do you think?
Dave
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 31, 2015 11:53:01 GMT -8
Semi bulk uploader Todge - This is an idea or asuggestion based on my experience with the Gallery plugin: My experience - I have several thousand bug images that I wish to upload. These images are in families and species and I am uploading them in batches of 15 to suit the gallery functionality. This is an extremely tedious process and I know it cannot be automated, as different users bring images in from a variety of sources; Photobucket, Flickr etc. My method - I have found the most efficient way, is to copy the links from the host for the batch of 15 and paste them into a notepad with a single blank line between each one. This is a fairly painless process and even allows me to check the length of the links, to make sure none are too long, which is an issue with the scientific names of the bugs. I then move across to my website and re-copy and paste from the notepad into the gallery. This may not be much of a time saving, but much less of a brain strain and less tedious mistakes are made. The idea - I believe a bulk loader could be built for the second stage, from the notepad to the gallery. Also, everyone has a notepad on their windows system and I am sure MAC will have something similar. If this second part could be automated, it would cut the upload time and effort in half. I am sure that I am not the only one with this issue and I have months of uploading ahead of me. So, what do you think? Dave Hi-ya, Unfortunately, JavaScript cannot access other programs on your computer, so there's no way a plugin can read the information from notepad and put it into posts. There is a way to have more than one image in a gallery post though... There's nothing stopping you from adding extra images in the comment field, and they would all appear one below the next, that wouyld save you having to make multiple gallery entries to pos multiple pictures.
|
|