Viewing 30 results - 4,081 through 4,110 (of 7,495 total)
  • Author
    Search Results
  • #733191
    ariane1001
    Participant

    Hi,
    I followed this post to add a custom post type: https://kriesi.at/support/topic/procedure-for-adding-custom-post-type-and-enabling-it-for-use/

    Posts are not made in Avia builder and I have to categories: Lopende projecten and opgeleverde projecten.

    When using the next and previous buttons on a post I would like the next or previous post to be from the same categorie.

    I searched the forum and found a lot of solutions, all codes below I have tried but non is working.

    What can I do to get it working in the same categorie.

    url: http://bloemfontein.nl/nw16/projecten/lopende-projecten/ and http://bloemfontein.nl/nw16/projecten/opgeleverde-projecten/
    I am using a Child theme

    Thanks in advance.

    Codes used:
    With this one the buttons dissappear

    add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' );
    function enfold_customization_same_cat( $s ) {
    	$s['same_category'] = true;
    	return $s;
    }

    This one also the buttons dissappear

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings) {
         $settings['same_category'] = true;
         return $settings;
    }

    This one doesn’t work at all

    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }

    This one doesn’t work and the previous button is pointing to the same post as where you are:

    add_filter('avia_post_nav_entries','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings) {
         $settings['same_category'] = true;
         return $settings;
    }
    #733153

    Hey Luc,

    You can try using a plugin such as this one – https://www.designsandcode.com/wordpress-plugins/search-filter-pro/ however please contact plugin author beforehand and ask them if they had any experience with Enfold to be on the safe side.

    Best regards,
    Yigit

    #733129

    Hi,

    did you try to choose “Display entries from a custom taxonomy”? inside “Do you want to display blog posts?”? However, I guess for the kind of function you need, you have to search for a plugin with this function. Feel free to make a feature request for Kriesi here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Andy

    #733055
    cbentley65
    Participant

    Hi
    Could you let me know how to add the Woocommerce SKU to the standard Enfold search please? It searches product titles OK so if there’s a way to configure it to have this functionality as well that would be great. There doesn’t seem to be a definitive answer on this forum or elsewhere.
    Thanks in advance for your assistance.

    #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!

    amatullim
    Participant

    I checked Google Search Console today and on the Crawl Errors page I noticed the following errors (see below) in the “Access Denied” tab. I am using the Enfold theme, but not sure how or if I need to fix these errors. Any support would be appreciated. Thanks.

    403 Errors:
    wp-content/themes/enfold/framework/
    wp-content/themes/enfold/framework/css/
    wp-content/themes/enfold/framework/images/icons/
    wp-content/themes/enfold/framework/php/avia_shortcodes/tinymce/
    wp-content/themes/enfold/framework/css/conditional_load/
    wp-content/themes/enfold/framework/images/colorpicker/
    wp-content/themes/enfold/framework/php/avia_shortcodes/tinymce/js/
    wp-content/themes/enfold/framework/php/avia_shortcodes/img/
    wp-content/themes/enfold/framework/php/auto-updates/
    wp-content/themes/enfold/framework/php/avia_shortcodes/css/
    wp-content/themes/enfold/framework/php/wordpress-importer/
    wp-content/themes/enfold/framework/php/avia_shortcodes/tinymce/img/
    wp-content/themes/enfold/framework/php/avia_shortcodes/
    wp-content/themes/enfold/framework/php/
    wp-content/themes/enfold/framework/js/conditional_load/
    wp-content/themes/enfold/framework/images/
    wp-content/themes/enfold/framework/php/avia_shortcodes/sc/
    wp-content/themes/enfold/framework/images/layout/
    wp-content/themes/enfold/framework/images/icons/new/

    #732621
    Jens Fahlén Jensen
    Guest

    I’v searched your forum and it seems that the Toolset plugin is not longer working (out of the box)
    Can you tell me what the Enfold theme is using instead of “the_function” so I can figure out if I can get your theme to work with this plugin?

    OBS! Im not talking about function.php but “the_function”, what is it called in your theme?

    mrpacogp
    Participant

    Hi, thank you for support.
    I have used search but cannot find another thread like this.
    With latest version of enfold and yoast seo, the plugin says “”There is not image of keyword on first paragraph”
    I`m using avia framework also to edit the content of a page.
    Its this correct?
    Kind regards.

    #731847

    In reply to: Remove footer menu

    I have a searchwidget on footer column 2 and on the enfold options I only have 1 column footer, I even deleted the widget content area no luck

    Cellairis footer options enfold

    Cellairis widgets

    https://www.cellairis.mx/cellairis%20footer.PNG
    https://www.cellairis.mx/cellairis%20widgets.PNG

    Regards

    • This reply was modified 9 years, 2 months ago by screege.
    #731524
    originaltours
    Participant

    Hello Kriesi,

    Very happy with Enfold and I would like to add a new feature and am wondering if it is possible with Enfold.

    We offer tours in Amsterdam and use posts to describe a tour and a possibility to request an offer. We offer these tours now by category but would like to change that to a different way.

    I would like to add properties to a tour like (city, price range, for young, for elder, active, by bike).

    On the front a website visitor should be able to choose his properties, example given: I’m looking for a tour in Amsterdam, for elder, by bike. The results should show only all the tours that fit this profile.

    I’m guessing I should add tags to the tours with the properties but can I create the page with enfold searching the tours? And showing the results?

    #731051
    NNE
    Participant

    Hello,

    I am experiencing a problem with flag icons that are in my main header ( to the right) hat I don’t manage to remove.
    I first contacted WPML support, but it seems that it’s not on their end, they sent me the link to an older Enfold support thread and I followed the steps it described to remove the flag icons. It worked for a bit, but then the website went offline (error 500) and I used filezilla to restore my functions.php and remove the code snippet.

    Jurgen
    Participant

    Hello,

    I would like to show the post categories on top of the masonry grid. But not in an alphabetical order, it should be ‘grouped’ by the main category as there are sectors (with its subcategories), solutions (with its own subcategories), customers (with its own subcategories), etc.

    It seems that a similar question has been asked before: https://kriesi.at/support/topic/masonry-grid-category-filters/
    Near the end of the topic, the requestor also mentions
    Europe / North America / Asia / Africa
    Small / Medium / Large / Extra Large

    Can you please help me (or at least tell me which filter / hook to use), using a safe way (functions.php instead of modifying the Enfold theme itself)?

    2nd question: how would it be possible to have a search field above instead of the categories by links?

    Thanks & best regards,
    Jurgen

    #730842
    brian7454
    Participant

    Hi,

    Whilst checking through various pages on a site I’m rebuilding, I did a quick search for ‘author’ in the page source, to see what bots can see. I found my admin username displayed on posts despite having deselected the various fields in enfold to hide it. The problem doesn’t seem to exist on pages. It seems to relate to your itemscope, and it is outputting my admin username for all to see. I know the data isn’t shown on-page, but this output, just the same as anything simply hidden with css, is there for bots with malicious intent to find and use.

    I have already deleted a block of code from loop-index.php, which I thought would resolve the issue, but it doesn’t.

    What I can see is this:

    <footer class="entry-footer"></footer><div class='post_delimiter' style='border-color:#ffffff !important;' ></div></div>
    <span class='hidden'>
    <span class='av-structured-data'  itemscope="itemscope" itemtype="https://schema.org/ImageObject"  itemprop='image'>
    <span itemprop='url' >mydomainstuff/uploads/2016/12/singletheme-2.jpg</span>
    <span itemprop='height' >172</span>
    <span itemprop='width' >440</span>
    </span><span class='av-structured-data'  itemprop="publisher" itemtype="https://schema.org/Organization" itemscope="itemscope" >
    >>>>>>>>> here >>>>>>>>>>		<span itemprop='name'>xxxxxMYxxxADMINxxxUSERNAMExxx</span>
    <span itemprop='logo' itemscope itemtype='http://schema.org/ImageObject'>

    This is really undesirable, so how do I either overwrite the admin user details shown (xxxxxMYxxxADMINxxxUSERNAMExxx) or just remove them from display? I saw another post (May 2016) about this prior to writing this ticket but didn’t see a solution, as the guy posting had fixed it himself.

    Many thanks.

    • This topic was modified 9 years, 2 months ago by brian7454. Reason: typo
    sivan_sergott
    Participant

    Hi, I have searched several responses in this forum section and tried some but none of them have solved this issue. I am using the Enfold Theme and have built my website using the Avia Layout Builder. At the bottom of every page there is a huge empty white section which I would like to remove. How can I remove it from all the pages? I’ve sent you privately a few examples pages to show the problem.Thanks

    markkus2
    Participant

    Hello, just one question, does the color management in the options page (enfold child) work?
    I’ve tried all, loading a new predefined color scheme, deleted the extended stylings, deleted the browser cache again and again, but the custom link text color in the menu (in my case) won’t change. And in all forum entries i’ve searched all hints goes to “make it with a quick-css style”.

    So my question all in all is: Shall i make it always wit the quick css or is there anything that i can do that the option page will work?

    Thanks
    Markus

    #730680
    cheaptrip
    Participant

    Hello,
    I want to remove featured image inside the single post. I searched this forum and I found dozen of posts with same problem however these aren’t working for me – it’s still shows default “WordPress prencil”. Most probably it’s because of incompatibility with new WordPress 4.7
    I have the newest enfold verison: 3.8.4

    These custom css I alredy tried:

    #top .fullsize .template-blog .blog-meta {
    display: none !important;
    }
    
    .single .big-preview.single-small, .single .blog-meta {
      display: none!important;
    }
    
    .single-post .big-preview{
        display: none !important;
    }

    Kindly advice, thanks.

    • This topic was modified 9 years, 2 months ago by cheaptrip.

    Hey there,

    I am following https://kriesi.at/support/topic/enfold-removing-the-search-magnifying-glass-and-adding-in-the-search-field/#post-278483

    I only have a problem now where the ajax preview of the search items is on an invisible background. can you let me know how I can specify the background colour? see https://braandcorsetsupplies.com/ and put min 3 charachters into the search on the header and you will see the results are on an invisible background so you can’t see them on top of page content.

    I think i have to do something with specifying the background of the [ class=”ajax_search_response” ]

    cheers and as always thanks so much for all your help with these projects :)

    ENB..//

    • This reply was modified 9 years, 2 months ago by ENBertussi. Reason: added more details.. :)
    #729544
    totoro
    Participant

    Hello there
    i use latest Enfold and WPress
    i search a lot in your topics but i found only tips for older version
    the dev website here : http://dev-afgolf.albatros-solutions.fr/

    / QUESTIONS A /
    i customise css to have mobile menu for desktop like this :
    @media only screen and (max-width: 4000px) {
    nav.main_menu {display:none !important;}
    #advanced_menu_toggle, #advanced_menu_hide {display:block !important;}
    }
    but i can see empty space on desktop where my menu – please see screenshot here
    space
    • can you tell me how can i disable it ?
    • how can i add some text (MENU) on the right of the burger icon ?
    • is it possible to have this icon on the left of the window ?

    / QUESTIONS B /
    I want to use a second menu – colored – this one with Ubermenu maybe – below the header on each page of the website – like this

    • do you know the best way to get this in Enfold ?
    i think i can’t use Enfold secondary menu position for this
    the best way is to include Ubermenu shortcode in each page – [ubermenu config_id=”main” menu=”34″]
    • in witch element can i put it to have full width menu – like in screenshot ?
    • is there a better way to add this in each page ? maybe add php – <?php ubermenu( ‘main’ , array( ‘menu’ => 34 ) ); ?> – in php template ?
    /
    Thxs for helping

    #729327

    Hey BierPlus,

    Thank you for using Enfold.

    Please set the user role to administrator so that we can access the settings. Did you use the Woocommerce Product Search widget?

    Best regards,
    Ismael

    #729205

    In reply to: Enfold Showcase

    Hey, my showcase is here..:
    https://www.jcm-tech.com
    Features
    – Multilingual (using Polylang)
    Woocommerce (custom product pages)
    – Contact Form 7 (For file upload option)
    – AMP Ready
    – File Download (using WP-DownloadManager)
    – Yoast SEO
    Some tweaks (Thanks to enfold support team)
    – Search icon on mobile, next to hamburger menu
    – Return to top
    – Ajax search multilingual
    – Exclude tax language on post
    – Fix breadcrumb (Auto Draft) text

    Gabri

    #729152
    envatojlc
    Participant

    To Whom It May Concern,

    Happy New Year! I have searched the site for directions about where to upload (via SFTP) the latest version of LayerSlider 6.10. Should I upload LayerSlider directly into wp-content > themes > enfold or into wp-content > plugins? I tried uploading LayerSlider into wp-content > themes and my frontage was a disaster. So, it would appear that wp-content > plugins is the correct answer. But I would like to have your opinion. Thank you — John

    #729101

    Hey Valerie,

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

    #top .main_color .input-text,
    #top .main_color input[type='text'],
    #top .main_color input[type='input'],
    #top .main_color input[type='password'],
    #top .main_color input[type='email'],
    #top .main_color input[type='number'],
    #top .main_color input[type='url'],
    #top .main_color input[type='tel'],
    #top .main_color input[type='search'],
    #top .main_color textarea,
    #top .main_color select {
    	color:#000!important;
    }
    

    Best regards,
    Vinay

    #729094
    Nacho
    Guest

    Hi, I search for a place to buy Enfold theme and I see I could buy it in Themeforest for 60$ but I also find that https://wordpress.adventurediplomacy.org/product/enfold-responsive-multipurpose-theme/ where it cost 21,99$ and comes with future updates also.
    I’m asking me if it is the original theme, and I will have support buying there. I’m a small freelance and I need control my expenses. Please, could you reply me in order to buy it there or not? Thank you!!

    #729093

    Hey,
    sorry for my late reply,
    I still have this issue – the search button does’nt lead to a search results page.
    I’ve tried installing a fresh version of Enfold via FTP,
    and deactivating all plugins with no use…

    Any clues on this?

    Thanks,
    Uri

    #728999

    Hi,

    not every WP plugin is compatible with every WP theme. If the plugin author can’t help you to make it compatible with Enfold, then you need to search for a different plugin or hire a freelance developer who makes it compatible for you: http://kriesi.at/contact/customization

    Best regards,
    Andy

    #728867

    Hey wbitsolutions,

    Thank you for using Enfold.

    1.) Please add this in the Quick CSS field.

    #top .av_seperator_big_border .av-main-nav > li:last-child > a, #top .av_seperator_big_border .av-main-nav > #menu-item-search > a {
        border-left-style: solid;
        border-left-width: 1px;
        border-right: 0;
    }

    2.) Use this css.

    #top .main_menu .menu li:first-child {
        border-right-style: solid;
        border-right-width: 1px;
    }

    3.) Please try the following plugin. The plugin will enable you to sort the items manually.

    // https://wordpress.org/plugins/post-types-order/

    Please create a separate topic for each inquiry. Thank you.

    Best regards,
    Ismael

    #728776

    Hey enricobaumgart,

    I’m not sure there’s available plugin for that as I can’t find any when searching on google. However, looking at the link you gave you might just need to use the Code block element, then for the javascript you may need to use a child theme (see more here: http://kriesi.at/documentation/enfold/using-a-child-theme/ ) and for adding the js scripts part you, this article would be helpful http://www.wpbeginner.com/wp-tutorials/how-to-properly-add-javascripts-and-styles-in-wordpress/

    Best regards,
    Nikko

    #728740
    ahouglum
    Participant

    I have enfold installed and woocommerce installed, but I want to edit how the product and category pages are layed out.

    I doing research on this site I found that Enfold doesn’t really use the woocommerce template as in config-woocommerce\config.php basically every woocommerce hook gets removed.

    I weeded through that file but it was hard to decipher exactly what was going on.

    Please point me in the right direct as to what hooks I need to hook into to adjust how the product page is layed out.

    When I try and use the standard woocommerce way of editing the template it looses the enfold features. Please help

    #728472
    dmaca
    Participant

    Hello guys,

    At least 2 woocommerce plugins:
    woocommerce ajax layered navigation
    and
    woocommerce instant product search
    brake Enfold sidebar.
    Please see images attached.


    You can check it on our staging site.

    Thanks,
    dmc

    #728127

    Hi,

    no idea what you want to show us with your screenshot to be honest. Have in mind that we don’t understand any Russian. Please remove any customizations you’ve done for your mobile search and then add the code from here into your Quick CSS field and adjust the values if needed.

    Switch off any caching you’re using and afterwards deactivate your caching plugin as well as all other plugins. Clear browser cache and hard refresh a few times.

    Best regards,
    Andy

Viewing 30 results - 4,081 through 4,110 (of 7,495 total)