Forum Replies Created
-
AuthorPosts
-
October 27, 2022 at 4:49 pm in reply to: Image with Hotspots – Disable Tooltip when Hotspot Link is present #1370473
Close it.
October 26, 2022 at 5:21 pm in reply to: Image with Hotspots – Disable Tooltip when Hotspot Link is present #1370374Yes, I think this will work. Thank you.
October 25, 2022 at 8:01 pm in reply to: Image with Hotspots – Disable Tooltip when Hotspot Link is present #1370236Thanks for the quick reply. I don’t think I’ve described this well enough; let me try again. On mobile/tablet, pressing a hotspot initiates the tooltip. I want to initiate the hotspot link. The user has to click on a hotspot three times to initiate the Hotspot Link. The first tap shows the tooltip, the second tap does nothing, the third tap opens the hotspot link.
Thank you for your reply. I wasn’t able to get it to recognize that it was on an Events page. For instance, this didn’t trigger:
function event_rsvp() { if ( tribe_is_event() ) { echo 'Single event page'; } else { echo 'Not an events page'; // shows up on single Posts } } add_action('ava_after_content', 'event_rsvp');
But I did find how to deactivate the Enfold version, and I’ll just update the native plugin theme files:
add_theme_support( 'deactivate_tribe_events_calendar' );
Close it. Thank you.
*facepalm*
April 22, 2019 at 6:07 pm in reply to: Testimonial (Large) to display full width one at a time. #1093383I am the freelancer hired to do this. Thanks anyway.
April 18, 2019 at 4:48 am in reply to: Testimonial (Large) to display full width one at a time. #1092233I put it at the top of this staging site: http://smallgiants18.staging.wpengine.com/virtual-peer-groups/. (hosted on WPengine) I have them full width with CSS, but they’re both displaying on top of each other, and then one at a time. I had this before a theme update by modifying the testimonials.php shortcode but can’t for the life of me remember how.
I’m happy to undo all these styles if they’re getting in the way if I can just find out how to display one large testimonial at a time.
June 29, 2018 at 7:28 pm in reply to: Custom Post Type – Advanced Layout Builder – Spinning Wheel of Death #979446Huzzah! I had tried both “case-study” and “Case Study”, and when the latter *sorta* worked, I didn’t think to try “casestudy.” You’re the master!
June 29, 2018 at 6:48 pm in reply to: Custom Post Type – Advanced Layout Builder – Spinning Wheel of Death #979433Yes, I have this in my child functions.php. The Builder appears, I can add content, but when I save I get the spinny wheel. And the content does not display on the front-end.
/* Add Advanced Layout Builder to Case Studies */
add_filter(‘avf_builder_boxes’, ‘add_builder_to_posttype’);function add_builder_to_posttype($metabox)
{
foreach($metabox as &$meta)
{
if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘layout’)
{
$meta[‘page’][] = ‘Case Study’; /*instead add the name of the custom post type here*/
}
}return $metabox;
}what version of PHP are you on? I just noticed my client was on 5.3. Updated to 7.0 and we’re up and running again.
- This reply was modified 6 years, 6 months ago by armourcreative.
Ditto.
-
AuthorPosts