lov4mu6
Forum Replies Created
-
Yes, that must be the case. This was resolved by adding the following code to functions.php in the child theme:
function my_remove_event_edit_post_link_for_guests( $link ) {
// Define the array of post types you want to target (reference the CPT(Single) value under archetype events)
$target_post_types = array(
'CPT(Single)-Archetype-1', 'CPT(Single)-Archetype-2'
);
// 1. Proceed only if the user is NOT logged in
if ( ! is_user_logged_in() ) {
// 2. Get the current post object
$post = get_post();
// 3. Check if we have a post AND if its post type is in our array
if ( $post && in_array( $post->post_type, $target_post_types, true ) ) {
return ''; // Remove the link by returning an empty string
}
}
// For all other cases (logged-in user, or non-targeted post type), return the link as normal.
return $link;
}
add_filter( 'edit_post_link', 'my_remove_event_edit_post_link_for_guests' );Reached out to the bSlider team and the issue is now resolved. Thanks!
looks like resolved on it’s own. Thanks!
Got it, thanks!
yep, confirming that I am already using the latest (14.12.1)
Thanks!
Hi Matthew,
I noticed that “Query Parameter: All” button at the top-right of the screen is frozen due to being a premium feature. Does that mean that only the premium version will analyze UTM parameters? As it stands now, the UTM is not being picked up by the plugin. All looks good under Settings -> “URL Query Parameters”
Thanks!
Thank you! Another question: Is UTM tracking feature still in development?
I use two feed URLs from the same google calendar. Here is live version:
http://sungatescenter.com/sungates-radio/Feed 1:
[if-now] <b>Now Playing: </b><br /><br /> [event-title] [/if-now] [if-not-started] [event-title] <br /><br /> <b>Please tune in on:<br /> [start-date] at [start-time] </b> [/if-not-started]Feed 2:
[if-not-ended] <div class="gce-list-event gce-tooltip-event">[event-title]</div> <div> <span>Starts:</span> [start-date] - [start-time] <span>Duration:</span> [length] </div> <div> <BR /> <span>Description:</span> [description html="true"] <BR /> <BR /> </div> [/if-not-ended]thank you for a great product!