cmehrabian
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Redirect Posts to another Domain w/ htaccessTurns out .htaccess files weren’t allowed on client’s server. Decided to 301 redirect the /blog page and then make each individual redirect happen in single.php.
Forum: Plugins
In reply to: [WP Post to PDF Enhanced] Displaying certain elements together in pdfThanks Lewis,
I appreciate the timely response. I look forward to it!
Forum: Plugins
In reply to: WordPress throwing warning error on successful SearchWP searchsHey @jivedig,
I contacted support about this, and searchWP wasn’t able to figure out the exact issue.
They did include this filter that got rid of the warning,add_action( 'pre_get_posts', function( $wp_query ){ if ( is_search() ) { set_query_var( 'update_post_term_cache', false ); } } );but also stated that there might be something unique to my dev environment which is triggering the issue. I suggest you contact support and see if they can give your site a proper diagnosis.
Forum: Plugins
In reply to: [WP Job Manager] Modifying search CriteriaHey Mike!
Is it? It’s currently not working on the staging site.
I’m logging query_args[‘meta_query’] at http://jobs.development.pub. The normal filtering is working but when I make a selection with our custom dropdown, all results disappear. Jobify’s support responded with this:
The array should include all of the other query arguments too. Looks like you’re overwriting the existing array of arguments instead of appending it.
How can I append the new search arguments? Any advice would be appreciated!