lafargue
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] Grid view with 3 columns issueHad been trying to make a staging version, so our end users don’t see the error and you can check it, because it’s a production site and we can’t let the error display live, but have been really busy with other tasks. Here’s an image of the error I’m talking about:
https://utopix.cc/wp-content/uploads/2020/11/Screenshot_2020-11-02-Personalizar-Contenido-Utopix.png
Thanks a lot!
Forum: Plugins
In reply to: [Product Filter by WBW] Use theme stylesI will contact the support team then.
Thanks a lotHello @badsha_eee, I had to uninstall Quebly since we could achieve the same result with another plugin that didn’t had any conflict with our current configuration. Sorry.
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueDone! Here, Thanks a lot for the guidance ??
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueAlready did! here’s my review, that you kindly answered by the way.
I got another issue, but it’s a development thing, we’r trying to incorporate Co-Authors Plus in our child theme of neve, but haven’t been able to add the function that replaces the query of the authors name’s in functions.php, so we have to change it in Neve every time we update the theme.
Neve/inc/views/partials/post-meta.php
Line 48case 'author': $author_email = get_the_coauthor_meta( 'user_email' ); //$avatar_url = get_avatar_url( $author_email ); //$avatar_markup = '<img class="photo" alt="' . get_the_author() . '" src="' . esc_url( $avatar_url ) . '" /> '; $display_avatar = apply_filters( 'neve_display_author_avatar', true ); $markup .= '<li class="meta author vcard">'; //if ( $display_avatar ) {$markup .= $avatar_markup;} $markup .= '<span class="author-name fn">' . wp_kses_post( coauthors_posts_links( $between = null, $betweenLast = null, $before = null, $after = null, $echo = false ) ) . '</span>'; $markup .= '</li>'; break;
I didn’t made a topic because I wasn’t sure if that’s an issue that can be asked in this forum, it is? should I made another topic for it?
Thanks a lot for your time!
- This reply was modified 5 years, 5 months ago by lafargue.
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueHi @rodicaelena I checked and the issue it’s now fixed, thanks a lot to you and the @themeisle team for creating such a great theme and the support given.
Cheers.
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueThanks a lot @rodicaelena, sounds awesome, keep making an awesome job!
Hope that update comes before we launch our site lolCheers.
- This reply was modified 5 years, 5 months ago by lafargue.
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueHello Rodica! Somehow I missed you’r reply, thanks for answering so soon, here’s a Screenshot of the issue the site it’s experimenting, hope it helps.
- This reply was modified 5 years, 5 months ago by lafargue.
Forum: Themes and Templates
In reply to: [Neve] Infinite Scroll issueI’m checking https://github.com/Codeinwp/neve/blob/master/inc/views/pluggable/pagination.php to see if I see any clues, and found the references to infinite Scroll, but I really don’t know what else to do.
Forum: Plugins
In reply to: [Co-Authors Plus] Author pageI’m no expert, and this is my first submit in this forum, but I thought this might help. I personally went for a different direction than the one described in the author.php template.
if ( $coauthors_plus->is_guest_authors_enabled() ) { $coauthor = $coauthors_plus->guest_authors->get_guest_author_by( 'user_nicename', $author_name); } if ( !empty($coauthor) ) { echo 'Guest'; }else{ $coauthor = $coauthors_plus->get_coauthor_by( 'user_nicename', $author_name ); echo 'Member'; }
From ther you can use the $coauthor variable to get all the meta information you need. Like
<?php echo $coauthor->display_name; ?> <?php echo coauthors_get_avatar( $coauthor, 90 ); ?> <?php echo $coauthor->description; ?>
Hope it helps