fcitdavid
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One Video Gallery] Filter by tag on vimeo import not workingDid you receive my ticket? I have not heard back.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Styling single video pageThanks for your assistance. This pointed me in the right direction to apply the changes I needed and now I have it working properly!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Styling single video pagehttps://vetsmus.org/video/harold-joins-tank-turret-repairman/
We are displaying this on a vertical screen (portrait orientation) and it leaves a large white space below the related videos. I’d love for the header to remain where it is and the rest of the body content to be centered vertically in the remaining portion of the screen. We also need it to only affect the single video page; everything else is working great.
- This reply was modified 8 months, 1 week ago by fcitdavid.
Forum: Plugins
In reply to: [Open User Map] Customizing location bubble contents and “Read more”Thanks for the confirmation. Documentation is why I try to post my questions to the forum instead of creating a ticket when possible. I know if it helps me there may be someone else that needs the answer. 🙂
Forum: Plugins
In reply to: [Open User Map] Customizing location bubble contents and “Read more”OK, so here’s my cobbled together solution. functions.php now looks like this:
<?php
add_filter('oum_location_bubble_content', function ( $content, $location ) {
// extend or change content
$content = '';
$content .= '<div class="oum_location_text">';
$content .= $location['name'];
$content .= '<div class="oum_location_text_bottom">' . '<div class="oum_read_more"><a href="'. get_the_permalink($location['post_id']) .'">' . 'Details...' . '</a>' . '</div>';
$content .= '</div>';
return $content;
}, 10, 2);I’ve got more formatting and cleaning up to do, but it seems to be working as intended. Please tell me if there is a more elegant and/or better supported way of handling this.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Vimeo tags not importedGreat! I’ll go ahead and open a support ticket.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Display Vimeo auto generated captions by defaultWorking great with the latest update!
Forum: Plugins
In reply to: [All-in-One Video Gallery] Display Vimeo auto generated captions by defaultThe change did not seem to make a difference for me. What is the expected timeline for the next version?
I’m not comfortable sharing the url here at this time, but if this becomes more urgent I’ll open a support ticket.
Thanks.
Forum: Plugins
In reply to: [All-in-One Video Gallery] Update videos with automationFor anyone else seeing this, I found that if I delete the video in question and then re-run the automation it will not re-import the video. The workaround is to create a new automation with the same settings and run that. It will re-import any videos that you have deleted with the changes from Vimeo.
Forum: Themes and Templates
In reply to: [OceanWP] Tagline in custom header?That code works great!
I haven’t published the site yet, so I don’t have a URL I can share, but your code above is providing exactly what I wanted.
Thanks!