Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • The update has shut our website down twice.

    Thread Starter LinaTee

    (@linatee)

    This is it!!! Thank you

    Thread Starter LinaTee

    (@linatee)

    This is exactly what I wanted on the desktop but it looks awful in mobile. Do you have a suggestion?

    Thread Starter LinaTee

    (@linatee)

    Thank you for this code. When I use it, it does make the blogs go into 3 columns but the rest of the site is put in a single column. I just need the blog page to be in the columns.

    Thread Starter LinaTee

    (@linatee)

    I just saw that this theme has not been updated since 2015 so I’m guessing its out dated. Find a new theme…that sucks, I was excited about this theme.

    Thread Starter LinaTee

    (@linatee)

    Nevermind, I found this old post! Thank you for your help, time and amazing theme!

    Thread Starter LinaTee

    (@linatee)

    Thank you!!!! The footer is working now ( I have to use the CPanel or FTP to add to php function now instead of the childs theme)

    I still am not able to get the Social media Icons in the same line as the menu. For example,

    Participate Exhibits About Contact social media icons

    If this isn’t do able they are ok where they are.

    I also need to know where to put the code for my donate button. I would like it above the menu

    Thanks again for your help and this awesome theme!

    Thread Starter LinaTee

    (@linatee)

    Matt,
    Thank you. That pop up is fancy. Just what I was looking for

    Thread Starter LinaTee

    (@linatee)

    PS thank you rengeiw, your last comment allowed me to think about the code and fix it

    Thread Starter LinaTee

    (@linatee)

    I just went in and deleted the whole php code and saved it so the site is back. I did something to the main code and since I do not know what that looks like I couldn’t fix it. I’ll just start over.
    Thanks

    Thread Starter LinaTee

    (@linatee)

    Yes you are right, that was my mistake when pasting it. This is the code

    <?php
    /* Write your awesome functions below */

    /****** CODE TO PUT WIDGET BEFORE FEATURE IMAGE ON HOMEPAGE */

    add_filter( ‘tc_default_widgets’ , ‘add_featured_page_widget’ );
    function add_featured_page_widget( $defaults ) {
    $defaults[‘fp_widgets’] = array(
    ‘name’ => __( ‘Featured Pages Widget’ , ‘customizr’ ),
    ‘description’ => __( ‘Above the featured pages area on home’ , ‘customizr’ )
    );
    return $defaults;
    }

    add_action(‘__before_fp’ , ‘display_my_fp_widget’);
    function display_my_fp_widget() {
    dynamic_sidebar(‘fp_widgets’);
    }

    /****** END OF CODE FOR WIDGET */

    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    add_filter( ‘tc_credits_display’, ‘my_credits_display’ );
    function my_credits_display($html) {
    $logo_src = esc_attr ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
    if ( empty($logo_src) )
    return $html;
    if ( is_numeric($logo_src) ) {
    $_attachment_data = wp_get_attachment_image_src( $logo_src , ‘large’ );
    $logo_src = $_attachment_data[0];
    }
    ?>
    <div class=”span4 credits”>
    <?php
    $credits = sprintf( ‘<p> · © %1$s %4$s · Designed by %5$s ·</p>’,
    esc_attr( date( ‘Y’ ) ),
    esc_url( home_url() ),
    esc_attr(get_bloginfo()),
    ‘<img src=”‘.$logo_src.'” alt=”‘.esc_attr(get_bloginfo()).'”>’,
    Press Customizr
    );
    echo $credits;
    ?>
    </div>
    <?php
    }

    ——————–

    Thread Starter LinaTee

    (@linatee)

    Menaka S. thank you for your quick response. I was doing a travel day yesterday and didn’t see this until now. Thank you.

    So I can not get to the child’s theme php.function through the site but in the C Panel I can(please look at bottom of all my writing). I put the code in from your site to add a widget before the feature images on the home page…which all worked out great. It wasn’t until I added the new code that I copied above (the link) and went to look at the site that the error appeared.

    I have never touched the php function because I have always been terrified of it and breaking the site, which looks like I did.
    I also found this link on you tube that I think could help https://www.youtube.com/watch?v=434sUQbBum8&list=TLuJ4UpHDyyQQ but I’m nervous about doing it because I haven’t ever done anything like this.

    <?php
    /* Write your awesome functions below */

    /****** CODE TO PUT WIDGET BEFORE FEATURE IMAGE ON HOMEPAGE */

    add_filter( ‘tc_default_widgets’ , ‘add_featured_page_widget’ );
    function add_featured_page_widget( $defaults ) {
    $defaults[‘fp_widgets’] = array(
    ‘name’ => __( ‘Featured Pages Widget’ , ‘customizr’ ),
    ‘description’ => __( ‘Above the featured pages area on home’ , ‘customizr’ )
    );
    return $defaults;
    }

    add_action(‘__before_fp’ , ‘display_my_fp_widget’);
    function display_my_fp_widget() {
    dynamic_sidebar(‘fp_widgets’);
    }

    /****** END OF CODE FOR WIDGET */

    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    add_filter( ‘tc_credits_display’, ‘my_credits_display’ );
    function my_credits_display($html) {
    $logo_src = esc_attr ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
    if ( empty($logo_src) )
    return $html;
    if ( is_numeric($logo_src) ) {
    $_attachment_data = wp_get_attachment_image_src( $logo_src , ‘large’ );
    $logo_src = $_attachment_data[0];
    }
    ?>
    <div class=”span4 credits”>
    <?php
    $credits = sprintf( ‘<p> · © %1$s %4$s · Designed by %5$s ·</p>’,
    esc_attr( date( ‘Y’ ) ),
    esc_url( home_url() ),
    esc_attr(get_bloginfo()),
    ‘<img src=”‘.$logo_src.'” alt=”‘.esc_attr(get_bloginfo()).'”>’,
    Press Customizr
    );
    echo $credits;
    ?>
    </div>
    <?php

    add_action(‘__before_fp’ , ‘display_my_fp_widget’);
    function display_my_fp_widget() {
    dynamic_sidebar(‘fp_widgets’);
    }

    /****** END OF CODE FOR WIDGET */

    Thread Starter LinaTee

    (@linatee)

    I’m so embarrassed. That is exactly what I didn’t do. I did watch the documentation and missed that simple step, I’m sorry. Thank you for taking your time to help me. I was getting so frustrated and thought I had followed everything in the documentation.
    I love this theme. Thank you for your help.

    Thread Starter LinaTee

    (@linatee)

    I have deleted and reinstalled the theme. I am using 1.1.5 version and still nothing is happening. It is showing up in the customizer but not on my site or in the preview section. I have the newest version of WordPress too. What is wrong? Please help.
    Thanks

    Thread Starter LinaTee

    (@linatee)

    YOUR THE BEST!!!! Those were the main codes I was messing with but didn’t have the styles correct. Thank you.

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