Strange:
On page 1900-1909:
– You run 7.7.02.002, see the page source (wppa-api-7.7.02.002):
<div id="wppa-container-2" style="width:100%;padding:0;position:relative;" class="wppa-container wppa-container-2 wppa-rev-7701 wppa-prevrev-7610 wppa-theme-7.3.11.002 wppa-api-7.7.02.002" >
– The page source also says:
<span class="wppa-cover-pcount" >(5)</span></h2>
– while wppa-album-covers.php of version 7.7.02.002 says:
<span
class="wppa-cover-pcount"
style="cursor:pointer;"
title="' . esc_attr( __( 'Number of items', 'wp-photo-album-plus' ) ) . '"
>
(' . $cnt . ')
</span>
and the </h2>
is also before the <span>
tag
Where is my pointer cursor and the title?
The only location where wppa-cover-pcount
occurs in the entire plugin is in wppa-album-covers.php in function wppa_the_album_title()
It looks that all the other pages are still being created by an older version of wppa-album-covers.php. The last version where no pointercursor and no title was given here is 7.7.02.001. This is also the last version where the </h2>
is after the <span>
.
The first page (1830-1899) shows it correctly.
So?