antonyvk
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Reviews] Feature Ideas?Hi !
Is there any feature to report abuses when the admin approval is set to No ?
Could be very useful 🙂Thanks !
Forum: Plugins
In reply to: [WP Photo Album Plus] Display sub-album in modal boxNo problem !
In wppa-functions.php, line 2954 :
wppa_out( '<div id="wppa-modal-container-'.wppa( 'mocc' ).'"></div><div' .
In wppa-ajax-front.min.js, line 9 (equiv near line 50 in dev file) :
else{var opt={modal:true,width:1300};jQuery('#wppa-modal-container-'+mocc).html(result).dialog(opt).dialog("open");}That’s all folks ! 😀
Forum: Plugins
In reply to: [WP Photo Album Plus] Display sub-album in modal boxI didn’t find my graal in Table VI, but I found a solution with the jQuery dialog() function and adding a modal container in the container function. Please let’s have a look at the link sent in a previous reply, perhaps there’s good way to render similar with only good usage of settings 🙂
Forum: Plugins
In reply to: [WP Photo Album Plus] Display sub-album in modal boxAnyone I let try to use didn’t understand they have to click on the breadcrumb to come back up in the album hierarchy… So I try to open albums in a modal box (like on TripAdvisor)
Forum: Plugins
In reply to: [WP Photo Album Plus] Display sub-album in modal boxI found some idea with the wppaRenderAdd variable in wppa-ajax-front.js, but it’s not very easy…
Work in progress here : http://avis.visual-k.fr/item/saint-cyprien-66750/
Now I have a modal with sub-album view, but when I click to open in the slideshow it goes back to the main window :/Forum: Plugins
In reply to: [WP Photo Album Plus] Coverphoto sizeI see Table 1-D7, but for vertical images it will not fit the same width as horizontal images, so any background effect will look quite ugly.
I found a css solution for my customization, and I also discovered that Table 1-C2 “square clipped” has effect on my covers 😉closed ! 😀
Forum: Plugins
In reply to: [WP Photo Album Plus] Coverphoto sizeI see it’s possible to generate squarred thumbnails, but not available for covers, so if I want to display squarred covers (for example with centered view, all in 200×200) made from horizontal and vertical photos, I need the smallest border to be at 200px. For the moment it’s allways the largest, so it could be useful to add a select-box in settings to choose which border is set to the size defined in 1.D.5. This example is for covers, but I see it’s the same empiric rule for thumbnails size.
My IP address is blocked, I can’t login :s
It looks working fine for the moment when I try with 2 granted albums. Combinated with category filter the result is very good as I’m able to display the complete album created in each post, and then I can re-display it later in the same post in a simpler way with users separated sub-albums to highlight them 🙂
Could you say me if it’s possible to override some configurations when I use shortcode ? I’d like to sometimes call a very simple slideshow (with ugly browse buttons, no comment, no breadcrumb, no rating, etc…) and some other times display some of these functions. Is there any shortcode attributes for all of this ? (rating=1, ugly_browse_button=0 etc…)
If not, I will create a new post for asking you this feature 😀Forum: Plugins
In reply to: [WP Photo Album Plus] Front End Uploader – Show Div Box By DefaultThanks for this tip ! I just tried and completed with all the content of the upload onclick function.
As I’m a bit more violent in my code, I use this :<script type="text/javascript" > jQuery(function($){ $( document ).ready(function() { $( '[id^=wppa-file-]' ).css( 'display','block' ); $( '[id^=wppa-up-]' ).css( 'display','none' ); $( '[id^=wppa-cr-]' ).css( 'display','none' ); $( '[id^=wppa-ea-]' ).css( 'display','none' ); $( '[id^=wppa-cats-]' ).css( 'display','none' ); $( '[id^=_wppa-up-]' ).css( 'display','none' ); _wppaDoAutocol( 2 ); }); }) </script>I disabled the ‘close’ button because my upload shortcode is called in a modal div, so I don’t need 2 ‘close’ buttons.
First tests looks working fine, I think I will need a couple of days to try it more. Perhaps an unwanted effect could be the automatic creation of user sub-album in unvisited album posts. I mean album 3 contains user sub-albums even if I didn’t visit the page containing it. I suppose the sub-album creation is made when a user visit any of granted albums, and it’s made for all granted albums checked in the multiselect list. It’s quite dangerous with thousands granted albums and probably be safe to create sub-album of current granted only when the upload function is called.
I’m not very good in english but I think you perfectly understand what I’m looking to do.
In details : I have several posts. In each of them I have to provide a “public” album where users can upload photos (to illustrate the post). But I want to display users photos separated by user sub-album. So it probably needs to grant each “public album” to permit upload in users separated sub-album.