jibril84
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Bug in Twitter Username fieldOh that’s right! I completely forgot that that part is from Yoast SEO and not from your plugin! I apologize for the confusion. And thanks for your reply and your patience ??
Forum: Plugins
In reply to: [Authors List] Bug in Twitter Username fieldBasically yes, it’s the browser (Firefox) that identifies that field as a “username” field and fills it with the username I saved for my domain. In version 1 of the plugin, however, it did not happen, but maybe something has changed in Firefox. So it’s not a real bug, maybe some sort of compatibility issue with Firefox. I’ll have to remember to check that field and clear it when I make changes to authors.
Forum: Plugins
In reply to: [Authors List] TikTok in social media listThanks a lot, now everything works fine!
Forum: Plugins
In reply to: [Authors List] TikTok in social media listHello, I updated the plugin and noticed that the TikTok logo was already appearing in the authors list, under each author, even though I hadn’t created the custom field yet. The logos also link to the authors’ Facebook pages.
I then created the “tiktok” custom field and, even if I fill it in, the link isn’t correct, it always links to Facebook.This is the code I use, do I need to change anything?
[authors_list after_title="{alf:social}" style="1" columns="4" show_bio="no" show_count="no" show_link="yes" orderby="display_name" order="ASC" only_authors="yes" skip_empty="yes" exclude="1"]
Forum: Plugins
In reply to: [Authors List] TikTok in social media listYes, it would, thank you! I already use a plugin for custom fields ??
Forum: Plugins
In reply to: [Multi-column Tag Map] Display custom fieldsThank you! Somehow I managed to get the links to appear! It will probably be more complicated with the images but I’m already happy with it ??
Forum: Plugins
In reply to: [Authors List] PHP code to display social links in author’s pageThank you so much!
Forum: Plugins
In reply to: [Authors List] PHP code to display social links in author’s pageI forgot to check if the links exist…
<?php $facebook = get_the_author_meta( 'facebook', $post->post_author ); $twitter = get_the_author_meta( 'twitter', $post->post_author ); $instagram = get_the_author_meta( 'instagram', $post->post_author ); $pinterest = get_the_author_meta( 'pinterest', $post->post_author ); $youtube = get_the_author_meta( 'youtube', $post->post_author ); if(!empty($facebook)) { echo '<a href="'. $facebook .'" rel="nofollow" target="_blank" alt="Facebook"><i class="fab fa-facebook"></i></a>'; } if(!empty($instagram)) { echo '<a href="'. $instagram .'" rel="nofollow" target="_blank" alt="Instagram"><i class="fab fa-instagram"></i></a>'; } if(!empty($pinterest)) { echo '<a href="'. $pinterest .'" rel="nofollow" target="_blank" alt="Pinterest"><i class="fab fa-pinterest"></i></a>'; } if(!empty($twitter)) { echo '<a href="https://twitter.com/' . $twitter .'" rel="nofollow" target="_blank" alt="Twitter"><i class="fab fa-twitter"></i></a>'; } if(!empty($youtube)) { echo '<a href="'. $youtube .'" rel="nofollow" target="_blank" alt="YouTube"><i class="fab fa-youtube"></i></a>'; } ?>
Forum: Plugins
In reply to: [Authors List] PHP code to display social links in author’s pageI found it! I’ll put it here in case anyone else needs it. (I only entered the social networks I need, for the others just copy the lines and replace the name of the social network wherever it appears)
<?php $facebook = get_the_author_meta( 'facebook', $post->post_author ); $twitter = get_the_author_meta( 'twitter', $post->post_author ); $instagram = get_the_author_meta( 'instagram', $post->post_author ); $pinterest = get_the_author_meta( 'pinterest', $post->post_author ); $youtube = get_the_author_meta( 'youtube', $post->post_author ); echo '<a href="'. $facebook .'" rel="nofollow" target="_blank" alt="Facebook"><i class="fab fa-facebook"></i></a> <a href="'. $instagram .'" rel="nofollow" target="_blank" alt="Instagram"><i class="fab fa-instagram"></i></a> <a href="'. $pinterest .'" rel="nofollow" target="_blank" alt="Pinterest"><i class="fab fa-pinterest"></i></a> <a href="https://twitter.com/' . $twitter .'" rel="nofollow" target="_blank" alt="Twitter"><i class="fab fa-twitter"></i></a> <a href="'. $youtube .'" rel="nofollow" target="_blank" alt="YouTube"><i class="fab fa-youtube"></i></a> '; ?>
Hello, I downgraded to version 2.2.7, the error disappeared and the plugin works as before. Is there no way to figure out what’s wrong without me having to disable the other plugins one by one?
Thank you!Now it works, thank you!
Hello,
I tried, same error. If it can help, I checked and I don’t have the file “class-plugin-upgrader.php” in the folder “wp-admin/includes”
Maybe it was added in a later version of WordPress than the one I have (4.4.22)?Forum: Plugins
In reply to: [Multi-column Tag Map] Tags are no longer in alphabetical orderOooh, ok, I got it! ?? I should change too many tags and then I should make as many redirects in order not to lose indexing. The a?aí can stay there! ??
Thank you very much!!Forum: Plugins
In reply to: [Multi-column Tag Map] Tags are no longer in alphabetical orderOk, with my original shortcode it works. But if I add
sort_alpha_groups="c|?"
then the problem comes back.
(I need that because I have the tag “a?aí in polvere” and I’d like to see it as the first tag instead of the last one as it is now)- This reply was modified 4 years, 8 months ago by jibril84.
Forum: Plugins
In reply to: [Multi-column Tag Map] Tags are no longer in alphabetical orderIt seems that it doesn’t work properly everywhere. For example, look at the F in my page: “fagioli” should be the first, instead it’s after “funghi […]”.
- This reply was modified 4 years, 8 months ago by jibril84.