Riffaz Starr
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Charts] where do i set up the plugin?I also experiencing the same..
Can anyone instruct us please??Forum: Plugins
In reply to: [Custom Taxonomy Template] showing a common template for all taxonomiesHow quick your response.. thanks a lot..
I mean both (taxonomy1 and taxonomy2) taxonmies now takes template2, even I select temp1 for taxonomy1
Forum: Plugins
In reply to: [WordPress Social Login] How to show social profile avatar in a loop?Perfect. Works like a charm. Thanks a lot Jesse.
Really you saved me..Forum: Plugins
In reply to: [WordPress Social Login] How to show social profile avatar in a loop?That’s fine.
Already I am getting that custom type post title by the same code you provide above.Now I want to get the author name of that custom type post.
How can I get the author display name of the custom type post?Forum: Plugins
In reply to: [WordPress Social Login] How to show social profile avatar in a loop?Hey Jesse.. thanks a lot for your effort. really appreciate.
But for this works:echo wsl_get_user_custom_avatar ($post->post_author);
It gives me social profile avatar.
But I am unable get the user name of this role for a custom post type.
$author_id=$post->post_author; echo the_author_meta('display_name', $author_id);
This gives me administrator name. Not the name of the custom post.
Could you help me on this please?Forum: Plugins
In reply to: [WordPress Social Login] Extra Fields (City, State, Country, Likes, etc)11 months ago.. wooow….
Did you manage to get the feature damusix?Hi Dallas,
Thanks for that. That’s good news.
Do not forget to notify when you release version 2.0.Forum: Plugins
In reply to: [WordPress Social Login] How to show social profile avatar in a loop?Hi Jesse,
That helped. Thanks a lot.But how to show their social profile pictures on contributors page?
I mean I want to show all the Travellers in a page.so put this code on contributors.php
$args['role'] = 'traveller'; $users = get_users($args); foreach( $users as $user ) { echo $user->user_nicename; "HERE I WANT TO CALL TRAVELLER SOCIAL PROFILE IMAGE" echo '<br />'; }
how can I code the line ‘ HERE I WANT TO CALL TRAVELLER SOCIAL PROFILE IMAGE ‘ to show a traveller image next to his name.
It will be a list of that role users with their name and social profile images.Forum: Fixing WordPress
In reply to: How to show specific meta keys of all posts in admin panel?Thanks for that Hannon. That plugin looks very useful.
Anyhow I am looking a for solution that I would be able to put code snippet on the functions.php Not using plugin.yeah something like that…
https://www.ads-software.com/support/view/plugin-reviews/yet-another-stars-ratingSorry my clients do not allow me to show the site before it’s published.
It’s working now after I’ve created the author.php and category.php
What the file I want to create to show the proper post for archive links like
<strong> NOVEMBER 2013, then it's should show the posts under https://www.mydomain.com/blog/2013/11/</strong>
?Now the same scenario continues.
but this time I got the archive page content under the different URL as I mentioned above.please some shout here.
that will be very help full.
here is my archive.php<?php /* Template Name: Archive */ get_header(); ?> <div id="container"> <div id="content" role="main"> <div class="row"> <section class="large-12 columns"> <?php get_search_form(); ?> </section> <section class="large-12 columns"> <h3>Archive by Date</h3> <?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12, 'show_post_count' => 1 ) ); ?><br/> </section><!-- #content --> <section class="large-12 columns"> <h3>Archive by Category</h3> <?php wp_list_categories( array ( 'title_li'=> '' , 'show_count' => 1))?><br/> </section><!-- #content --> <section class="large-12 columns"> <h3>Archive by Author</h3> <?php wp_list_authors( array ('optioncount' => 1)); ?> </section><!-- #content --> </div><!-- #primary (.row) --> </div><!-- #content --> </div><!-- #container --> <?php get_footer(); ?>