robertallen
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Keap Feed] Questions and IssuesHow do I have more than one unconditional API goal?
I have a Conditional setup where the API tags the user, but the problem is, if I have anything in the unconditional field, they wind up in that sequence as well. Hope that makes sense.
Forum: Plugins
In reply to: [Gravity Forms Keap Feed] Questions and IssuesAwesome! Will give it a shot, thank you so much!
I don’t know if this helps but if you’re using WP Engine turning off Object Caching on WP Engine’s side helped clear this error up. Also deleting Autooptimize cache as well helps to solve the problem.
please disregard. For some reason it only happens on my local dev environment and not on Staging. Thank you much Darren!
Hi Darren,
Thank you for your support on this matter. I wasn’t able to get it to work for some reason, so I decided to go ahead and use my own CSS, which does the trick.
The only other problem I’m facing now is when you click the Load More button it jumps to the bottom of the page.
Sure! It’s https://clinc.staging.wpengine.com/press/
Forum: Plugins
In reply to: [Eventbrite API] Only showing one event on pageAnyone figure this out? I can’t buy Import Eventbrite Events plugin and need this to work.
Forum: Plugins
In reply to: [WP Popular Posts] Display Custom Post Type in OutputResolved, thank you very much.
Forum: Plugins
In reply to: [WP Popular Posts] Display Custom Post Type in Output/**
* Parses custom content tags in WordPress Popular Posts.
*
* @param string $html The HTML markup from the plugin.
* @param integer $post_id The post/page ID.
* @return string
*/
function wpp_parse_tags_in_popular_posts( $html, $post_id ){// Replace custom content tag {post_type} with the actual post type
if ( false !== strpos($html, ‘{post_type}’) ) {
// Get post type
// $post_type_label = $post_type->labels->singular_name;
$post_type = get_post_type( $post_id );
$post_type_labels = get_post_type_object( $post_type );
$post_type_label = $post_type_labels->labels->singular_name;if ( $post_type_label ) {
$html = str_replace( ‘{post_type}’, $post_type_label, $html );
}
}return $html;
}
add_filter( “wpp_parse_custom_content_tags”, “wpp_parse_tags_in_popular_posts”, 10, 2 );Forum: Plugins
In reply to: [WP Popular Posts] Display Custom Post Type in OutputAwesome, thank you. I just need to figure out how to echo the name of the post type instead of the post type slug itself. Appreciate it.
Forum: Plugins
In reply to: [The Events Calendar] Importing from a CSV file renders dates January 1, 1970Sure, here you go.
Forum: Plugins
In reply to: [Max Mega Menu] How to get the Styles to ShowI’m sorry Tom. I should have updated this thread. I figured out the theme was missing the wp_head(); component. Thank you for such a quick reply.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Shortcode and Advanced Custom Field?My apologies for that paragraph. The Twig stuff is new to me.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Shortcode and Advanced Custom Field?Oh no, I meant Twig documentation, not yours.
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Form is MissingPlease disregard. I figured it out.