Kamal Karki
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Team Manager] Can I change the numer the columns?You can decrease the font size of the name
in easy-team-manager/css/style.css
.team_profile_ttl h3{ font-size: whatever you want;}
Forum: Plugins
In reply to: [Easy Team Manager] Does not display like DemoHello MiloszZak,
I think Your page has not load the easy-team-manager/css/style.css.
Ensure you havn’t remove sytle.css from the css folder
if it din’t work we can add css manually
<link href="<?php echo plugins_url('easy-team-manager/css/style.css')?>" rel="stylesheet" type="text/css">
in index.php
but this is not right way to include the css in wordpressForum: Plugins
In reply to: [Easy Logo Slider] More OptionsThat’s remarkable great
It will certainly boost us
Thank youForum: Plugins
In reply to: [Easy Logo Slider] [Request] RTLWe will do in next version
ThanksForum: Plugins
In reply to: [Easy Logo Slider] Carousel wrapper breaks left and rightThanks for your comment
Forum: Plugins
In reply to: [Easy Testimonial Manager] Change slider speed?Soon
You will be able to do all that in next versionForum: Reviews
In reply to: [Easy Logo Slider] Good one but …Hello phpcore,
Thank You So Much for the great suggestion.This works perfectly.
Thank You…Forum: Plugins
In reply to: [Easy Team Manager] linesHello
If You increase the varchar size of name field in team_manager_description table ,I think it will work!Forum: Plugins
In reply to: [Easy Logo Slider] Fatal error on activationCrs.colon
Dont forget to rate ta pluginForum: Plugins
In reply to: [Easy Logo Slider] Fatal error on activationHello crs.colon function($atts) is not working in your wordpress please replace
add_shortcode('jw_easy_logo',function($atts){//add shortcode ob_start();?> <div class="wrapper"> <h2 class="jw_easy_slider_name"><?php echo $atts['slider_name'];?></h2> <div class="jcarousel-wrapper"> <div class="jcarousel"> <ul> <?php global $wpdb; $rw = $wpdb->get_results("SELECT * from ".$wpdb->prefix."jw_easy_logo_slider INNER JOIN ".$wpdb->prefix."jw_easy_logo_slider_setting where ".$wpdb->prefix."jw_easy_logo_slider_setting.id = "."".$wpdb->prefix."jw_easy_logo_slider.slider_id"." AND ".$wpdb->prefix."jw_easy_logo_slider_setting.name='".$atts['slider_name']."'"); foreach ($rw as $setting){ $res=$setting->setting; $show=unserialize($res);} $rows = $wpdb->get_results("SELECT * from ".$wpdb->prefix."jw_easy_logo_slider INNER JOIN ".$wpdb->prefix."jw_easy_logo_slider_setting where ".$wpdb->prefix."jw_easy_logo_slider_setting.id = "."".$wpdb->prefix."jw_easy_logo_slider.slider_id"." AND ".$wpdb->prefix."jw_easy_logo_slider_setting.name='".$atts['slider_name']."'"); foreach ($rows as $row ){?> <li> <style> .easy-logo_image {height:<?php if($show['image_ht']!=''){echo $show['image_ht'];}else{ echo "150px";}?> !important} </style> <?php if($row->url!=''){?><a href="<?php echo $row->url;?>" target="<?php if($show['url_target']!=''){echo $show['url_target'];} else{ echo "_blank";} ?>"><img src="<?php echo plugins_url('inc/images/'.$row->image,__FILE__);?>" class="easy-logo_image" alt=""/></a><?php } else{?><img src="<?php echo plugins_url('inc/images/'.$row->image,__FILE__);?>" class="easy-logo_image" alt=""/><?php }?> <?php if($row->url!=''){?><a href="<?php echo $row->url;?>" target="<?php if($show['url_target']!=''){echo $show['url_target'];} else{ echo "_blank";} ?>"><h3><?php if($show['jw_easy_logo_slider_title_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo $row->title;}?></h3></a><?php } else {?><h3><?php if($show['jw_easy_logo_slider_title_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo $row->title;}?></h3><?php }?> <?php $str = substr($row->description, 0, $show['limit_description']);?> <p class="descp"><?php if($show['jw_easy_logo_slider_desc_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo stripcslashes($str);}?></p> </li> <?php }?> </ul> </div> <a href="#" class="jcarousel-control-prev">‹</a> <a href="#" class="jcarousel-control-next">›</a> <p class="jcarousel-pagination"></p> </div> </div> <?php return ob_get_clean();?> <?php });
to
add_shortcode('jw_easy_logo','jw_easy_logo_shorcode');//shortcode function jw_easy_logo_shorcode($atts){ ob_start();?> <div class="wrapper"> <h2 class="jw_easy_slider_name"><?php echo $atts['slider_name'];?></h2> <div class="jcarousel-wrapper"> <div class="jcarousel"> <ul> <?php global $wpdb; $rw = $wpdb->get_results("SELECT * from ".$wpdb->prefix."jw_easy_logo_slider INNER JOIN ".$wpdb->prefix."jw_easy_logo_slider_setting where ".$wpdb->prefix."jw_easy_logo_slider_setting.id = "."".$wpdb->prefix."jw_easy_logo_slider.slider_id"." AND ".$wpdb->prefix."jw_easy_logo_slider_setting.name='".$atts['slider_name']."'"); foreach ($rw as $setting){ $res=$setting->setting; $show=unserialize($res);} $rows = $wpdb->get_results("SELECT * from ".$wpdb->prefix."jw_easy_logo_slider INNER JOIN ".$wpdb->prefix."jw_easy_logo_slider_setting where ".$wpdb->prefix."jw_easy_logo_slider_setting.id = "."".$wpdb->prefix."jw_easy_logo_slider.slider_id"." AND ".$wpdb->prefix."jw_easy_logo_slider_setting.name='".$atts['slider_name']."'"); foreach ($rows as $row ){?> <li> <style> .easy-logo_image {height:<?php if($show['image_ht']!=''){echo $show['image_ht'];}else{ echo "150px";}?> !important} </style> <?php if($row->url!=''){?><a href="<?php echo $row->url;?>" target="<?php if($show['url_target']!=''){echo $show['url_target'];} else{ echo "_blank";} ?>"><img src="<?php echo plugins_url('inc/images/'.$row->image,__FILE__);?>" class="easy-logo_image" alt=""/></a><?php } else{?><img src="<?php echo plugins_url('inc/images/'.$row->image,__FILE__);?>" class="easy-logo_image" alt=""/><?php }?> <?php if($row->url!=''){?><a href="<?php echo $row->url;?>" target="<?php if($show['url_target']!=''){echo $show['url_target'];} else{ echo "_blank";} ?>"><h3><?php if($show['jw_easy_logo_slider_title_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo $row->title;}?></h3></a><?php } else {?><h3><?php if($show['jw_easy_logo_slider_title_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo $row->title;}?></h3><?php }?> <?php $str = substr($row->description, 0, $show['limit_description']);?> <p class="descp"><?php if($show['jw_easy_logo_slider_desc_sh']!="hide" AND $show['jw_easy_logo_slider_title_sh']!=''){echo stripcslashes($str);}?></p> </li> <?php }?> </ul> </div> <a href="#" class="jcarousel-control-prev">‹</a> <a href="#" class="jcarousel-control-next">›</a> <p class="jcarousel-pagination"></p> </div> </div> <?php return ob_get_clean();?> <?php }
Hope it will work
Forum: Plugins
In reply to: [Easy Team Manager] Parse errorHello velodaecher,
Don’t forget to rate the pluginForum: Plugins
In reply to: [Easy Team Manager] Parse errorHello velodaecher,
what version of wordpress are you using
The plugin will work if you replaceadd_shortcode('easy-team-manager',function($atts){ --shortcode_content-- });
to
add_shortcode('easy-team-manager', 'easy_team_manager_shortcode'); function easy_team_manager_shortcode($atts){ --shortcode_content-- }
Hope it will work
Forum: Plugins
In reply to: [Easy Logo Slider] Fatal error on activationHello shnalla,
It seems like your wordpress doesn’t support that function
you can change this lineadd_shortcode('jw_easy_logo',function($atts){ --shortcode content-- });
to
add_shortcode('jw_easy_logo','easy_logo_slider_shortcode'); function easy_logo_slider_shortcode($atts){ --shortcode content-- }
I think it will work