Vignesh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Openstrap] Color and size of Blurb Heading textremove
<hr class=”style-eight”/>
in Front Page With Slider Template Page Template (page-templates/front-page-2.php)
to have horizontal line just place<hr/>
I found the way
just add the following codes in wp-user-frontend/wpuf-add-post.php
1.below this code “””””do_action( ‘wpuf_add_post_form_tags’, $post_type );
wpuf_build_custom_field_form( ‘bottom’ );
?>”””””add this
<?php
require_once(‘recaptchalib.php’);
$publickey = “your captcha code publickey”; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>2.below this code “”””//validate title
if ( empty( $title ) ) {
$errors[] = __( ‘Empty post title’, ‘wpuf’ );
} else {
$title = trim( strip_tags( $title ) );
}”””””add this
require_once(‘recaptchalib.php’);
$privatekey = “your captcha code private key”;
$resp = recaptcha_check_answer ($privatekey,
$_SERVER[“REMOTE_ADDR”],
$_POST[“recaptcha_challenge_field”],
$_POST[“recaptcha_response_field”]);if (!$resp->is_valid) {
// What happens when the CAPTCHA was entered incorrectly
die (“The reCAPTCHA wasn’t entered correctly. Go back and try it again.” .
“(reCAPTCHA said: ” . $resp->error . “)”);
} else {
// Your code here to handle a successful verification
}to get your captcha code vist this https://www.google.com/recaptcha/admin#whyrecaptcha
To get Captcha do the following things and also install wp-recaptcha plugin
Forum: Plugins
In reply to: how to reduce the vertical scrolling height in master slider pluginhere is my site address https://pepcomm.com/ at home page the thumb list goes top when scroll that is actually my problem
Thanks Tareq Hasan
I solved it
Forum: Plugins
In reply to: [Broadcast] Broadcast requires a WordPress network to function.I Solved it by following the things
open it: https://codex.www.ads-software.com/Create_A_Networki did it but no use suggest any plugin to do
shall i integrate the other user profile image plugin with pie register is there any possibilty
shall i integrate the other user profile image plugin with pie register is there any possibilty
shall i integrate the other user profile plugin with pie register
hey i want to display the avathar in author archives as well as in login widget too
i am using tempera theme
so please anyone suggest me the answer@ vijilov
thanks for giving the code, i want to display it horizontally,so i removed
li so that it displays horizontally,this is what i want,here category name display beside the category image,after removing li
but i want to display category name down to the category image.
So give me any Suggestions Sir @ vijilov