harukochi
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Custom Login] Two login IDs and two passwordsThank you for your quick response.
I saw that the demo site has been modified.
I upgraded the plug-in of my site to 2.9.9 and confirmed that it was fixed.Forum: Plugins
In reply to: [Admin Custom Login] Two login IDs and two passwordsThe installed plugin version is 2.5.5.
- This reply was modified 6 years, 5 months ago by harukochi.
Forum: Plugins
In reply to: [Album Gallery for Flickr] All my gallaries are lostOK.
It is troublesome, but I will save it again.Forum: Plugins
In reply to: [Album Gallery for Flickr] All my gallaries are lostThank you for your response.
Currently, I can display old galleries, but galleries created with new version will result in “Error generating gallery” error. I hope to correspond to both.Forum: Plugins
In reply to: [Album Gallery for Flickr] All my gallaries are lostFirst Aid:
flickr-album-gallery.php line 410
if(isset($FAG_Settings[0][‘FAG_API_KEY’]) && $FAG_Settings[0][‘FAG_Album
_ID’]) {
$FAG_API_KEY = $FAG_Settings[0][‘FAG_API_KEY’];
$FAG_Album_ID = $FAG_Settings[0][‘FAG_Album_ID’];
}else if(isset($FAG_Settings[0][‘fag_api_key’]) && $FAG_Settings[0][‘fag
_album_id’]) {
$FAG_API_KEY = $FAG_Settings[0][‘fag_api_key’];
$FAG_Album_ID = $FAG_Settings[0][‘fag_album_id’];
}flickr-album-gallery-short-code.php line 36
$FAG_API_KEY = “e54499be5aedef32dccbf89df9eaf921”;
if(isset($FAG_Album[‘FAG_API_KEY’])){
$FAG_API_KEY = $FAG_Album[‘FAG_API_KEY’];
}else if(isset($FAG_Album[‘fag_api_key’])){
$FAG_API_KEY = $FAG_Album[‘fag_api_key’];
}
$Fag_Album_ID = “72157701549172155”;
if(isset($FAG_Album[‘FAG_Album_ID’])){
$FAG_Album_ID = $FAG_Album[‘FAG_Album_ID’];
}else if(isset($FAG_Album[‘fag_album_id’])){
$FAG_Album_ID = $FAG_Album[‘fag_album_id’];
}Forum: Plugins
In reply to: [Album Gallery for Flickr] All my gallaries are lostThank you for your reply.
The field name for storing the album ID in the previous fag_setting was lowercase fag_album_id, but in the new version it is FAG_Album_ID.
In the flickr-album-gallery-sort-code.php, since $ FAG_Album [‘FAG_Album_ID’] is written, I think that can not read the album ID of old data.
In order to solve, I think that it is necessary to upgrade the version which can read the old lower case fag_album_id.- This reply was modified 7 years, 6 months ago by harukochi.
Forum: Plugins
In reply to: [Album Gallery for Flickr] AMP SupportHi,
Thank you for your great reply,
I think there may be other problems on this page.
I will continue trial and error.
Thanks.Forum: Plugins
In reply to: [Album Gallery for Flickr] AMP SupportHi,
Thank you for your reply, and sorry for my response later.I want to use ‘Better AMP’,
https://wordpress.org/plugins/better-amp/Thanks
Forum: Plugins
In reply to: [Collapsing Categories] Excluding Some Categories are not worked.I tried the fix.
*** collapscatlist.php.org 2017-11-07 17:04:32.612482622 +0900
— collapscatlist.php 2017-11-08 09:44:52.049565177 +0900
***************
*** 379,385 ****
}
}
}
! for ($i=0; $i<count($categories); $i++) {
if ($inExclude==’exclude’ && !empty($inExclusionArray)) {
if (in_array($categories[$i]->slug, $inExclusionArray) OR
in_array($categories[$i]->term_id, $inExclusionArray)) {
— 379,387 —-
}
}
}
!
! $categories = array_values($categories);
! for ($i=(count($categories)-1); $i>=0; $i–) {
if ($inExclude==’exclude’ && !empty($inExclusionArray)) {
if (in_array($categories[$i]->slug, $inExclusionArray) OR
in_array($categories[$i]->term_id, $inExclusionArray)) {