Forum Replies Created

Viewing 11 posts - 31 through 41 (of 41 total)
  • Author
    Posts
  • in reply to: Breadcrumbs remove home link #643230

    Hey Basilis,

    Thanks for the tip, it worked with this in combination with removing the “a”…so simple after hours spent! Thanks :)

    in reply to: Breadcrumbs remove home link #643149

    Hey Kriesi team,

    Sorry but I’ve posted this a few times, am I not eligible for support or is this a feature that can’t be changed?

    Please let me know either way so I can move forward with the next step in getting this solved, thanks!

    in reply to: Page Title and Special Heading #643087

    You can try the in general styling > quick CSS

    .entry-title {
    font-family: ‘Montserrat’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    font-size: 24px!important;
    color: #38424B!important;
    }

    You may want to change the size for mobile.

    in reply to: Page Title and Special Heading #643085

    Hey Tara, are you trying to style the Title of the page to look like the special heading?

    in reply to: How To Change Bread Crumbs "Home" Link?? :) #643079

    Hey guys, not sure if I’m no longer able to receive support or if this is just a tough issue that’s hard to solve on changing the Home link in the breadcrumbs, giving it another bump.

    in reply to: How To Change Bread Crumbs "Home" Link?? :) #643054

    Figured out how to change logo link from another thread…(custom functions plugin):

    add_filter(‘avf_logo_link’,’av_change_logo_link’);
    function av_change_logo_link($link)
    {
    $link = “http://kriesi.at”;
    return $link;
    }

    Still working on the breadcrumbs home link.

    in reply to: How To Change Bread Crumbs "Home" Link?? :) #643047

    Hey guys just giving this a little bump In case anyone can help with this type of thing :)

    • This reply was modified 8 years, 4 months ago by AD.
    in reply to: Google Font File Slowing Ping Test & Mail Sign up #635022

    Two other questions if you don’t mind!

    I recently integrated BBPress and am customizing it, is there a way to add the “Private Content” as this forum has?

    Is the social feature on the front page of Kriesi.at an Enfold feature with the opening door? Thanks again.

    in reply to: Custom Banner Image on Enfold WooCommerce Product Pages #560025

    Hey Rikard,

    I appreciate the response and support, you guys are awesome :) I have already figured it out though so this can be marked solved.

    In case anyone needs to know how to create a header banner image (that links) on WooCommerce/Enfold product pages try this in functions.php (using a plugin called “Custom Functions”):

    add_action('ava_after_main_container', 'add_banner_before_breadcrumb'); 
    function add_banner_before_breadcrumb() {
    	if ( is_product() )
    	{
    		echo '<h1 style="text-align: center;"><a href="http://www.yourwebsite.com" target="_blank">
    <img border="0" alt="Banner Name" src="http://www.yourwebsite.com/wp-content/uploads/shop-banner-image.jpg" style="float: left; z-index: 99999; width: 100%;"></h1>';
    	}
    }

    Hey thanks Basilis!

    I included the sidebar example pages below.

    The background image overlay works until the height is changed in the section layout.

    The facebook likebox sidebar widget is not showing up in Firefox, any tips on this?

Viewing 11 posts - 31 through 41 (of 41 total)