Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter WhitWhit

    (@whitwhit)

    Oh, I’m sorry I linked to the wrong screen shot! Here’s the correct one: http://www.whitneylee.me/wp-content/uploads/2017/07/Screen-Shot-2017-07-13-at-2.55.33-PM.png

    And then per request, I’m copying the text below too!

    WPSSO Note An Open Graph image meta tag could not be created from this webpage content or its custom Social Settings. Facebook requires at least one image meta tag to render shared content correctly.
    WPSSO Note Possible conflict detected — your theme or another plugin is adding meta property=”og:site_name” to the head section of this webpage.
    WPSSO Note Possible conflict detected — your theme or another plugin is adding meta property=”og:type” to the head section of this webpage.
    WPSSO Note Possible conflict detected — your theme or another plugin is adding meta property=”og:title” to the head section of this webpage.
    WPSSO Note Possible conflict detected — your theme or another plugin is adding meta property=”og:url” to the head section of this webpage.
    WPSSO Note Possible conflict detected — your theme or another plugin is adding meta property=”og:description” to the head section of this webpage.
    WPSSO Note Checking http://www.roman-studiosblog.com/?p=1024 for duplicate meta tags…

    Thread Starter WhitWhit

    (@whitwhit)

    Thanks so much for the speedy response! I had actually done that when I first installed it because I saw the conflict message on the main settings page but these are different conflict notes that only appear on the pages (services, about, home etc…) and only on the one site. the other appears to be fine which is why I thought it must be the theme? there are no other seo or social media plugins installed. thoughts?

    ps… is there a way to dismiss warnings?

    Thread Starter WhitWhit

    (@whitwhit)

    update… I originally uploaded .aif files to as3. I just changed them to mp3 and now when i click on open in new window & download it will open in a new window and play the audio. If I add metadata in as3 (content-disposition, attachement) then both will download. How do i get it so that each one works properly?

    Thread Starter WhitWhit

    (@whitwhit)

    I just realized that I’m only able to see the forms on the site when I’m logged into the wordpress admin. I’ve gone back through to make sure they’re published and activated and everything looks correct. I have no idea what I’m doing wrong or what the issue is??

    Thread Starter WhitWhit

    (@whitwhit)

    I just solved the problem and wanted to share. I had to set myself to admin in the user roles of the plugin for my changes to take effect.

    Thread Starter WhitWhit

    (@whitwhit)

    woohoo! I had to change the body.blog to .single for it to work but it did, thank you!

    Thread Starter WhitWhit

    (@whitwhit)

    What Im trying to do is change the background to translucent, and the pic & border to a gradient. I understand how to do the gradient, just not how to target the different parts of font awesome’s icons (other than the pic, thanks to you!). Do you know how to target the rest by chance?

    Thread Starter WhitWhit

    (@whitwhit)

    Awesome, ok thank you both very much!

    Thread Starter WhitWhit

    (@whitwhit)

    got the code to paste pretty… 🙂

    Ok, stephencottontail – is that basically telling the customizer to read the html? and I should just keep the html in the customizer tagline field?

    Thread Starter WhitWhit

    (@whitwhit)

    <!DOCTYPE html>
    
    <html <?php language_attributes(); ?>>
    
    <head>
    
        <?php wp_head(); ?>
    
    </head>
    
    <body id="<?php print get_stylesheet(); ?>" <?php body_class(); ?>>
    
    <?php do_action( 'body_top' ); ?>
    
    <!--skip to content link-->
    <a class="skip-content" href="#main"><?php _e('Skip to content', 'chosen'); ?></a>
    
    <div id="overflow-container" class="overflow-container">
    	<div id="max-width" class="max-width">
    		<?php do_action( 'before_header' ); ?>
    		<header class="site-header" id="site-header" role="banner">
    			<div id="menu-primary-container" class="menu-primary-container">
    				<?php get_template_part( 'menu', 'primary' ); ?>
    				<?php ct_chosen_social_icons_output('header'); ?>
    			</div>
    			<button id="toggle-navigation" class="toggle-navigation" name="toggle-navigation" aria-expanded="false">
    				<span class="screen-reader-text"><?php _e('open menu', 'chosen'); ?></span>
    				<?php echo ct_chosen_svg_output( 'toggle-navigation' ); ?>
    			</button>
    			<div id="title-container" class="title-container">
    				<?php get_template_part('logo')  ?>
    				<?php if ( get_bloginfo( 'description' ) ) {
    					echo '<p class="tagline">' . get_bloginfo( 'description' ) .'</p>';
    				} ?>
    			</div>
    		</header>
    		<?php do_action( 'after_header' ); ?>
    		<section id="main" class="main" role="main">
    			<?php do_action( 'main_top' ); ?>
    Thread Starter WhitWhit

    (@whitwhit)

    Thread Starter WhitWhit

    (@whitwhit)

    No love! The content isnt in the parent themes either. This is what the header.php looks like.

    <body id=”<?php print get_stylesheet(); ?>” <?php body_class(); ?>>

    <?php do_action( ‘body_top’ ); ?>

    <!–skip to content link–>
    <?php _e(‘Skip to content’, ‘chosen’); ?>

    <div id=”overflow-container” class=”overflow-container”>
    <div id=”max-width” class=”max-width”>
    <?php do_action( ‘before_header’ ); ?>
    <header class=”site-header” id=”site-header” role=”banner”>
    <div id=”menu-primary-container” class=”menu-primary-container”>
    <?php get_template_part( ‘menu’, ‘primary’ ); ?>
    <?php ct_chosen_social_icons_output(‘header’); ?>
    </div>
    <button id=”toggle-navigation” class=”toggle-navigation” name=”toggle-navigation” aria-expanded=”false”>
    <span class=”screen-reader-text”><?php _e(‘open menu’, ‘chosen’); ?></span>
    <?php echo ct_chosen_svg_output( ‘toggle-navigation’ ); ?>
    </button>
    <div id=”title-container” class=”title-container”>
    <?php get_template_part(‘logo’) ?>
    <?php if ( get_bloginfo( ‘description’ ) ) {
    echo ‘<p class=”tagline”>’ . get_bloginfo( ‘description’ ) .'</p>’;
    } ?>
    </div>
    </header>
    <?php do_action( ‘after_header’ ); ?>
    <section id=”main” class=”main” role=”main”>
    <?php do_action( ‘main_top’ ); ?>

    Im assuming this is the line I wold have seen the tagline content in?

    echo ‘<p class=”tagline”>’ . get_bloginfo( ‘description’ ) .'</p>’;

    Unless the content is in another file? I dont see anything else it would be in though.

    Thread Starter WhitWhit

    (@whitwhit)

    you beat me, ok ill try that first

    Thread Starter WhitWhit

    (@whitwhit)

    Im playing around with it and the customizer just isnt recognizing the html. ive edited other parts of html via .php. The header.php files is labeled <!DOCTYPE html> but none of the content is in it. Shouldnt it be? I copied over the parent into a child file… maybe it didn’t copy the content over and its in the parent? Gonna check

    Thread Starter WhitWhit

    (@whitwhit)

    ah didnt work. i had hope… ha

Viewing 15 replies - 1 through 15 (of 16 total)