Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • 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;}

    Hello 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 wordpress

    That’s remarkable great
    It will certainly boost us
    Thank you

    We will do in next version
    Thanks

    Thanks for your comment

    Soon
    You will be able to do all that in next version

    Hello phpcore,

    Thank You So Much for the great suggestion.This works perfectly.
    Thank You…

    Forum: Plugins
    In reply to: [Easy Team Manager] lines

    Hello
    If You increase the varchar size of name field in team_manager_description table ,I think it will work!

    Crs.colon
    Dont forget to rate ta plugin

    Hello 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">&lsaquo;</a>
    
                <a href="#" class="jcarousel-control-next">&rsaquo;</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">&lsaquo;</a>
    
                <a href="#" class="jcarousel-control-next">&rsaquo;</a>
    
                <p class="jcarousel-pagination"></p>
    
            </div>
    
        </div>
      <?php return ob_get_clean();?>
    
    <?php }

    Hope it will work

    Hello velodaecher,
    Don’t forget to rate the plugin

    Hello velodaecher,
    what version of wordpress are you using
    The plugin will work if you replace

    add_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

    Hello shnalla,
    It seems like your wordpress doesn’t support that function
    you can change this line

    add_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

Viewing 13 replies - 1 through 13 (of 13 total)