Forum Replies Created

Viewing 30 posts - 60,001 through 60,030 (of 67,558 total)
  • Author
    Posts
  • in reply to: delete link (no lightbox) from AJAX porfolio image #241524

    Hey!

    Yes, that is possible. Just add this on the child theme’s functions.php:

    /*
     * Register frontend javascripts:
     */
    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    	wp_enqueue_script( 'avia-default-child' );
    }

    Create a js folder with the avia.js file inside.

    Regards,
    Ismael

    in reply to: Header is screwy since update—help! #241523

    Hi!


    @biklops
    : I checked the website but I don’t see any social icons there. Did you just hide it via CSS or the new header options work?


    @drjill
    : We’re really sorry about that. We’re just trying to improve the users’ overall experience with Enfold by giving you more options like the ones we added for the header options. A lot of users were requesting for css modifications like header height, logo position, social icons position, phone numbers etc because they are not available on the previous header options. Now, you can do all those things without adding any css or changing any code. There will be certain setbacks but we hope that you appreciate Kriesi’s efforts.

    Anyway, you can recopy the header.php file from the parent theme folder and replace the one that you have on your child theme. You can find most of the header codes like logo, menu etc on includes > helper-main-menu.php file.

    Regards,
    Ismael

    in reply to: Background for Alternate Content #241521

    Hey phil!

    Have you tried to recreate the color section? Please give us a link to the website. A screenshot explaining the issue will help.

    Regards,
    Ismael

    in reply to: Youtube HD slider fullscreen #241519

    Hi romano2!

    AFAIK there is no option that you can append on the youtube url to force the video to play hd. You can only set the videos that you uploaded on your account to play as hd.

    Go to YouTube and sign into your account (if you’re not already signed in). Look for the Youtube Settings > Playback > Video playback quality > enable the “Always play HD on fullscreen (when available)”.

    Regards,
    Ismael

    in reply to: Center easyslider caption text, and another question #241518

    Hey ckosheff!

    1.) You can add something like this on Quick CSS to adjust the position of the caption:

    .avia-caption {
    bottom: 40px;
    left: 20%;
    }

    2.) Please edit includes > loop-index.php, replace all of it with this code: http://pastebin.com/cYBSQghy

    Cheers!
    Ismael

    in reply to: ADVERTISING WIDGET #241517

    Hi silviouk!

    You can close the gap between two ad widget using this on Quick CSS or custom.css:

    .avia_partner_widget:last-child {
    margin-top: -20px;
    }

    Cheers!
    Ismael

    Hi!

    That is possible but the tooltip will pop out over and over again. You can add something like this on Quick CSS or custom.css:

    .avia-tooltip {
    margin-top: 80px;
    margin-left: 5px;
    }

    Cheers!
    Ismael

    in reply to: Which config.php file? #241499

    Hi!

    I’m not sure what you mean but Dude said to that the patch has been included on Enfold 2.6.2. All you need to do is download the latest version of the theme on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: Cyrillic font problem #241497

    Hi Finlando!

    Please use this instead: I’m not sure why you have duplicated variables for the same font:

    add_filter('avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Oranienbaum'] = 'Oranienbaum&subset=latin,cyrillic';
    return $fonts;
    }
    
    add_filter('avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['Roboto Condensed'] = 'Roboto Condensed:700,400,300&subset=latin,cyrillic';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Redirect Link Post Format #241493

    Hey!

    The link formatted posts should automatically link to the specified url. Make sure that you added the link on the text editor like this for example: http://kriesi.at

    Regards,
    Ismael

    Hey!

    Sorry, you didn’t mention anything about that. We can only give support for the actual theme.

    Regards,
    Ismael

    Hi themeforesttony!

    Maybe, you can just hide the button using css. What pages do you want the buttons not to show? Regarding the plugin shortcode not working, please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Social Icons On Logo on iPhone #241463

    Hey!

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    right: -60px;
    position: absolute;
    }
    
    #top .social_bookmarks li a {
    width: 20px;
    min-height: 20px;
    font-size: 15px;
    }
    
    #top .social_bookmarks li {
    width: 25px;
    }
    
    #top .social_bookmarks li a {
    line-height: 20px;
    }
    }

    Best regards,
    Ismael

    in reply to: Override Font Color #241461

    Hey HiDrew!

    Please add this on Quick CSS or custom.css:

    #av_section_2.main_color .av_textblock_section {
    color: #ffffff !important;
    z-index: 9999;
    position: relative;
    }

    Best regards,
    Ismael

    in reply to: Remove dates displayed in 'Child Latest News' widget? #241457

    Hey!

    You can add this on the child theme’s style.css:

    .news-time {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Menu Widget Bullets #241451

    Hey!

    Please use this:

    #nav_menu-2 ul.disc, #nav_menu-2 .entry-content-wrapper ul {
    list-style: none outside;
    }
    
    .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
    background: transparent;
    border: none;
    box-shadow: none;
    }

    Best regards,
    Ismael

    in reply to: Transparent Header not working #241449

    Hi mstell168!

    Please add this on Quick CSS or custom.css:

    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 0;
    }
    
    .header_color .container_wrap_meta, #header_main .container {
    background-color: transparent;
    }

    Regards,
    Ismael

    in reply to: Back end display issues after updating to 2.6.2 #241448

    Hey!

    Do you mind posting the login details here? We would like to check it. Other than plugin conflict and corrupted theme files, I’m not sure why the theme options would act like that.

    Best regards,
    Ismael

    in reply to: Trouble with Blog Posts showing on Frontpage…again. #241447

    Hi themeforesttony!

    Please reset the settings on Settings > Reading to default. You don’t to set anything there. Edit the homepage then add the Blog Posts element if you want the posts to show on the frontpage.

    Best regards,
    Ismael

    in reply to: Maps Element is hiding behind website content… #241037

    Hi IHEA!

    Can you please give us a link to the website? Kriesi already patched the google maps issue on the latest update of Enfold.

    Regards,
    Ismael

    in reply to: How to change H1 font size? #241036

    Hi bakbek!

    Can you please point us to the exact element that you’re trying to change? You can use this on Quick CSS or custom.css:

    h1 {
    font-size: 30px;
    line-height: 1.1em;
    margin-bottom: 10px;
    }

    Regards,
    Ismael

    in reply to: Shortcodes not rendered on mobile devices #241035

    Hi conversations!

    You’re using a very old version of the theme, Enfold 2.4.2. Please download the latest version 2.6.2 from your themeforest account then update the theme via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Some of the content might not work on the latest version of enfold. Please create them from scratch. The header settings will be a bit different and you might need to reconfigure the settings.

    Cheers!
    Ismael

    Hi lisa_intesolv!

    Do you mind posting the link of the website here? We would like to inspect it. Do you have the latest version of Enfold?

    Best regards,
    Ismael

    in reply to: Portfolio sort by title and title display on hover #241031

    Hey!

    Can you please post the whole code on http://pastebin.com/? I think there’s something wrong with it.

    Regards,
    Ismael

    in reply to: Header image is repeated down the page? #241028

    Hi midischool!

    Do you mind posting the link of the website here? We would like to inspect it.

    Regards,
    Ismael

    in reply to: Problem with blog pages #241027

    Hi!

    Usually, switching it back to pretty permalinks will work just fine. Please go the wp root folder then delete the .htaccess file. Flush the settings on Settings > Permalink. Switch to your desired permalink setting then click the “Save” button once. Reset the front page settings on Settings > Reading to default.

    Regards,
    Ismael

    in reply to: Revolution Slider won't go past 2nd slide. #241024

    Hey!

    Deactivate all plugins, see if that helps. Remove browser cache then reload the page a few times. Please post the login details here and set it as a private reply.

    Cheers!
    Ismael

    in reply to: Track contact page submissions (Google Analytics) #241022

    Hey pinzanoaltagl!

    You can use a plugin like http://wordpress.org/plugins/contact-form-7/ and follow the tutorial here: http://wordpress.org/support/topic/contact-form-7-adwords-conversion-tracking?replies=4 to implement the conversion tracking.

    Regards,
    Ismael

    Hey!

    On the latest version of Enfold, you’ll have the Import / Export panel where you can export and import the theme settings. Export the theme settings file before updating then import it back after. Anyway, the message “Updating this theme will lose any customizations you have made.” means that you will lose any hard coded changes that you made directly on the theme files but you will not lose the theme options.

    Cheers!
    Ismael

    in reply to: add featured category over featured image #241012

    Hi sergeesteves!

    I’m sorry but I’m not sure what you mean by “featured category’s name”. Can you please post a screenshot?

    Regards,
    Ismael

Viewing 30 posts - 60,001 through 60,030 (of 67,558 total)