-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #259 from wikitongues/main
Staging Deployment
- Loading branch information
Showing
18 changed files
with
245 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 0 additions & 108 deletions
108
wp-content/themes/blankslate-child/acf-json/group_66f52c6b91b45.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 26 additions & 17 deletions
43
wp-content/themes/blankslate-child/modules/main-content--archive-success.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
<div class="wt_archive__faq"> | ||
<h1>Frequently Asked Questions</h1> | ||
<section> | ||
<article> | ||
<p><strong>When will my video by available on the website?</strong><br> | ||
We typically archive videos within one week of submission. You will receive an email when your video has been archived. After that, your video should be viewable on the website within 24-48 hours!</p> | ||
</article> | ||
<article> | ||
<p><strong>Will my video by published on YouTube?</strong><br> | ||
All videos are added to our website, but not all are added to our YouTube channel. We prioritize videos that have good audio quality and limited background noise.</p> | ||
</article> | ||
<article> | ||
<p><strong>Can I change my video information after submission?</strong><br> | ||
Yes, if you would like to change your licensing selection or submit subtitles for your video, please send us an email at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
</article> | ||
</section> | ||
</div> | ||
<?php | ||
if (have_rows('custom_faq_posts')) { | ||
echo '<div class="wt_archive__faq">'; | ||
echo '<h1>Frequently Asked Questions</h1>'; | ||
echo '<ul>'; | ||
while (have_rows('custom_faq_posts')) { | ||
the_row(); | ||
$custom_posts = get_sub_field('custom_gallery_post'); | ||
|
||
if ($custom_posts) { | ||
foreach ($custom_posts as $post) { | ||
setup_postdata($post); | ||
|
||
echo '<li>'; | ||
echo '<h2>'.esc_html(get_the_title($post)).'</h2>'; | ||
echo '<p>'.apply_filters('the_content', get_the_content($post)).'</p>'; | ||
echo '</li>'; | ||
} | ||
|
||
wp_reset_postdata(); | ||
} | ||
} | ||
echo '</ul>'; | ||
echo '</div>'; | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,4 +71,5 @@ | |
endwhile; | ||
endif; | ||
|
||
include('modules/newsletter.php'); | ||
get_footer(); |
Oops, something went wrong.