naveenbos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Bridge Theme demo problemI want to show thumbnail images in a grid view in the bridge quode slider theme, how can i do that, is there any settings for this?
Forum: Plugins
In reply to: [WooCommerce] Size filtering in the product listing pageAny one give me reply or suggestions on this?
Forum: Plugins
In reply to: [Donations via PayPal] Does the paypal donation supports echeck?Using this plugin,Do we can add both? means the Visa/MasterCard/AMEX/Discover and eCheck
Forum: Fixing WordPress
In reply to: How to remove the p from the default wordpress editor?Same question i have asked in the stack overflow i got one reply from there,
One solution is/** Edit TinyMCE **/ function myformatTinyMCE($in) { $in['statusbar'] = false; return $in; } add_filter('tiny_mce_before_init', 'myformatTinyMCE' );
Second Solution is
function my_theme_add_editor_styles(){ ?> <style type="text/css"> .mce-path {display: none!important;} </style> <?php } add_action( 'init', 'my_theme_add_editor_styles' );
it is a css option.
Forum: Plugins
In reply to: [Vote My Post] Vote images not showingFinally find out the bug. In vote-my-post.php file line no 605 we can see this code
$html = "<div class='" . $class_1 . "'><div class='first'><a href='javascript:void(0)' id='up_count' title='Click to like this post'><img valign='middle' src='" . plugins_url( '/images/upvote.gif', __FILE__ ) . "'/></a><div class='counter' id='vmp_up_counter'>" . $up_count . "</div></div><div class='other'><a href='javascript:void(0)' id='down_count' title='Click to dislike this post'><img valign='middle' src='" . plugins_url( '/images/downvote.gif', __FILE__ ) . "'/></a><div class='counter' id='vmp_down_counter'>" . $down_count . "</div></div> </div><div class='" . $class_2 . "' id='vmp_message'></div><br/><br/><br/> ";
i have just replaced this code to$html = '<div class="' . $class_1 .'"> <div class="first"><a href="javascript:void(0)" id="up_count" title="Click to like this post"><img valign="middle" src="' . plugins_url( "/images/upvote.gif", __FILE__ ) . '"/></a><div class="counter" id="vmp_up_counter">' . $up_count . '</div></div> <div class="other"><a href="javascript:void(0)" id="down_count" title="Click to dislike this post"><img valign="middle" src="' . plugins_url( "/images/downvote.gif", __FILE__ ) . '"/></a><div class="counter" id="vmp_down_counter">' . $down_count . '</div></div> </div> <div class="' . $class_2 . '" id="vmp_message"></div> <br/><br/><br/> ';
now it is working fine
Forum: Plugins
In reply to: [Vote My Post] Vote images not showingI have the same issue.
<a href="javascript:void(0)' id='up_count' title='Click to like this post'><img valign='middle' src='https://www.saaspie.com/wp-content/plugins/vote-my-post/images/upvote.gif"></a>
when a non logged in user, inside the div it is showing this, so the thumb image not appearing, after i logged as admin i can see the thumb image correctly, but other users can’t see the thumb image. what is the problem ?Forum: Plugins
In reply to: [User Photo] Image through facebook is not showing.I would like to share the code that i did for a solution for the above question
$fb_image = $wpdb->get_var("SELECT meta_value FROM $wpdb->usermeta WHERE
user_id= '".$current_user->id."' AND
meta_key`=’facebookall_user_thumbnail'”);
$fb_img = ‘<img src=”‘.$fb_image.'” height=”128″ width=”128″ alt=””>’;
if(userphoto_exists($current_user)){
userphoto($current_user->id);
}
elseif($fb_image!=””) {
echo $fb_img;
}
else{
echo get_avatar($user->ID, 96);
}`Forum: Plugins
In reply to: [Comment Edit Core - Simple Comment Editing] Editing content not comingHow can i get the value inside the textarea?
If the user is not activated error message is not getting displayed. user registered after registration he will get a mail, if he click on that mail acount will be acivate, if the user is not activated and user is trying to login but error message is getting wrong, is there any condition for checking the non activated users in the pie register?
i have some changes in page.php, thats why it is not coming, i have restored page.php it is working fine now.
Forum: Plugins
In reply to: [WTI Like Post] Only one user can do the thumps upif sombody else login to the same system what he will do? how to solve this problem?
Is it possible to upload user profile pic from front end? i have a edit proile page, i am using profile builder plugin for that,
is it possible to upload user profile pic from front end?
Forum: Plugins
In reply to: [Frontier Post] Frontier Post validationIs it possible to give a message after posting the content, “your blog will appear after admin’s approval” message like this?
Forum: Themes and Templates
In reply to: Widgets are not coming in the homepage