_kenny_
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Social networks do not saveJust an update: I have confirmed this issue persists in both Firefox and Safari.
I cleaned it up the best I could for now, but it should load and display everything. It worked when it was in way worse shape, believe me! Well, I’ll keep analyzing the code.
This is my first attempt at it, sorry! I know, but I’ve never tampered with that field before. There is no active blog posts or anything since I didn’t add compatibility. Its mostly skin and bones. I added dynamic sidebars and that was about it.
I have tried more than once adding “./style.css/” to that field and it didn’t change anything :/
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( '#' ); ?>" /> Code: <title> <?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) ); ?> </title>That’s what the values are for those fields. They are there so I have the option to add a blog section in wordpress. It was code sampled from the twentyeleven template. This is from header.php. This website is installed as a theme on wordpress, by the way.