laukejas
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Social Comments - Email Notification & Lazy Load] Logging InHaving same issue here. Solution is required ASAP.
Ben, thank you very much for taking the time to write that code. I am fairly familiar with PHP and CSS, but I haven’t done any Javascript. Would you be so kind to explain the usage of the script you wrote? Where do I insert it? How do I use it?
hannah, Ben, thank you for replying. What are some other ways to produce links to these sub-tabs? Our company is considering going premium with Kadence, but we absolutely need functionality like this on our website.
Forum: Plugins
In reply to: [The Events Calendar] Block Editor not workingI have the exact same issue as @rkwp. Block Editor is checked in the Events Calendar settings. Disabling Events Calendar Shortcode doesn’t fix it, and disabling other plugins doesn’t help it either. It used to work before the 5.0 version. Please help!
Forum: Plugins
In reply to: [WP Post Popup] My theme is overriding WP Post Popup stylingYes. I had to deactivate and reactivate it again – doing so fixed the problem. Not sure why. Thanks.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Support to the Events Calendar (renewed)The Onepress theme that my website does indeed call bcn_display() in themes\onepress\includes\template-tags.php:
/** * Breadcrumb NavXT Compatibility. */ function onepress_breadcrumb( $post_id = null ) { if ( ! $post_id ) { if ( is_page() ) { $post_id = get_the_ID(); } } if ( $post_id ) { if ( get_post_meta( $post_id, '_hide_breadcrumb', true ) ) { return; } } if ( function_exists( 'bcn_display' ) ) { ?> <div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/"> <div class="container"> <?php bcn_display(); ?> </div> </div> <?php } else if ( function_exists('yoast_breadcrumb') ) { ?> <div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/"> <div class="container"> <?php yoast_breadcrumb(); ?> </div> </div> <?php } }
The code seems logical, and the comment suggests this function was specifically made to support Breadcrumb NavXT. Can you spot why wouldn’t it be working on single event pages?
P.S. Using Query Monitor, I confirmed that this is indeed the theme that is used to display these single event pages.
- This reply was modified 5 years, 1 month ago by laukejas.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Support to the Events Calendar (renewed)Could you please tell me how to check if these single event pages are calling Breadcrumb NavXT?
@morganhvidt , thank you for such quick response! Your plugin works perfectly now. Keep up the awesome work!
Thank you for replying so quickly. I am aware of these publishing methods, but we need to publish to Facebook Events on our Page. Is that possible with WP2Social, or do we need another product of yours?
Forum: Networking WordPress
In reply to: Global, single-style menu for multisite WordPress installationThat’s the idea. Menu would stored on the main site, and the sub sites would pull the menu from the main site. The plugin I mentioned does exactly that, but it’s not very well implemented.