jamesparkin
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Media Widget] [Plugin: Social Media Widget] Custom Order for PluginThis is very easy to do, with all do respect to Brian and whoever developed this plugin all the author had to do was alphabetize the social links inside the php file.
Copy and Paste Alphabetically what you use only and the plugin will automatically display them in alphabetical order
Look for this and order it how you want
// Facebook if ( $facebook != '' && $facebook != ' ' && file_exists($smw_dir.'/facebook.png')) { ?><a href="<?php echo $facebook; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/facebook.png" alt="<?php echo $imgcaption; ?> Facebook" title="<?php echo $imgcaption ?> Facebook" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If no URL inputed }
this is how i order mine
// Facebook if ( $facebook != '' && $facebook != ' ' && file_exists($smw_dir.'/facebook.png')) { ?><a href="<?php echo $facebook; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/facebook.png" alt="<?php echo $imgcaption; ?> Facebook" title="<?php echo $imgcaption ?> Facebook" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If no URL inputed } // Custom Icon 1 if ( $custom1url != '' && $custom1name != '' && $custom1icon != '' ) { ?><a href="<?php echo $custom1url; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $custom1icon; ?>" alt="<?php echo $imgcaption; ?> <?php echo $custom1name; ?>" title="<?php echo $imgcaption; ?> <?php echo $custom1name; ?>" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" width="<?php echo $icon_size; ?>" height="<?php echo $icon_size; ?>" /></a><?php } else { echo ''; //If no URL inputed } // Twitter if ( $twitter != '' && $twitter != ' ' && file_exists($smw_dir.'/twitter.png')) { ?><a href="<?php echo $twitter; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/twitter.png" alt="<?php echo $imgcaption; ?> Twitter" title="<?php echo $imgcaption; ?> Twitter" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If no URL inputed } // Tumblr if ( $tumblr != '' && $tumblr != ' ' && file_exists($smw_dir.'/tumblr.png')) { ?><a href="<?php echo $tumblr; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/tumblr.png" alt="<?php echo $imgcaption; ?> Tumblr" title="<?php echo $imgcaption; ?> Tumblr" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If no URL Inputed } // Pinterest if ( $pinterest != '' && $pinterest != ' ' && file_exists($smw_dir.'/pinterest.png')) { ?><a href="<?php echo $pinterest; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/pinterest.png" alt="<?php echo $imgcaption; ?> Pinterest" title="<?php echo $imgcaption; ?> Pinterest" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If No URL Inputed } // YouTube if ( $youtube != '' && $youtube != ' ' && file_exists($smw_dir.'/youtube.png')) { ?><a href="<?php echo $youtube; ?>" <?php echo $nofollow; ?> <?php echo $newtab; ?>><img width="<?php echo $icon_size; ?>px" height="<?php echo $icon_size; ?>px" src="<?php echo $smw_path; ?>/youtube.png" alt="<?php echo $imgcaption; ?> YouTube" title="<?php echo $imgcaption; ?> YouTube" <?php if($animation == 'fade' || $animation == 'combo') { ?> style="opacity: <?php echo $icon_opacity; ?>; -moz-opacity: <?php echo $icon_opacity;?>;" <?php } ?>class="<?php echo $animation; ?>" /></a><?php } else { echo ''; //If No URL Inputed }
Forum: Plugins
In reply to: Front End TagSo there is comment remix which has tags, but I want the tags to be added to the main tag cloud of the site.
Forum: Themes and Templates
In reply to: Firefox vs IE 8.0I have decided to try using a “%” percentage instead of using #px or #pt to define an <div>. And I have tried again on 2 monitors with both browsers and it looks identical. I don’t think this should cause any issues. Do people still browse in 800×600 these days, do they still scroll horizontally? If anyone thinks this will cause issues please let me know. I will close this thread in 7 days if there are no future responses.
Forum: Themes and Templates
In reply to: Firefox vs IE 8.0In my browsers the first site has more whitespace on the right and left borders, with the exact same theme and css style. The second site looks identical.
I haven’t come across this issue before with making wp sites.
thank for the tip esmi