Archie Webmaker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site Logo when link is posted in Facebook is defaultYou need to change your Facebook-related metadata in the og: section of your HTML.
Forum: Themes and Templates
In reply to: [Singularity] Homepage customizationSometime after setting your featured page and after saving it, the “homepage” option in customizer get lost. If this is the case, try to set it back to default setting -your latest post. And then refresh it, your “homepage” option in customizer will show up again. Hope that helps!
Forum: Themes and Templates
In reply to: [Vega] Remove homepage page titleJust remove the title tag from your homepage. php file.
Forum: Themes and Templates
In reply to: Maximus Theme is Back After 3 Years!Yup! I will surely… working on the guidelines
Forum: Plugins
In reply to: custom post type with post_id in permalink structure@rhysbwaller
You can set the condition in the function
if (post_type is……………..Forum: Themes and Templates
In reply to: P2 Theme: Post Form (Quickpress) Customizationduplicate removed
Forum: Themes and Templates
In reply to: P2 Theme: Post Form (Quickpress) CustomizationYou can get flexible custom P2 Form here
Forum: Fixing WordPress
In reply to: add post meta for custom post typeSome kindly help
Forum: Fixing WordPress
In reply to: How to: Author profile meta as custom fieldI got the answer here But got another question
Forum: Fixing WordPress
In reply to: How to Change Copyrights !!It may be in the funtions.php
Forum: Fixing WordPress
In reply to: Calling P2 ExpertsOk I’d figured out myself
Forum: Fixing WordPress
In reply to: Show last commentator in a specific post<?php if (empty($comment_posts) || $comment_posts < 1) $comment_posts = 1; global $wpdb; $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_author_email, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,50) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT ".$comment_posts; $comments = $wpdb->get_results($sql); $output = $pre_HTML; foreach ($comments as $comment) { ?> <?php echo get_avatar( $comment, '35' ); ?> <div class="poster-name"> <a href="<?php echo get_permalink($comment->ID); ?>#comment-<?php echo $comment->post_ID; ?>" title="on <?php echo $comment->post_title; ?>"> <?php echo strip_tags($comment->comment_author); ?>: </a> <div style="clear:both"></div> <?php } ?
This code override other commentators in the post list
Dear Paul Gibbs,
I respect your thoughts and your work.
Lastly I like to add that rewarding users with badges are not bad at all but what about rewarding real stuff to users?I am a theme designer and I am little bit fed up of of giving free downloads to everyone. LOL
I am happy to hear about the possible add-on plugin.
I will be anticipating this.Thanking you
Buying option with paypal check etc
Thanks for the respond. (It should read “Points are deducted when users download stuff from the virtual store”)
What I really want is to allow users to download certain files in exchange for points.
And to be applicable to all types of site…I think- Is adding some kind of code or script to the download link. On click points are deducted.
1. Last warning dialog box before points are deducted and before download start.
2. Download message when click if user don’t have enough points
3. List of items bought by the user.
4. Most popular items.