uroosa
Forum Replies Created
-
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Page brokenok figured out part of our url is not showing &post_type=rcno_review. Thank you.
Ok so follow the instructions here –
https://fluentsmtp.com/docs/connect-gmail-or-google-workspace-emails-with-fluentsmtp/
and then reauthenticate for each email address…
Worked for me now.
Do you mean to say follow the documentation first and then reauthenticate? Just want to confirm.
Forum: Plugins
In reply to: [Recencio Book Reviews] Book Description Max LengthIs it possible to have it be dynamically aligned to the height of the book images? The book images height is not consistently the same height.
Forum: Plugins
In reply to: [Recencio Book Reviews] Book Description Max LengthWow…thank you! That took care of it so beautifully!
Forum: Plugins
In reply to: [Recencio Book Reviews] grid alignment in archives/listsOk thanks for taking a look. I have reached out to the FacetWP team. Btw, thanks for recommending them.
Forum: Plugins
In reply to: [Recencio Book Reviews] Book Description Max LengthOk so this is more of a css question…..now that i am able to get a greater length for the synopsis, I would like it to be scrollable but the heigth to match the height of the book image. How would I do that? Here is a link to show you what I am talking about – https://www.mindfulmuslimreader.com/staging/5788/book/planting-the-trees-of-kenya-the-story-of-wangari-maathai/
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesThank you for your patience! This did it:
Changing this:
$out .= $this->get_the_rcno_taxonomy_terms( $review_id, $key, true );
to this:
$out .= $this->get_the_rcno_taxonomy_terms( $review_id, $key, true, ‘, ‘, false );in the case where the key === ‘rcno_publisher’
Forum: Plugins
In reply to: [Recencio Book Reviews] Age RangesThis did it thank you! In case anyone else needs this, I just needed to get the terms without the tags, explode into an array, natcasesort, implode and then output with tags.
//$terms = get_the_term_list( $review_id, $taxonomy, ‘<span class=”rcno-tax-term”>’, $sep, ‘</span>’ );
//moved tags to line 1018 where output is being set with terms since the tags were interfering with sort below.$terms = get_the_term_list( $review_id, $taxonomy, ”, $sep, ” );
if ($taxonomy === ‘rcno_age’) {
$sortedarray = explode(‘,’, $terms);
natcasesort($sortedarray);
$terms=implode(‘,’, $sortedarray);
}
.
.
.
if ( $terms && ! is_wp_error( $terms ) ) {$out .= sprintf(
‘<div class=”rcno-term-list”>%1s%2s</div>’,
$prefix,
‘<span class=”rcno-tax-term”>’ . $terms . ‘</span>’
);
$out .= ”;
}
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesWe have default specified on the setting side for the plugin, however, on the backend we have created a custom template based on the default template code.
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesThank you.
So upgrading right now is not a possibility.
Also, added just the one piece of code in the plugin, namely
if ( ( ! $link && ! is_wp_error( $terms ) ) || apply_filters( ‘rcno_taxonomy_strip_tags’, false, $tax ) ) {
$terms = strip_tags( $terms )
}but that also did not work.
Is there something else that can be done?
I would like the name of the publisher without the url.
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesSo I think I may have a different issue.
I see the apply_filter being called on rcno_book_description_word_count in /recencio-book-reviews/public/class-rcno-template-tags.php but I cannot locate the rcno_taxonomy_strip_tags filter being applied anywhere.
The plugin version I have is Version 1.44.0.
Could it be that the filter should be of a different name?
Using the var_dump I am able to see that this filter is not applied at all ie invoked.
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesAny idea on what could be wrong?
Forum: Plugins
In reply to: [Recencio Book Reviews] Trying to Remove Link for Publisher/SeriesHmmmm this one does not seem to work….Nothing seems to happen when I add this filter…
Forum: Plugins
In reply to: [Recencio Book Reviews] Book Description Max LengthWorks thanks!