Viewing 30 results - 85,711 through 85,740 (of 142,740 total)
  • Author
    Search Results
  • #732974

    Hi,

    Great, glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #732972

    In reply to: Scroll Down button

    Hi,

    Thanks for the link. Please try the following in Quick CSS under Enfold->General Styling:

    
    #top .scroll-down-link {
        color: red !important;
        font-size: 120px !important;
    }

    Best regards,
    Rikard

    #732963

    In reply to: Contact Form 7

    Hi,

    Great, glad you figured it out and thanks for sharing the solution :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #732952
    omardimassi
    Participant

    Hello,

    I run into a problem. I’m trying to add a custom css section to my element builder.
    I saw documantation about it and I follow the steps but it dont work.

    When I paste this line: add_theme_support(‘avia_template_builder_custom_css’); into my functions.php nothing happens. Maybe can you guys help me out what the problem is.
    This is my function.php page:

    <?php

    global $avia_config;

    /*
    * if you run a child theme and dont want to load the default functions.php file
    * set the global var below in you childthemes function.php to true:
    *
    * example: global $avia_config; $avia_config[‘use_child_theme_functions_only’] = true;
    * The default functions.php file will then no longer be loaded. You need to make sure then
    * to include framework and functions that you want to use by yourself.
    *
    * This is only recommended for advanced users
    */

    if(isset($avia_config[‘use_child_theme_functions_only’])) return;

    /*
    * create a global var which stores the ids of all posts which are displayed on the current page. It will help us to filter duplicate posts
    */
    $avia_config[‘posts_on_current_page’] = array();

    /*
    * wpml multi site config file
    * needs to be loaded before the framework
    */

    require_once( ‘config-wpml/config.php’ );

    /*
    * These are the available color sets in your backend.
    * If more sets are added users will be able to create additional color schemes for certain areas
    *
    * The array key has to be the class name, the value is only used as tab heading on the styling page
    */

    $avia_config[‘color_sets’] = array(
    ‘header_color’ => ‘Logo Area’,
    ‘main_color’ => ‘Main Content’,
    ‘alternate_color’ => ‘Alternate Content’,
    ‘footer_color’ => ‘Footer’,
    ‘socket_color’ => ‘Socket’
    );

    /*
    * add support for responsive mega menus
    */

    add_theme_support(‘avia_mega_menu’);

    /*
    * deactivates the default mega menu and allows us to pass individual menu walkers when calling a menu
    */

    add_filter(‘avia_mega_menu_walker’, ‘__return_false’);

    /*
    * adds support for the new avia sidebar manager
    */

    add_theme_support(‘avia_sidebar_manager’);

    /*
    * Filters for post formats etc
    */
    //add_theme_support(‘avia_queryfilter’);

    /*
    * Register theme text domain
    */
    if(!function_exists(‘avia_lang_setup’))
    {
    add_action(‘after_setup_theme’, ‘avia_lang_setup’);
    function avia_lang_setup()
    {
    $lang = apply_filters(‘ava_theme_textdomain_path’, get_template_directory() . ‘/lang’);
    load_theme_textdomain(‘avia_framework’, $lang);
    }
    avia_lang_setup();
    }

    ##################################################################
    # AVIA FRAMEWORK by Kriesi

    # this include calls a file that automatically includes all
    # the files within the folder framework and therefore makes
    # all functions and classes available for later use

    require_once( ‘framework/avia_framework.php’ );

    ##################################################################

    /*
    * Register additional image thumbnail sizes
    * Those thumbnails are generated on image upload!
    *
    * If the size of an array was changed after an image was uploaded you either need to re-upload the image
    * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
    */

    $avia_config[‘imgSize’][‘widget’]
    = array(‘width’=>36, ‘height’=>36);
    // small preview pics eg sidebar news
    $avia_config[‘imgSize’][‘square’]
    = array(‘width’=>180, ‘height’=>180);
    // small image for blogs
    $avia_config[‘imgSize’][‘featured’]
    = array(‘width’=>1500, ‘height’=>430 );
    // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’][‘featured_large’]
    = array(‘width’=>1500, ‘height’=>630 );
    // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’][‘extra_large’]
    = array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false);
    // images for fullscrren slider
    $avia_config[‘imgSize’][‘portfolio’]
    = array(‘width’=>495, ‘height’=>400 );
    // images for portfolio entries (2,3 column)
    $avia_config[‘imgSize’][‘portfolio_small’]
    = array(‘width’=>260, ‘height’=>185 );
    // images for portfolio 4 columns
    $avia_config[‘imgSize’][‘gallery’]
    = array(‘width’=>845, ‘height’=>684 );
    // images for portfolio entries (2,3 column)
    $avia_config[‘imgSize’][‘magazine’]
    = array(‘width’=>710, ‘height’=>375 );
    // images for magazines
    $avia_config[‘imgSize’][‘masonry’]
    = array(‘width’=>705, ‘height’=>705 , ‘crop’ => false);
    // images for fullscreen masonry
    $avia_config[‘imgSize’][‘entry_with_sidebar’]
    = array(‘width’=>845, ‘height’=>321);
    // big images for blog and page entries
    $avia_config[‘imgSize’][‘entry_without_sidebar’]= array(‘width’=>1210, ‘height’=>423 );
    // images for fullsize pages and fullsize slider
    $avia_config[‘imgSize’] = apply_filters(‘avf_modify_thumb_size’, $avia_config[‘imgSize’]);

    $avia_config[‘selectableImgSize’] = array(
    ‘square’
    => __(‘Square’,’avia_framework’),
    ‘featured’
    => __(‘Featured Thin’,’avia_framework’),
    ‘featured_large’
    => __(‘Featured Large’,’avia_framework’),
    ‘portfolio’
    => __(‘Portfolio’,’avia_framework’),
    ‘gallery’
    => __(‘Gallery’,’avia_framework’),
    ‘entry_with_sidebar’ => __(‘Entry with Sidebar’,’avia_framework’),
    ‘entry_without_sidebar’
    => __(‘Entry without Sidebar’,’avia_framework’),
    ‘extra_large’
    => __(‘Fullscreen Sections/Sliders’,’avia_framework’),
    );

    avia_backend_add_thumbnail_size($avia_config);

    if ( ! isset( $content_width ) ) $content_width = $avia_config[‘imgSize’][‘featured’][‘width’];

    /*
    * register the layout classes
    *
    */

    $avia_config[‘layout’][‘fullsize’]
    = array(‘content’ => ‘av-content-full alpha’, ‘sidebar’ => ‘hidden’,
    ‘meta’ => ”,’entry’ => ”);
    $avia_config[‘layout’][‘sidebar_left’]
    = array(‘content’ => ‘av-content-small’,
    ‘sidebar’ => ‘alpha’ ,’meta’ => ‘alpha’, ‘entry’ => ”);
    $avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘av-content-small alpha’,’sidebar’ => ‘alpha’, ‘meta’ => ‘alpha’, ‘entry’ => ‘alpha’);

    /*
    * These are some of the font icons used in the theme, defined by the entypo icon font. the font files are included by the new aviaBuilder
    * common icons are stored here for easy retrieval
    */

    $avia_config[‘font_icons’] = apply_filters(‘avf_default_icons’, array(

    //post formats + types
    ‘standard’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue836’),
    ‘link’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue822’),
    ‘image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80f’),
    ‘audio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue801’),
    ‘quote’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue833’),
    ‘gallery’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80e’),
    ‘video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80d’),
    ‘portfolio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue849’),
    ‘product’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),

    //social
    ‘behance’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue915’),
    ‘dribbble’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fe’),
    ‘facebook’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f3’),
    ‘flickr’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ed’),
    ‘gplus’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f6’),
    ‘linkedin’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fc’),
    ‘instagram’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue909’),
    ‘pinterest’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f8’),
    ‘skype’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue90d’),
    ‘tumblr’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fa’),
    ‘twitter’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f1’),
    ‘vimeo’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ef’),
    ‘rss’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue853’),
    ‘youtube’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue921’),
    ‘xing’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue923’),
    ‘soundcloud’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue913’),
    ‘five_100_px’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue91d’),
    ‘vk’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue926’),
    ‘reddit’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue927’),
    ‘digg’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue928’),
    ‘delicious’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue929’),
    ‘mail’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue805’),
    //woocomemrce
    ‘cart’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),
    ‘details’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue84b’),

    //bbpress
    ‘supersticky’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808’),
    ‘sticky’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809’),
    ‘one_voice’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83b’),
    ‘multi_voice’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83c’),
    ‘closed’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue824’),
    ‘sticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808\ue824’),
    ‘supersticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809\ue824’),
    //navigation, slider & controls
    ‘play’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),
    ‘pause’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue899’),
    ‘next’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue879’),
    ‘prev’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue878’),
    ‘next_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87d’),
    ‘prev_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87c’),
    ‘close’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue814’),
    ‘reload’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue891’),
    ‘mobile_menu’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8a5’),
    //image hover overlays
    ‘ov_external’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue832’),
    ‘ov_image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue869’),
    ‘ov_video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),

    //misc
    ‘search’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue803’),
    ‘info’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue81e’),
    ‘clipboard’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8d1’),
    ‘scrolltop’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue876’),
    ‘scrolldown’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue877’),
    ‘bitcoin’
    => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue92a’),

    ));

    add_theme_support( ‘automatic-feed-links’ );

    ##################################################################
    # Frontend Stuff necessary for the theme:
    ##################################################################

    /*
    * Register frontend javascripts:
    */
    if(!function_exists(‘avia_register_frontend_scripts’))
    {
    if(!is_admin()){
    add_action(‘wp_enqueue_scripts’, ‘avia_register_frontend_scripts’);
    }

    function avia_register_frontend_scripts()
    {
    $template_url = get_template_directory_uri();
    $child_theme_url = get_stylesheet_directory_uri();

    //register js
    wp_enqueue_script( ‘avia-compat’, $template_url.’/js/avia-compat.js’, array(‘jquery’), 2, false ); //needs to be loaded at the top to prevent bugs
    wp_enqueue_script( ‘avia-default’, $template_url.’/js/avia.js’, array(‘jquery’), 3, true );
    wp_enqueue_script( ‘avia-shortcodes’, $template_url.’/js/shortcodes.js’, array(‘jquery’), 3, true );
    wp_enqueue_script( ‘avia-popup’, $template_url.’/js/aviapopup/jquery.magnific-popup.min.js’, array(‘jquery’), 2, true);

    wp_enqueue_script( ‘jquery’ );
    wp_enqueue_script( ‘wp-mediaelement’ );

    if ( is_singular() && get_option( ‘thread_comments’ ) ) { wp_enqueue_script( ‘comment-reply’ ); }

    //register styles
    wp_register_style( ‘avia-style’ , $child_theme_url.”/style.css”, array(), ‘2’, ‘all’ ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( ‘avia-custom’, $template_url.”/css/custom.css”, array(), ‘2’, ‘all’ );

    wp_enqueue_style( ‘avia-grid’ , $template_url.”/css/grid.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-base’ , $template_url.”/css/base.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-layout’, $template_url.”/css/layout.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-scs’, $template_url.”/css/shortcodes.css”, array(), ‘2’, ‘all’ );
    wp_enqueue_style( ‘avia-popup-css’, $template_url.”/js/aviapopup/magnific-popup.css”, array(), ‘1’, ‘screen’ );
    wp_enqueue_style( ‘avia-media’ , $template_url.”/js/mediaelement/skin-1/mediaelementplayer.css”, array(), ‘1’, ‘screen’ );
    wp_enqueue_style( ‘avia-print’ , $template_url.”/css/print.css”, array(), ‘1’, ‘print’ );
    if ( is_rtl() ) {
    wp_enqueue_style( ‘avia-rtl’, $template_url.”/css/rtl.css”, array(), ‘1’, ‘all’ );
    }

    global $avia;
    $safe_name = avia_backend_safe_string($avia->base_data[‘prefix’]);
    $safe_name = apply_filters(‘avf_dynamic_stylesheet_filename’, $safe_name);

    if( get_option(‘avia_stylesheet_exists’.$safe_name) == ‘true’ )
    {
    $avia_upload_dir = wp_upload_dir();
    if(is_ssl()) $avia_upload_dir[‘baseurl’] = str_replace(“http://&#8221;, “https://&#8221;, $avia_upload_dir[‘baseurl’]);

    $avia_dyn_stylesheet_url = $avia_upload_dir[‘baseurl’] . ‘/dynamic_avia/’.$safe_name.’.css’;
    $version_number = get_option(‘avia_stylesheet_dynamic_version’.$safe_name);
    if(empty($version_number)) $version_number = ‘1’;

    wp_enqueue_style( ‘avia-dynamic’, $avia_dyn_stylesheet_url, array(), $version_number, ‘all’ );
    }

    wp_enqueue_style( ‘avia-custom’);

    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( ‘avia-style’);
    }

    }
    }

    if(!function_exists(‘avia_remove_default_video_styling’))
    {
    if(!is_admin()){
    add_action(‘wp_footer’, ‘avia_remove_default_video_styling’, 1);
    }

    function avia_remove_default_video_styling()
    {
    //remove default style for videos
    wp_dequeue_style( ‘mediaelement’ );
    // wp_dequeue_script( ‘wp-mediaelement’ );
    // wp_dequeue_style( ‘wp-mediaelement’ );
    }
    }

    /*
    * Activate native wordpress navigation menu and register a menu location
    */
    if(!function_exists(‘avia_nav_menus’))
    {
    function avia_nav_menus()
    {
    global $avia_config, $wp_customize;

    add_theme_support(‘nav_menus’);
    foreach($avia_config[‘nav_menus’] as $key => $value)
    {
    //wp-admin\customize.php does not support html code in the menu description – thus we need to strip it
    $name = (!empty($value[‘plain’]) && !empty($wp_customize)) ? $value[‘plain’] : $value[‘html’];
    register_nav_menu($key, THEMENAME.’ ‘.$name);
    }
    }

    $avia_config[‘nav_menus’] = array(
    ‘avia’ => array(‘html’ => __(‘Main Menu’, ‘avia_framework’)),
    ‘avia2’ => array(
    ‘html’ => __(‘Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu here)</small>’, ‘avia_framework’),
    ‘plain’=> __(‘Secondary Menu – will be displayed if you selected a header layout that supports a submenu’, ‘avia_framework’)),
    ‘avia3’ => array(
    ‘html’ => __(‘Footer Menu <br/><small>(no dropdowns)</small>’, ‘avia_framework’),
    ‘plain’=> __(‘Footer Menu (no dropdowns)’, ‘avia_framework’))
    );

    avia_nav_menus(); //call the function immediatly to activate
    }

    /*
    * load some frontend functions in folder include:
    */

    require_once( ‘includes/admin/register-portfolio.php’ );
    // register custom post types for portfolio entries
    require_once( ‘includes/admin/register-widget-area.php’ );
    // register sidebar widgets for the sidebar and footer
    require_once( ‘includes/loop-comments.php’ );
    // necessary to display the comments properly
    require_once( ‘includes/helper-template-logic.php’ );
    // holds the template logic so the theme knows which tempaltes to use
    require_once( ‘includes/helper-social-media.php’ );
    // holds some helper functions necessary for twitter and facebook buttons
    require_once( ‘includes/helper-post-format.php’ );
    // holds actions and filter necessary for post formats
    require_once( ‘includes/helper-markup.php’ );
    // holds the markup logic (schema.org and html5)

    if(current_theme_supports(‘avia_conditionals_for_mega_menu’))
    {
    require_once( ‘includes/helper-conditional-megamenu.php’ ); // holds the walker for the responsive mega menu
    }

    require_once( ‘includes/helper-responsive-megamenu.php’ );
    // holds the walker for the responsive mega menu

    //adds the plugin initalization scripts that add styles and functions

    if(!current_theme_supports(‘deactivate_layerslider’)) require_once( ‘config-layerslider/config.php’ );//layerslider plugin

    require_once( ‘config-bbpress/config.php’ );
    //compatibility with bbpress forum plugin
    require_once( ‘config-templatebuilder/config.php’ );
    //templatebuilder plugin
    require_once( ‘config-gravityforms/config.php’ );
    //compatibility with gravityforms plugin
    require_once( ‘config-woocommerce/config.php’ );
    //compatibility with woocommerce plugin
    require_once( ‘config-wordpress-seo/config.php’ );
    //compatibility with Yoast WordPress SEO plugin

    if(!current_theme_supports(‘deactivate_tribe_events_calendar’))
    {
    require_once( ‘config-events-calendar/config.php’ );
    //compatibility with the Events Calendar plugin
    }

    if(is_admin())
    {
    require_once( ‘includes/admin/helper-compat-update.php’);
    // include helper functions for new versions
    }

    /*
    * dynamic styles for front and backend
    */
    if(!function_exists(‘avia_custom_styles’))
    {
    function avia_custom_styles()
    {
    require_once( ‘includes/admin/register-dynamic-styles.php’ );
    // register the styles for dynamic frontend styling
    avia_prepare_dynamic_styles();
    }

    add_action(‘init’, ‘avia_custom_styles’, 20);
    add_action(‘admin_init’, ‘avia_custom_styles’, 20);
    }

    /*
    * activate framework widgets
    */
    if(!function_exists(‘avia_register_avia_widgets’))
    {
    function avia_register_avia_widgets()
    {
    register_widget( ‘avia_newsbox’ );
    register_widget( ‘avia_portfoliobox’ );
    register_widget( ‘avia_socialcount’ );
    register_widget( ‘avia_combo_widget’ );
    register_widget( ‘avia_partner_widget’ );
    register_widget( ‘avia_google_maps’ );
    register_widget( ‘avia_fb_likebox’ );
    register_widget( ‘avia_instagram_widget’ );
    }

    avia_register_avia_widgets(); //call the function immediatly to activate
    }

    /*
    * add post format options
    */
    add_theme_support( ‘post-formats’, array(‘link’, ‘quote’, ‘gallery’,’video’,’image’,’audio’ ) );

    /*
    * Remove the default shortcode function, we got new ones that are better ;)
    */
    add_theme_support( ‘avia-disable-default-shortcodes’, true);

    /*
    * compat mode for easier theme switching from one avia framework theme to another
    */
    add_theme_support( ‘avia_post_meta_compat’);

    /*
    * make sure that enfold widgets dont use the old slideshow parameter in widgets, but default post thumbnails
    */
    add_theme_support(‘force-post-thumbnails-in-widget’);

    /*
    * 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 hope to hear from you guys soon!

    #732946

    Hey Nikko,
    It’s not fixed from my end.

    Google Chrome browser (latest version up to date Version 55.0.2883.95 (64-bit)

    MacBook Os Sierra

    The Home page ones are working but the Marina Residences page accordian is not. I can see it working on ipad but not desktop. So weird.

    Cheers

    #732931
    rosewoodva
    Participant

    Hi,

    I would like to hide the caption on the homepage fullscreen slider when the mobile in vertical (the caption runs off the image), but would like it to show when the phone is horizontal. If that’s not possible, then just to hide it all the time on mobile.

    I tried this support forum: https://kriesi.at/support/topic/full-screen-slider-captions-on-mobile/

    and this code but it didn’t work.

    @media only screen and (max-width: 500px) {
    .avia-fullscreen-slider .slideshow_caption { display: none !important; }
    }

    Any help is appreciated, thanks!
    Deanna

    #732907

    In reply to: Icon in logo area

    Hey taoleo,

    Try adding this code in Quick CSS (located in Enfold > General Styling):

    .logo img {
        margin-top: 10px;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #732904
    leeroythegreat
    Participant

    Hi Guys,

    I have an issue where when the screen goes to mobile or tablet for my website the colour for av_textblock_section turns a different colour.

    I was wondering if there was a quick css i could put in to change the colour of the text block?

    The section i want to change is the text block area underneath the “our practitioners” on the home page. The colour is fine on a desktop but when the screen size goes smaller the background colour of the textblock turns a dark green which is hard to read.

    Thanks guys awesome theme :-)

    #732899
    ennaz
    Participant

    Hi,
    I have been working on a new site with a child theme and wanted to add a button into the header area (top right, next to the social media icons). I copied some code to the functions.php file (in the appearance menu) which I saw you had advised someone else to do for a similar request.
    But it came up with a Parse error message and now I can’t do anything – can’t access any of the pages or see the site. I am new to all of this, so I’m sure I have made some very basic error, but don’t know what? I can’t get back in to any of the pages.
    I have posted the code I pasted in and the error message in to the private content. I hope you can help!
    Thank you.

    #732894

    In reply to: Missing Grid Row

    Hey jnightingale,

    Thanks for providing the login details, I have added this css code in QUick CSS:

    @media only screen and (min-width:768px) {
        .html_header_top.html_header_topbar_active.html_header_sticky #top #main {
            padding-top: 140px;
        }
    }

    Let us know if it’s good :)

    Best regards,
    Nikko

    #732874
    Insight_PR
    Participant

    Hi,

    I was wondering if it was possible to have the full-width sub menu on a page appear as a burger icon (the way it does on mobile) when it’s displayed on a desktop size screen.

    Thank you for your help!

    Gabri
    Participant

    Hi, I see some errors in Google WMT about hentry, I found solution in this topic (https://kriesi.at/support/topic/hentry-missing-in-portfolio-entries/#post-654588), but I need to edit portfolio.php file in each update.
    There are other option to solve this?

    Thanks

    #732865
    markkus2
    Participant

    Hello, i already searched the forum about that issue, but i didn’t come forth.
    Is it possible to make a new custom div area (for an image) on top of the menu or/and underneath the footer/socket, thus on the very top or/and the very bottom of the page?
    On the screenshot (PC) the red marked areas.
    Thank you very much.
    Markus

    #732827
    mcraig77
    Participant

    Ahoy,

    I followed this help article to add a widget to the right of the logo. http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ is there a way to have the widget with the phone number be on top on one line of the social icons on the right and have the social icons brought down centered in the height of the menu so they do not overlap the new header widget? I have added the code below.

    #header .widget {
        right: 20px;
        padding-top: 0;
        position: absolute;
        top: 30px;
        transform: translate(-50%);
        z-index: 999;
    }
    #732808

    Hi Yirgit,

    I was the person who started the thread, but haven’t gotten any help to resolve the issue. Log in credentials are in the initial post up top. Mike.

    #732802

    Hey Rio1,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .avia-slideshow-button {
        font-size: 20px;
    }
    

    Best regards,
    Yigit

    dvdlevinson
    Participant

    Hi. I’m working with the Portfolio element. I want to be able to sort categories by clicking on a separate button, not just the sort buttons at the top. I was hoping that it would be a simple jquery addClass or removeClass but it appears that that doesn’t work.

    L
    Participant

    Hi,

    I have set a project on my local server – a page with a full height slider and transparent header set with following css:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency {
    background: transparent;
    position: absolute!important;
    }
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img {
    opacity: 0 !important;
    }
    .responsive #top .av_header_transparency .logo img.alternate {
    display: block !important;
    }
    } 

    What I want to do is – to prevent transformation of the transparent header on mobile screen into white(normal) when swiping down the contents. Is it possbile to disable this behaviour? It doesn`t let me scroll to properly see the whole contents of the next section.

    Regards

    #732773
    tarynw
    Participant

    Hi there,

    I am trying to create a light box for a mailchimp form as outlined in this post – https://kriesi.at/support/topic/lightbox-for-mailchimp-form/#post-582439 – I want to have a mailchimp form open in a lightbox when someone clicks a button. I have tried to implement this advice, but it is not working for me.

    I got this error when I tried to add the suggested code to functions php:

    Fatal error: Cannot redeclare add_custom_script() (previously declared in /home/tarynwilliams/public_html/wp-content/themes/enfold-child/functions.php:63) in /home/tarynwilliams/public_html/wp-content/themes/enfold-child/functions.php on line 82

    Do you have any other ideas on how I can do this? I would like to have the buttons on this page opening with a form.

    Thanks very much.

    • This topic was modified 9 years, 1 month ago by tarynw.
    #732759

    Hi Yigit

    I did that and also went on my laptop and still the issue persists.

    Lyse

    #732756

    Hey!

    Can you please refer to this post – https://wpml.org/forums/topic/translated-content-is-not-saved-when-using-enfold-theme/#post-1178920?

    Best regards,
    Yigit

    #732717
    jtuselton
    Participant

    Hello, I’m having a problem with my mobile menu. My shopping cart is showing above and to the left of the menu drop-down on all page except my welcome page and blog page. On these pages, it is perfectly beside my drop-down, which is what I want.

    The problem is the inconsistency on the other pages. On the rest of my pages the menu gets very thick, with a lot of whitespace, and my shopping cart shows in a very random space to the top left of the drop-down.

    Can you assist?

    • This topic was modified 9 years, 1 month ago by jtuselton.
    #732680

    Topic: Banner

    in forum Enfold
    sandra1307
    Participant

    Hello

    I would like to insert a banner on the top of my website, the menu would be below this banner.
    I have made my banner but I don’t know if the size is ok ? (920 x 117)
    How can I insert this banner ?

    In my model (health), on homepage, what is the best size for pictures of the slider ?

    thanks for your help

    #732669
    tipinoncomuni
    Participant

    I’m using the “Quantities and Units for WooCommerce” plugin to enable decimal quantities and Kg as units in WooCommerce.
    I disabled the Enfold +/- as suggested by Josue in his first answer here https://kriesi.at/support/topic/disable-woocommerce-quantity-feature/#post-732609 but this is not sufficient since:
    – the quantity field is classified as a Text input field instead of a number input field (as you can see the std increase and decrease HTML buttons are not appearing also in the cart )
    – the header cart show quantities with ‘.’ instead of ‘,’
    https://drive.google.com/file/d/0B7baurTblFiQQWloLUVmeEJCN2M/view?usp=sharing
    https://drive.google.com/file/d/0B7baurTblFiQX0x0X2pwRGF1V1U/view?usp=sharing

    So i tried to change the /enfold/config-woocommerce/woocommerce-mod.js to this (only changed parseInt to parseFloat in lines 7,17,22) :

    
    function avia_apply_quant_btn()
    	{
    		jQuery(".quantity input[type=number]").each(function() {
    		var number = $(this),
    				max = parseFloat( number.attr( 'max' ) ),
    				min = parseFloat( number.attr( 'min' ) ),
    				step = parseFloat( number.attr( 'step' ) ),
    				newNum = jQuery(jQuery('<div />').append(number.clone(true)).html().replace('number','text')).insertAfter(number);
    				number.remove();
    
    			setTimeout(function(){
    				if(newNum.next('.plus').length == 0) {
    					var minus = jQuery('<input type="button" value="-" class="minus">').insertBefore(newNum),
    							plus    = jQuery('<input type="button" value="+" class="plus">').insertAfter(newNum);
    
    					minus.on('click', function(){
    						var the_val = parseFloat( newNum.val() ) - step;
    						the_val = the_val < 0 ? 0 : the_val;
    						the_val = the_val < min ? min : the_val;
    						newNum.val(the_val).trigger("change");
    					});
    					plus.on('click', function(){
    						var the_val = parseFloat( newNum.val() ) + step;
    						the_val = the_val > max ? max : the_val;
    						newNum.val(the_val).trigger("change");
    
    					});
    				}
    			},10);
    
    		});
    	}
    

    In this case, the ‘+’ and ‘-‘ buttons works well, increase and decrease are stepped by 0.5, and the HTML seems to be what i expected:

    
    <form class="cart" method="post" enctype='multipart/form-data'>
    	 	<div class="quantity">
    	<input type="number" step="0.5" min="0.5" max="" name="quantity" value="1" title="Qtà" class="input-text qty text" size="4" pattern="" inputmode="" />
    </div>
    	 	<input type="hidden" name="add-to-cart" value="21" />
    	 	<button type="submit" class="single_add_to_cart_button button alt">Acquista</button>
    </form>
    

    BUT … i get the browser verification error “Respect the required format” on field input (see this: https://drive.google.com/file/d/0B7baurTblFiQZHkyMURxNEVIM2M/view?usp=sharing ).

    Can i have your suggestions to solve this empasse?
    I need decimal quantities and increase/decrease buttons in input fields (standard html or – better – enfold theme).

    #732664
    eC
    Participant

    Hey guys,

    I need to have the breaking point for the menu earlier. Didn’t find a fitting solution in other threads yet, so am hoping you can help me out with the Quick CSS here.

    Thanks a bunch,
    eC

    #732646

    In reply to: Sticky Sidebar

    Hi Rikard,

    I’m currently developping the site on MAMP so I cannot provide you any links. I wanted a sidebar on the left with buton that stick even when the visitor scroll down the main part.

    But don’t bother, I looked on differents tickets already posted and apparently there is no way to have a fixed sidebar except using the plug in q2w3 which not run that well… So I’ll pass on fix sidebar :)

    Thanks,

    Clement
    as for me you can close the topic

    #732644
    thorntonp72
    Participant

    Hi,

    Can you advise how I can add a Categories drop down into the search results page. I have been changing the search.php file to make the results a little nicer, however I would also like the users to be able to select a category at the top of the page if the results do not provide them what they need.

    I added a small bit of php code into the search.php result which sort of worked, but there was no structure / order to it and it did not pull up any counts etc, so it must be able to be done, but not the way I have been doing it.

    Thank you,

    Paul

    #732600

    In reply to: Menu header

    I have tried changing the header settings but still leaves a large space at the top of the header.

    So it is almost as there is an additional element above the main naviagation.

    There is also the following error message at the bottom of page (in the edit page section) – not sure if this causing the problem.

    Warning: include(/home/content/n3pnexwpnas02_data02/60/3782760/html/wp-content/uploads/avia_fonts/Flaticon/charmap.php): failed to open stream: No such file or directory in /home/content/n3pnexwpnas02_data02/60/3782760/html/wp-content/themes/enfold JAN/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 488

    Warning: include(): Failed opening ‘/home/content/n3pnexwpnas02_data02/60/3782760/html/wp-content/uploads/avia_fonts/Flaticon/charmap.php’ for inclusion (include_path=’.:/usr/local/php5_6/lib/php’) in /home/content/n3pnexwpnas02_data02/60/3782760/html/wp-content/themes/enfold JAN/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 488

    #732586
    xuamox
    Participant

    Hi,

    I just noticed that LayerSlider WP is not displaying the image on some of my pages.
    On some pages it is working fine, and in other pages it is not.

    The slider text fades in, but the background image is not being displayed.

    I have tried deleting the layerslider on the page, and re-inserting it, and saving out the page, but no luck.

    When I inspect the element, it looks like the right image and image path are called, but for some reason the image is not being displayed.

    I just noticed that the missing images are referring to an https path, but the ones that are working use http. Not sure why some are using https and some are not? any ideas? is this a WordPress thing? They were all working at one point.

    Resaving the actual slider seems to be working as a solution.

    OK, I had to re-save about 20 slider images, and they all seem to be working now.

    I still don’t know what caused these path errors to begin with. Very strange.

    The only change that I have made is installed JetPack – could this be the reason?

    I deactivated JetPack, but still having the same issue.

    • This topic was modified 9 years, 1 month ago by Basilis.
    #732581

    Topic: Child Theme Broken

    in forum Enfold
    jonrouse
    Participant

    A while ago Josue helped me with a problem with swapping image sizes at certain widths. Please see this thread. https://kriesi.at/support/topic/easy-slider-12/#post-605833

    This is now broken with the new wordpress update, images are now showing twice. Please see the link.
    Can you please help me fix it? I am using a child theme.

    Thanks

Viewing 30 results - 85,711 through 85,740 (of 142,740 total)