IAS UMN
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Widget With Thumbnails] Can the excerpt skip tags?I see, ok. Thanks for the prompt replies.
Forum: Plugins
In reply to: [Recent Posts Widget With Thumbnails] Can the excerpt skip tags?I just discovered the excerpt field on the post edit page. So I entered the descriptive text there. The plugin is displaying the custom excerpts, only now the plugin’s “Maximum length of excerpt” limit is overridden and the entire text displays. Any idea?
Forum: Plugins
In reply to: [Recent Posts Widget With Thumbnails] Can the excerpt skip tags?ok, thank you.
Forum: Plugins
In reply to: [Recent Posts Widget With Thumbnails] Can the excerpt skip tags?hmm… that is, a, em, strong tags mixed in
- This reply was modified 8 years, 4 months ago by IAS UMN.
Forum: Plugins
In reply to: [WP FullCalendar] Scrollbars in monthly calendar viewhere’s the link
https://ias.umn.edu/calendar/Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Filters don’t display inlineI solved this by adding
br {display:none;}
to the page’s CSS.
maybe use the 3rd option here?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Filters don’t display inlineI see this is caused by line breaks between the filters. In Firebug I removed the breaks and the filters displayed inline, how I wanted. But I am unsure how to effect this change on the page itself. Some code in functions.php?
<div class="-filters "> <a class="-filter active" rel="*" href="#">All</a> <a id="filter-4867" class="-filter" rel="identity" href="https://ias.umn.edu/portfolio-filter/identity/">Identity</a> <br> <a id="filter-4868" class="-filter" rel="bullying" href="https://ias.umn.edu/portfolio-filter/bullying/">Bullying</a> <br> <a id="filter-4866" class="-filter" rel="body-image" href="https://ias.umn.edu/portfolio-filter/body-image/">Body Image</a> </div>
- This reply was modified 8 years, 5 months ago by IAS UMN.
Forum: Themes and Templates
In reply to: How to get page-id body class?For reference, the advice in this comment solved my problem.
https://themeforest.net/item/cruz-modern-business-wordpress/264335/comments?page=18&filter=all#comment_1579591
Forum: Themes and Templates
In reply to: How to get page-id body class?Thanks, I’ll ask the developer.
Deactivating all plugins didn’t make much difference. The body tags just changed to this:
<body class=" customize-support">
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Only certain categories give resultsThe problem isn’t the operators–it’s when I select one category by itself but nothing is found. And the problem happens only with some categories and I can’t figure out a pattern behind it.
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Sort by date post was published?Sorry, I was unclear. I meant that “date published” should appear as boxes/buttons on the search form itself. Is that possible?
Forum: Plugins
In reply to: [Menubar Widgets] Widget as menu item itself, not subitem?Thanks for the reply.
https://ias.umn.edu
Right now, I have a search bar widget in the default sidebar. I think it would look better at the right end of the main menu. It just seems more appropriate to have a search bar as a menu item rather than subitem.Forum: Plugins
In reply to: [WP FullCalendar] Widen tooltip?So, if I’m not mistaken, inspecting the calendar page, the tooltip appears in HTML as this:
<div id=”ui-tooltip-4″ class=”ui-tooltip qtip ui-helper-reset ui-tooltip-default ui-tooltip-light ui-tooltip-pos-lc” tracking=”false” role=”alert” aria-live=”polite” aria-atomic=”false” aria-describedby=”ui-tooltip-4-content” aria-hidden=”false” style=”z-index: 15004; width: 280px; top: -248.3px; left: 999px; opacity: 1; display: block;” > … </div>
I tried
.ui-tooltip { width: 400px; }
and
#ui-tooltip-4 { width: 400px; }
in my stylesheet without success. Am I doing this right?