armandl
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search Results Different for Logged In UsersYes, this looks like it works perfectly. Thank you so much!!!
Forum: Plugins
In reply to: [Archive Content with Archived Post Status] Trouble with Search ResultsTurns out I had a plugin conflict, should have thought of that before! I have it working now.
Forum: Plugins
In reply to: [Archive Content with Archived Post Status] Trouble with Search ResultsHello,
Thanks for responding. I am using the post status on pages, so setting up a category would require custom taxonomies and not quite get the result I am after. My site is an intranet where the users want to sometimes reference outdated materials, but I want it to be clear when the information is no longer current. It’s an odd case.
I’ll give it some more thought.
Thanks again.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude Breadcrumb NavigationThanks, I will look into that. I am using the shortcode but if the template option would work better with search I’ll try that route.
Thanks again, really appreciate it.
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Plugin completely unusuable after updateThe update solved the issue. Thanks for getting that out so quickly.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Format Search Hit BreakdownThis is just what I was looking for, thank you SO much.
Forum: Plugins
In reply to: [Vanilla PDF Embed] Search Excerpt… Any Ideas?Fixed it, nevermind.
Forum: Plugins
In reply to: [Vanilla PDF Embed] Search Excerpt… Any Ideas?I’ve isolated what portion of my functions.php file interferes with the search result excerpts:
//adds attachment thumbnail to search results list function attachments_search_the_excerpt( $excerpt ) { if ( ! is_search() ) return $excerpt; $id = get_the_ID(); if ( ! $id ) return $excerpt; $caption = wptexturize( get_post($id)->post_excerpt ); // compile output with thumbnail image $output = "<div id='attachment_{$id}' >"; $output .= wp_get_attachment_image( $id, 'thumbnail', true ); $output .= "<p class='wp-caption-text'>$caption</p>"; $output .= "</div>"; return $output; } // hook our function to the filter add_filter( 'the_excerpt', 'attachments_search_the_excerpt' );
This was taken from this support request and works fine with Vanilla PDF embed on my test site.
Forum: Plugins
In reply to: [Easy Bootstrap Shortcode] Your website is brokenFYI, still getting internal server error.
Forum: Plugins
In reply to: [Easy Bootstrap Shortcode] Plus Minus Icons for Accordion ToggleTry something like:
[toggle ocicon="true" title="Title" icon="glyphicon-plus" icontype="glyphicon"]
The ocicon=”true” part of this will add the open/close indicator the right side of the accordion (more of an up/down arrow like ‘^’. You can add an additional icon of your choice at the left side, too.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Column Filter Extension DisplayOkay, I understand. Thanks for responding so quickly!
Forum: Plugins
In reply to: [Easy Bootstrap Shortcode] Your website is brokenhttps://demo.oscitasthemes.com/osc_ebsp_demo/ is broken again.
Forum: Plugins
In reply to: [Vanilla PDF Embed] Request: Tag For .pdf Download LinkI’d also love to be able to do this.
Edit to clarify: I know an additional link can be added to a post or page, but I’d like to also have a link to download the PDF on the media attachment page.
Okay thanks, I may try that.
Forum: Plugins
In reply to: [Vanilla PDF Embed] Affecting Word (.doc .docx) DocumentsThanks for the reply. Is there any modification I can make now so that the media attachment pages for .doc files aren’t affected by the plugin?