Vor Kurzem aufgerufene Suchen
Keine vor kurzem aufgerufene Suchen

Greg Pope
Beigetreten 15. Apr. 2021
·
Letzte Aktivität 02. Nov. 2021
Folge ich
0
Follower
0
Gesamtaktivitäten
36
Stimmen
5
Abonnements
18
AKTIVITÄTSÜBERSICHT
BADGES
BEITRÄGE
POSTS
COMMUNITY-KOMMENTARE
BEITRAGSKOMMENTARE
AKTIVITÄTSÜBERSICHT
Neueste Aktivität von Greg Pope
Greg Pope hat einen Kommentar hinterlassen
Hi Patrick. That worked and we were able to download the backup. Thank you. We look forward to testing the import app too.
Kommentar anzeigen · Gepostet 10. Aug. 2017 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
Hi Patrick. I started a backup on 7/28 but the app says it's still "IN PROGRESS" so I assume it got hung up somewhere. Our HC is private, does that matter? Any other ideas?
Kommentar anzeigen · Gepostet 01. Aug. 2017 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
+1
Kommentar anzeigen · Gepostet 21. März 2017 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
+1
We need the reason placeholder for the exact same use case (a bad rating triggered email).
Kommentar anzeigen · Gepostet 27. Sept. 2016 · Greg Pope
0
Follower
1
Stimme
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
We need this too.
Kommentar anzeigen · Gepostet 05. Aug. 2015 · Greg Pope
0
Follower
2
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
Only that the ones with over 6 articles are still two separate links (although you almost can't tell now that they're side by side, both going to the correct url, and I've changed the Morelink's class to "see-all-articles" instead of the default "moreTopics" so they look the same). This basically works.
Kommentar anzeigen · Gepostet 24. Juli 2015 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
Thanks Wes. I switched back to the code at the top of this page and made sure our other js wasn't interfering, and that helped a little bit more (screenshot below). This might work in the meantime while they're looking into it. I'm using the Swiftest Elk theme and I've also started a ticket with Zendesk, #1173791 if they need reference. Really appreciate your help.
Kommentar anzeigen · Gepostet 24. Juli 2015 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
I'm still getting duplicate links, but now they're side by side which is better.
Kommentar anzeigen · Gepostet 23. Juli 2015 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
Thanks for the suggestion Frank, but nope. This is what I got when I tried:
For some reason the count caps out at 6, too.
Kommentar anzeigen · Gepostet 22. Juli 2015 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare
Greg Pope hat einen Kommentar hinterlassen
I'm also having trouble with a double link after limiting our displayed articles to 3 and adding the More... link. Has anyone found a way to take out the default "See all...articles" link? The trouble I had with using that was it wouldn't show up for sections that had more than 3 articles but less than 6.
Here is my js:
$(document).ready(function() {
if( document.location.href.indexOf('section') == -1 ) {
var categories = $('ul.article-list');
for (var j = categories.length - 1; j >= 0; j--) {
var articles = $(categories[j]).find('li');
if ( articles.length > 3 ) {
for (var k = 3; k < articles.length; k++ ) {
$(articles[k]).hide();
}
var moreLink = $(categories[j]).parent().find('h3 a').attr('href');
$("More...").insertAfter($(categories[j]));
}
}
}
Kommentar anzeigen · Gepostet 21. Juli 2015 · Greg Pope
0
Follower
0
Stimmen
0
Kommentare