New Landing How can we help? Themeforest Theme Support Neighborhood Change background color of footer to one image

Viewing 15 posts - 1 through 15 (of 22 total)
  • #227888
    Slim
    Member
    Post count: 422

    Hi friends,
    i want to change backgroun color of footer to a background image.

    How can i do that? Thankz!

    #227892
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    You can target it with this css, just enter the url of the image inside the parenthesis.

    
    #footer {
            background: url();
    }

    Check this article about the background properties.
    http://www.w3schools.com/css/css_background.asp

    Hope it helps.

    -Rui

    #227908
    Slim
    Member
    Post count: 422
    This reply has been marked as private.
    #227915
    Slim
    Member
    Post count: 422
    This reply has been marked as private.
    #227920
    Slim
    Member
    Post count: 422

    I solved this last issue;) with this code
    li.cat-item.cat-item-153 {
    display:none!important;
    }
    etc..etc

    #227925
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Regarding the translations try to clear the browser cache and cookies the Find and Replace should work if it was working before.

    -Rui

    #227933
    Slim
    Member
    Post count: 422

    Hi Rui,
    the problem persists! :S

    #228036
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Will forward to my colleague, maybe he can sort it out.

    -Rui

    #228055
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please use this code at functions.php of child theme.

    add_filter( 'woocommerce_product_categories_widget_args', 'wpsites_exclude_product_cat_widget' );
    
    function wpsites_exclude_product_cat_widget( $args ) {
    
    $args['exclude'] = array('16','46'); // MUST CHNAGE THE ID OF CATEGORIES HERE
    
    return $args;
    }

    Thanks
    Mohammad

    #228092
    Slim
    Member
    Post count: 422

    Hi, this code it’s for what ? hide categories ? I did that with css man

    Thankz!

    #228100
    Slim
    Member
    Post count: 422

    Hi,
    But it should be safer that code than as CSS. I deleted the CSS and put this code and it works .
    I still having trouble translating some nomes.. The plugin ” find and replace ” it’s not working like before, i guess.

    Thankz

    #228112
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Can you please list the names of untranslated strings?
    Thanks
    Mohammad

    #228120
    Slim
    Member
    Post count: 422

    <span>View shopping bag</span>
    <span>Proceed to checkout</span>
    Quantity:
    Unit Price:
    items in the shopping bag
    Shipping

    etc…
    Thankz man!

    Attachments:
    You must be logged in to view attached files.
    #228206
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this code at functions.php of child theme.

    function sf_text_strings( $translated_text, $text, $domain ) {
    $translated_text = strtolower($translated_text);
    switch ( $translated_text ) {
    case 'View shopping bag' :
    $translated_text = __( 'Visualizar o carrinho', $domain );
    break;
    case 'Proceed to checkout' :
    $translated_text = __( 'Finalizar a compra', $domain );
    break;
    }
    return $translated_text;
    }
    add_filter( 'gettext', 'sf_text_strings', 20, 3 );

    Thanks
    Mohammad

    Thanks
    Mohammad

    #228306
    Slim
    Member
    Post count: 422

    Hi my friend, i put this code and doesn’t work(image attached).

    I put the code on commentary because doesn’t work.

    You can access to child theme with plugin WPIDE.

    Thankz man!

Viewing 15 posts - 1 through 15 (of 22 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register