rbarron
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Timeout When Accessing SettingsPERFECT, thank you Jacob!!
Forum: Plugins
In reply to: [WP Photo Album Plus] Timeout When Accessing SettingsThe child site has 6 pages and 2 posts.
Seeking to use the photo specific URL for a photo within a slide show.
Thank you for the prompt reply Jacob.
Forum: Plugins
In reply to: [WP Photo Album Plus] Unable to Create Albums in SubdomainsFABULOUS, thank you Jacob.
Forum: Plugins
In reply to: [WP Photo Album Plus] Unable to Create Albums in SubdomainsGREAT news, thank you!!
Forum: Plugins
In reply to: [WP Photo Album Plus] Unable to Create Albums in SubdomainsJacob,
Child creation works, WPPA_ALBUMS setting is correct.
….. Rick
Forum: Plugins
In reply to: [WP Photo Album Plus] Unable to Create Albums in SubdomainsHere’s what I’m seeing – https://www.loom.com/share/903ef6d813be40beb89727927963e516
Forum: Plugins
In reply to: [WP Photo Album Plus] Unable to Create Albums in SubdomainsJacob,
Appreciate the prompt reply. wp-config includes
define( ‘WPPA_MULTISITE_INDIVIDUAL’, true );
There’s never been an issue like this before, I’ve got countless albums within each multisite.
…. Rick
Forum: Plugins
In reply to: [WooCommerce] Variable Product Price & Sign-up FeeThank you Margaret for the prompt reply.
I’m familiar with creating a short code, I’m seeking detailing on how to reference the price and sign-up fee fields.
….. Rick
Appreciate the prompt response.
Your test worked!
It only works with the gravity forms shortcodes WHEN the message option is included (even if the message is empty).
Appreciate the help, thank you.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] html in Tooltip TextFABULOUS, thank you. Switching the paragraph tags did the trick. Appreciate the awesome support.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] html in Tooltip TextThank you @oerdi for the reply. Trying to do this:
[su_tooltip title=”Learn More About MaxMyBrand” text=”
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Phasellus nunc lectus, placerat vitae efficitur fringilla, gravida et libero.
- Vivamus in eros sed enim lobortis congue. Interdum et malesuada fames ac ante ipsum primis in faucibus. Etiam eu tempor nisi.
- Donec in tellus congue augue tristique fermentum sed dictum est. Donec pharetra placerat odio, quis placerat est.
- Phasellus convallis tempor odio ac elementum. Nam ex enim, maximus a dignissim laoreet, euismod sed ex. Aenean elementum dignissim sapien non pellentesque. Phasellus eget ipsum dui.
” position=”top” background=”#222222″ color=”#FFFFFF” font_size=”16″ text_align=”left” max_width=”300″ radius=”5″ shadow=”no” behavior=”hover” class=”” outline=”yes” tabindex=”yes” reference_tag=”span” hide_delay=”0″]Learn More[/su_tooltip]
but you can see from https://maxpotentialu.com/ in the MaxMyBrand copy it’s not working. Any ideas?
Will do, thank you.
Appreciate the reply. Here’s the code we were given for use in the child theme functions.php to populate the alt tag that’s no longer working when using optimole. Appreciate any suggestions to customize for use with optimole.
/* Fetch image alt text from media library */ function get_image_alt_text($image_url) { if ( ! $image_url ) return ''; if ( '/' === $image_url[0] ) $post_id = attachment_url_to_postid(home_url() . $image_url); else $post_id = attachment_url_to_postid($image_url); $alt_text = get_post_meta($post_id, '_wp_attachment_image_alt', true); if ( '' === $alt_text ) $alt_text = get_the_title($post_id); return $alt_text; } /* Update image alt text in module properties */ function update_module_alt_text( $attrs, $unprocessed_attrs, $slug ) { if ( ( $slug === 'et_pb_image' || $slug === 'et_pb_fullwidth_image' ) && '' === $attrs['alt'] ) $attrs['alt'] = get_image_alt_text($attrs['src']); elseif ( $slug === 'et_pb_blurb' && 'off' === $attrs['use_icon'] && '' === $attrs['alt'] ) $attrs['alt'] = get_image_alt_text($attrs['image']); elseif ( $slug === 'et_pb_slide' && '' !== $attrs['image'] && '' === $attrs['image_alt'] ) $attrs['image_alt'] = get_image_alt_text($attrs['image']); elseif ( $slug === 'et_pb_fullwidth_header' ) { if ( '' !== $attrs['logo_image_url'] && '' === $attrs['logo_alt_text'] ) $attrs['logo_alt_text'] = get_image_alt_text($attrs['logo_image_url']); if ( '' !== $attrs['header_image_url'] && '' === $attrs['image_alt_text'] ) $attrs['image_alt_text'] = get_image_alt_text($attrs['header_image_url']); } return $attrs; } /* Add Filter to Include Alt Text from Media Library */ add_filter( 'et_pb_module_shortcode_attributes', 'update_module_alt_text', 20, 3 );
Team members have disappeared again after exporting and importing. Please advise on how to get them back. The short code displays them fine, no way to edit.
Tag Manager does the trick using the Element Visibility Trigger for div.awsm-application-message.awsm-success-message.
….. Rick