bodzio16
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Not working after last updateTested! Works fine now.
Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Not working after last update1. New post (custom post type)
2. I paste whole URL to YT into textarea.
3. Save as a preview (don’t know how it is translated into english in the english translation).
4. Before – now I had the image ready to go, now – nothing.
5. Now I deleted the URL from the post, because I needed the image there, not the URL or pasted video, only image.
6. Publish.Forum: Plugins
In reply to: [WP Photo Album Plus] Buttons in album edittingWorks like a charm!
Forum: Plugins
In reply to: [WP Photo Album Plus] StatisticsChecked, when you are deep in few albums is won’t show on the cover the number of childalbums in the child album, only number of total photos in all childalbums.
Forum: Plugins
In reply to: [WP Photo Album Plus] StatisticsI can’t think of the shortcode for the photo to open in a lightbox…
That is not possible. Lightbox can only be opened by a click on an image.
Yes, but what shortcode has a link to do so? “photo”? “mphoto”? Can’t get it working.
Forum: Plugins
In reply to: [WP Photo Album Plus] Statistics1) Did the trick! I confused the categories with albums, but I changed the function, and added the proper plurar / singlurar “photo / photos” funtion. Thanks!
2) Did the trick, but I can’t think of the shortcode for the photo to open in a lightbox…
3) I confused the categories with albums. OK, it works when “detailed” is chosen, but then it says like “View 17 albums (448) and 0 photos (8690)” And I would like to show “View TOTAL albums and TOTAL photos”. When changed to “totals only” it shows the totals in the parent album, but in the subsubalbum it shows ONLY the total of photos in all cildren even when it has few albums in it.Forum: Plugins
In reply to: [WP Photo Album Plus] Latest photo – latest albumWorks fine, but the cursor in not the hand pointer, can I edit it somewhere in css?
Also, is there a way to get the last modified category name?
Forum: Plugins
In reply to: [WP Photo Album Plus] Latest photo – latest albumhttps://www.bonjovi.pl/galeria/
https://www.dropbox.com/s/bcdijukh9vgmuq8/Schowek02.jpg?dl=0
<?php if ( function_exists( 'wppa_get_random_photo_id_from_youngest_album' ) ) { $photo = wppa_get_random_photo_id_from_youngest_album(); if ( $photo ) { echo wppa_insert_shortcode_output( do_shortcode( '[wppa type="mphoto" photo="' . $photo . '" size="250" align="right"][/wppa]' ) ); } } ?>
It gives a link in the code, but it is not clickable. Maybe it can’t be a self landing page?
Forum: Plugins
In reply to: [WP Photo Album Plus] Latest photo – latest albumI did change the link type, made the anding page, but still the image is not linked.Tried with single photo, mphoto etc.
Forum: Plugins
In reply to: [WP Photo Album Plus] Latest photo – latest albumI am trying to work this out to make the photo to be a link to the album itself. I tried the generator, but with no results. Any hints? ??
Forum: Plugins
In reply to: [WP Photo Album Plus] Latest photo – latest albumThanks, will check it ASAP.
Forum: Plugins
In reply to: [Video Thumbnails] No video thumbnail for this postSolved, added ‘#([A-Za-z0-9\-_]+)#’ to the youtube regex.
Forum: Plugins
In reply to: [Video Thumbnails] No video thumbnail for this postChecked if works with the code within the content. IT DOES! So it can’t somehow take the YT video ID from a custom field. How I can debug this, it worked before, and the theme wasn’t updated…
- This reply was modified 8 years, 5 months ago by bodzio16.
Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Custom fieldsI have Youtube video ID stored in a custom field “video_id” and only in a custom post type “videos”. I want to get the ID from there.
So I want to use a custom field to store the video URL and grab the image from there, to be set as the featured image.
Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Custom fieldsMaybe instead of $content and looking for a youtube match it is possible just to check for a youtube ID in a video_id field, and at the beggining checking is the post type is “videos”. Can you help me with this?