Forum Replies Created

Viewing 18 posts - 61 through 78 (of 78 total)
  • Author
    Posts
  • in reply to: Add Houzz badge to social icons #740324

    I just sent this in the Private Content.
    Thanks in advance – not sure what/where to get the placeholder value.
    Chris

    in reply to: Add Houzz badge to social icons #738027

    I am trying to add Houzz to my social icons as well. I went to Fontello.com and searched for Houzz and downloaded a ZIP file.
    I added the this code to my child theme functions.php – using the zip file name…
    I do NOT see Houzz in my social list however… did I do it incorrectly??
    Thanks for your help in advance!

    Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘icon_name’] = array( ‘font’ =>’fontello-828d0fbb’, ‘icon’ => ‘houzz’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Icon Label’] = ‘icon_name’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    in reply to: How to Add a Sidebar to Pages/Posts without Sidebar Option #727270

    Yigit
    Wow! Thank you so much.
    Really appreciate this help.
    Chris

    in reply to: How to Add a Sidebar to Pages/Posts without Sidebar Option #725546

    Guys
    thanks for writing back. if you go to the dashboard, click IDX pages, then Ted Baker.
    this is a custom post type maybe?? anyway I went to widgets and made a widget called TedBaker and put what I want on the sidebar.

    these idx pages only seem to use the default sidebar.

    i have 6 agents that will all need a widget for themselves. I am hoping to have the side bar “layout” standard controls on the side so that I can choose what sidebar goes on each idx page

    make sense?
    thanks in advance,
    chris

    in reply to: full screen slider not responsive #706746

    Thank you guys!
    Chris

    in reply to: full screen slider not responsive #705408

    I am having the same issue on http://www.chrishudsoncouture.com/new/
    when on mobile and tablet the full screen slider does not scale – you can’t even tell what the images are.
    The h1 font doesn’t scale either…. did I do something wrong?
    Thanks in advance,
    Chris

    in reply to: increase social media icon sizes header #704974

    When I used this code, including the hover line at the end, it cuts my social icons in half, missing the bottom half.
    Ideas?
    Chris

    in reply to: Adding Yelp Icon #689414

    Thanks!!!
    Chris

    in reply to: Adding Yelp Icon #689354

    Yigit,

    That worked – – – but it made the Yelp Icon disappear.
    Please let me know.

    Chris

    in reply to: Adding Yelp Icon #689348

    Yigit
    Thanks – that worked

    While I have your help – how can I make them larger and a little further apart???

    Chris

    in reply to: Adding Yelp Icon #689326

    Thanks for the speedy response.
    There are many choices on that page
    1. not sure which one to use
    2. do I delete what I added to functions.php in child theme first and add the one you tell me OR is this in addition to what I have put there?

    Thanks,
    Chris

    in reply to: Adding Yelp Icon #689306

    here you go.

    in reply to: Adding Yelp Icon #689289

    Have you guys considered just adding Yelp to the theme??? It would be useful.
    Chris

    in reply to: Adding Yelp Icon #689287

    Can someone help???

    I followed this thread and it did not work… I see a red dot when I rollover where the Yelp icon is to be but nothing there but white space and then a dot when rollover…

    I added this to functions.php on my child theme:

    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons[‘yelp’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’);
    return $icons;
    }

    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons[‘Yelp’] = ‘yelp’;
    return $icons;
    }

    And this to the Quick CSS:

    #top #wrap_all .av-social-link-yelp:hover a {
    background-color: red;
    color: white;
    }
    #top #wrap_all .av-social-link-yelp: a {
    background-color: white;
    color: red;
    }

    Thanks in advance.
    Chris

    Andy,
    Thanks. The social worked great and I tweaked it with CSS – looks nice – thanks again.

    However, the left side header – adding widget did not.
    When I added the code to function.php the whole site went white screen.

    The last lines of functions.php were:

    /*
    * register custom functions that are not related to the framework but necessary for the theme to run
    */

    require_once( ‘functions-enfold.php’);

    /*
    * add option to edit elements via css class
    */
    // add_theme_support(‘avia_template_builder_custom_css’);

    I tried to add it in several areas within these last lines including the very bottom. I also made sure that there was not a “blank” last line… It did not work… this is the functions.php in the main ENFOLD theme folder… I have a child theme – tried placing the code you mention in that child theme too.. did not work.

    Can you tell me where to place your code of – –

    add_action( ‘ava_main_header’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }

    Thanks again for your help!
    Chris

    Yes, thank you.
    The website in development is at http://reesehouse.msdev.info/ and the layout is at – http://reesehouse.msdev.info/reese-house-layout.jpg
    for reference.
    thank you again for answering this for us.
    chris

    I figured it out. thanks anyway.
    I assumed the Add a Widget would take care of the functions.php – apparently it does not.
    thanks,
    chris

    Here you go… thanks in advance. chris

Viewing 18 posts - 61 through 78 (of 78 total)