Changeset 757166
- Timestamp:
- 08/16/2013 03:05:36 PM (12 years ago)
- Location:
- lowermedia-wp-social
- Files:
-
- 2 added
- 1 edited
-
assets/banner-772x250.png (added)
-
trunk/icons/favicon.ico (added)
-
trunk/lowermedia-wp-social.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lowermedia-wp-social/trunk/lowermedia-wp-social.php
r756830 r757166 4 4 Plugin URI: http://lowermedia.net 5 5 Description: Social Media Toolbar Made Easy! Creates widget and widget area to display social media profile links at the top or left of your website. 6 Version: 3 6 Version: 3.0.1 7 7 Stable: 2.1.0 8 8 Author: Pete Lower … … 563 563 if (get_option('lmwps_rounded_option')){ 564 564 $GLOBALS['css_class_rounded'] = " lm-wps-rounded "; 565 } 565 }else {$GLOBALS['css_class_rounded'] ='';} 566 566 567 567 //check if the background option is selected 568 568 if (get_option('lmwps_bkgrnd_option')){ 569 569 $GLOBALS['css_class_bkgrnd'] = " lm-wps-bkgrnd "; 570 } 570 }else {$GLOBALS['css_class_bkgrnd'] ='';} 571 571 572 572 //check if the links open in new tab option is selected 573 573 if (get_option('lmwps_offsite_option')){ 574 574 $GLOBALS['link_offsite'] = " target='_blank' "; 575 } 576 else 577 {$GLOBALS['link_offsite'] ='';} 575 } else {$GLOBALS['link_offsite'] ='';} 578 576 579 577 //If the user checks the box to use flat icons … … 583 581 } else { 584 582 $GLOBALS['link_flaticons'] =' '; 583 $GLOBALS['disable'] = ''; 585 584 } 586 585 … … 588 587 if (get_option('lmwps_martop_option')){ 589 588 $GLOBALS['css_class_martop'] = get_option('lmwps_martop_option'); 590 } 589 } else {$GLOBALS['css_class_martop'] ='';} 591 590 592 591 //check if margin left is set 593 592 if (get_option('lmwps_marleft_option')){ 594 593 $GLOBALS['css_class_marleft'] = get_option('lmwps_marleft_option'); 595 } 594 } else {$GLOBALS['css_class_marleft'] ='';} 596 595 597 596 //check if position is set … … 599 598 if (get_option('lmwps_pos_option') == "top" ){ 600 599 $GLOBALS['css_class_pos'] = " lm-wps-top-ul lm-wps-top "; 601 } else{600 } else { 602 601 $GLOBALS['css_class_pos'] = " lm-wps-side-ul lm-wps-side "; 603 602 } 604 } 603 }else {$GLOBALS['css_class_pos'] ='';} 605 604 606 605 //check if opacity is set 607 606 if (get_option('lmwps_opac_option')){ 608 607 $GLOBALS['css_class_opac'] = get_option('lmwps_opac_option'); 609 } 608 } else {$GLOBALS['css_class_opac'] ='';} 609 610 610 $output = dynamic_sidebar('lowermedia_wp_social_widget_area'); 611 611 … … 647 647 'instagram' => '', 648 648 'pinterest'=>'', 649 'yelp'=>'', 649 650 'email'=>'', 650 651 'rss'=>'', … … 910 911 extract($args, EXTR_SKIP); 911 912 echo $before_widget; 912 $css_class_holder = $GLOBALS['css_class_bkgrnd']." ".$GLOBALS['css_class_rounded']." ".$GLOBALS['css_class_ section']." ".$GLOBALS['css_class_pos'];913 $css_class_holder = $GLOBALS['css_class_bkgrnd']." ".$GLOBALS['css_class_rounded']." ".$GLOBALS['css_class_pos'];//".$GLOBALS['css_class_section']." 913 914 914 915 //Icon Variables
Note: See TracChangeset
for help on using the changeset viewer.