markduffie
Forum Replies Created
-
In my CSS, in one of the @media sections, I had a line that set the TH to display:block. I commented that line out, and the calendar displays correctly now. I am looking to see if it broke anything else in my theme. Otherwise, I think I figured it out myself.
Thanks!
I updated to Press Permit since they don’t support this one anymore, and my issue went away.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkEureka! Updating to Press Permit Pro, and getting rid of Role Scoper fixed my issue. It wasn’t a relevanssi issue at all. Just make a note that others that try to use role scoper and relevanssi might run into issues.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkI am upgrading from their role scoper plugin to their newer Press Permit plugin to see if that resolves my issue.
I know this is a month old already, but I am having this same issue. I have am trying to use relevanssi for searching, and this plugin breaks it.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkAhh… figures. It isn’t that searches work inside either. It only works when I’m logged in. Other people have search issues when they aren’t logged in an account. At least I am narrowing it down.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkOk. I have no idea why still, but when I disable the plugin ‘Role Scoper’, relevanssi works for the outside world.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkwell the website is http://www.cctech.edu. I switched to a different search plugin to see if it would work, and it does both internally and externally. I just lose the nifty custom weight system of relevanssi. I might just have to go that route short term until I can spend more time with this. Thanks for your quick responses though.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkWe have customized our theme a lot, but it is based off the twentyfourteen theme.
<?php /** * The template for displaying Search Results pages * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <section id="content"> <!-- Page Heading --> <section class="section page-heading animate-onscroll"> <small><?php breadcrumb_trail(array('section' => 'program')) ?></small> </section> <!-- Page Heading --> <!-- Section --> <section class="section full-width-bg gray-bg"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 animate-onscroll"> <?php if ( have_posts() ) : ?> <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1> <?php // Start the Loop. while ( have_posts() ) : the_post(); /* * Include the post format-specific template for the content. If you want to * use this in a child theme, then include a file called called content-___.php * (where ___ is the post format) and that will be used instead. */ echo '<div class="searchitem"> <h2><a href="'.get_the_permalink().'">'.get_the_title().'</a></h2>'; the_excerpt(); echo '</div>'; endwhile; // Previous/next post navigation. twentyfourteen_paging_nav(); else : // If no content, include the "No posts found" template. get_template_part( 'content', 'none' ); endif; ?> </div> </div> </section> <!-- /Section --> </section> <?php get_footer();Forum: Plugins
In reply to: [Relevanssi - A Better Search] Relevanssi not working outside of my networkI need to use something like relevanssi because it can search custom post types. There shouldn’t be a difference between internal and external searches. I have some custome posts types for course catalogs that I want to be able to search in for example. I don’t know how I would even check for a difference in internal vs. external search. From my computer inside our network, I will search for the word test(I’m am trying to set this website for a college), and it should bring up a bunch of results within the course catalog which it does. When I try it from my home computer, or my phone for example, it just gives me a screen saying no results found.
If I disable Relevanssi and do a search, the built-in wordpress search finds every page and non-custom posts with the word test whether I am inside or out, but it doesn’t search within the custom posts.