Forum Replies Created

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • in reply to: inserting customised logo #1113
    LogoLogics
    Participant

    Oh, oeps I see I forgot something.
    I will try that now, sory.

    in reply to: inserting customised logo #1112
    LogoLogics
    Participant

    Hi,

    Just replaced it but results in no images at all at the top http://www.logologics.nl/Carels/

    <?php
    $social_icons = ”;
    $et_rss_url = ” != et_get_option(‘lucid_rss_url’) ? et_get_option(‘lucid_rss_url’) : get_bloginfo(‘rss2_url’);
    if ( ‘on’ == et_get_option(‘lucid_show_twitter_icon’) ) $social_icons[‘twitter’] = array(‘image’ => get_bloginfo(‘stylesheet_url’) . ‘/images/twitter.png’, ‘url’ => et_get_option(‘lucid_twitter_url’), ‘alt’ => ‘Twitter’ );
    if ( ‘on’ == et_get_option(‘lucid_show_rss_icon’) ) $social_icons[‘rss’] = array(‘image’ => get_bloginfo(‘stylesheet_url’) . ‘/images/rss.png’, ‘url’ => $et_rss_url, ‘alt’ => ‘Rss’ );
    if ( ‘on’ == et_get_option(‘lucid_show_facebook_icon’) ) $social_icons[‘facebook’] = array(‘image’ => get_bloginfo(‘stylesheet_url’) . ‘/images/facebook.png’, ‘url’ => et_get_option(‘lucid_facebook_url’), ‘alt’ => ‘Facebook’ );
    $social_icons = apply_filters(‘et_social_icons’, $social_icons);
    if ( !empty($social_icons) ) {
    echo ‘<div id=”social-icons”>’;
    foreach ($social_icons as $icon) {
    echo ““;
    }
    echo ‘</div> <!– end #social-icons –>’;

    in reply to: inserting customised logo #1111
    LogoLogics
    Participant

    Hi and thx for your quick respons!

    I will try this and let you know if this works.
    Would be great if the header.php would be included in the next update as well.
    My custumazations in the footer.php where perfectly tranfered with your pluging.

    Annie

    in reply to: inserting customised logo #1107
    LogoLogics
    Participant

    By the way, to visualize it more, this is my test url: http://www.logologics.nl/Carels/
    The parent theme has black social icons. I replaced them with my own in the parents images folder.
    You can see how that looks in the parent theme before the update: http://www.specialistinvastgoedrecht.nl/

    After the update, it returns to the Original images.

    Thx,
    Annie

    • This reply was modified 10 years, 7 months ago by .
    in reply to: inserting customised logo #1106
    LogoLogics
    Participant

    Hi,

    I am struggling with he same issue here.
    By the way, great plugin!

    I have copied the header.php and images folder from the parent and to the child theme folder.
    The images keep pointing to my parent and not to my child theme, therefore, it only shows my costum images, if
    I change them in the parent.

    My parent folder is “lucid”
    My child theme folder is “lucid-child-01″

    I tried replacing the lucid to lucid-child-01 but that does not work either.
    Could you help me and tell mee what I need to replace in my child theme ( created with your plugin ) to make the child images point to the child images folder please?
    Below the code in the header.php

    <?php
    $social_icons = ”;
    $et_rss_url = ” != et_get_option(‘lucid_rss_url’) ? et_get_option(‘lucid_rss_url’) : get_bloginfo(‘rss2_url’);
    if ( ‘on’ == et_get_option(‘lucid_show_twitter_icon’) ) $social_icons[‘twitter’] = array(‘image’ => get_bloginfo(‘template_directory’) . ‘/images/twitter.png’, ‘url’ => et_get_option(‘lucid_twitter_url’), ‘alt’ => ‘Twitter’ );
    if ( ‘on’ == et_get_option(‘lucid_show_rss_icon’) ) $social_icons[‘rss’] = array(‘image’ => get_bloginfo(‘template_directory’) . ‘/images/rss.png’, ‘url’ => $et_rss_url, ‘alt’ => ‘Rss’ );
    if ( ‘on’ == et_get_option(‘lucid_show_facebook_icon’) ) $social_icons[‘facebook’] = array(‘image’ => get_bloginfo(‘template_directory’) . ‘/images/facebook.png’, ‘url’ => et_get_option(‘lucid_facebook_url’), ‘alt’ => ‘Facebook’ );
    $social_icons = apply_filters(‘et_social_icons’, $social_icons);
    if ( !empty($social_icons) ) {
    echo ‘<div id=”social-icons”>’;
    foreach ($social_icons as $icon) {
    echo ““;
    }
    echo ‘</div> <!– end #social-icons –>’;

Viewing 5 posts - 16 through 20 (of 20 total)