Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • lsp.de

    Here’s the url: https://1a-lichtprofi.com/

    As alredy mentioned, I just wish to change:

    1. Overlapping ot the the header, means the header will be displayed over the content …
    2. Display the logo left of the menu

    Hi Jordan,

    fair enough …

    But there are only 2 settings required:

    1. Overlaping of header
    2. Logo left of menue, but assigned right

    Would be great, if you can assist!

    in reply to: Show categories like the Product Grid #685597

    Hi Rikard,
    pleasure …
    Regards,
    Boris

    in reply to: Show categories like the Product Grid #684729

    Hi Rikard, off course:
    here you are: https://www.german-lightning.com/de/produkte/

    Regards,
    Boris

    in reply to: Show categories like the Product Grid #684494

    Hi there,
    looking for the same feature:

    Technically a category grid can be shown using a shortcode: [product_categories number=”20″ parent=”0″ hide_empty=”0″ columns=”5″]

    Unfortunately, the first row is not displayed proper …

    Any suggestions?

    in reply to: jquery.js respectively Revolution Slider issue #602749

    Sorry for the typo! use “-” instead of “.” :-)

    in reply to: jquery.js respectively Revolution Slider issue #601831

    Hi Ismael,

    ja sorry yes. After removing the testimonial object the site is working way better. There’s still an issue with revolution slider, as the script stops the slides, even as they are set to loop indefinite …

    Regards,
    Boris

    in reply to: How to disable AVIA Layout Elements? #600727

    Danke, Günter! :-)

    in reply to: Advanced Layout Editor is broken #600030

    add to WP-CONFIG.PHP

    error_reporting(E_ALL); ini_set(‘display_errors’, 1);
    define( ‘WP_DEBUG’, true);
    define(‘WP_DEBUG_LOG’, true);
    define(‘WP_DEBUG_DISPLAY’, true);
    define( ‘SCRIPT_DEBUG’, true );

    debug file will be created unter WP-CONTENT

    in reply to: jquery.js respectively Revolution Slider issue #600021

    I’ve found the issue after reading this thread: https://kriesi.at/support/topic/page-builder-not-working-anymore/ or better tried to look into the subject from a different angle!

    The issue in my case is not the child thme itself, but more the fact, that I’ve added some scriplets from the support section to add some custom post types/taxonomies to the image grid:

    function add_builder_to_posttype($metabox)
    {
    foreach($metabox as &$meta)
    {
    if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘layout’)
    {
    $meta[‘page’][] = ‘testimonial’; /*instead add the name of the custom post type here*/
    $meta[‘page’][] = ‘page’; /*instead add the name of the custom post type here*/
    }
    }

    return $metabox;
    }

    if(!function_exists(‘avia_custom_query_extension’))
    {
    function avia_custom_query_extension($query, $params)
    {
    global $avia_config;
    if(!empty($avia_config[‘avia_custom_query_options’][‘order’]))
    {
    $query[‘order’] = $avia_config[‘avia_custom_query_options’][‘order’];
    }

    if(!empty($avia_config[‘avia_custom_query_options’][‘orderby’]))
    {
    $query[‘orderby’] = $avia_config[‘avia_custom_query_options’][‘orderby’];
    }

    unset($avia_config[‘avia_custom_query_options’]);

    return $query;
    }

    add_filter(‘avia_masonry_entries_query’, ‘avia_custom_query_extension’, 10, 2);
    add_filter(‘avia_post_grid_query’, ‘avia_custom_query_extension’, 10, 2);
    add_filter(‘avia_post_slide_query’, ‘avia_custom_query_extension’, 10, 2);
    add_filter(‘avia_blog_post_query’, ‘avia_custom_query_extension’, 10, 2);
    add_filter(‘avf_magazine_entries_query’, ‘avia_custom_query_extension’, 10, 2);

    add_filter(‘avf_template_builder_shortcode_elements’,’avia_custom_query_options’, 10, 1);
    function avia_custom_query_options($elements)
    {
    $allowed_elements = array(‘av_blog’,’av_masonry_entries’,’av_postslider’,’av_portfolio’,’av_magazine’);

    if(isset($_POST[‘params’][‘allowed’]) && in_array($_POST[‘params’][‘allowed’], $allowed_elements))
    {
    $elements[] = array(
    “name” => __(“Custom Query Orderby”,’avia_framework’ ),
    “desc” => __(“Set a custom query orderby value”,’avia_framework’ ),
    “id” => “orderby”,
    “type” => “select”,
    “std” => “”,
    “subtype” => array(
    __(‘Default Order’, ‘avia_framework’ ) =>”,
    __(‘Title’, ‘avia_framework’ ) =>’title’,
    __(‘Random’, ‘avia_framework’ ) =>’rand’,
    __(‘Date’, ‘avia_framework’ ) =>’date’,
    __(‘Author’, ‘avia_framework’ ) =>’author’,
    __(‘Name (Post Slug)’, ‘avia_framework’ ) =>’name’,
    __(‘Modified’, ‘avia_framework’ ) =>’modified’,
    __(‘Comment Count’, ‘avia_framework’ ) =>’comment_count’,
    __(‘Page Order’, ‘avia_framework’ ) =>’menu_order’)
    );

    $elements[] = array(
    “name” => __(“Custom Query Order”,’avia_framework’ ),
    “desc” => __(“Set a custom query order”,’avia_framework’ ),
    “id” => “order”,
    “type” => “select”,
    “std” => “”,
    “subtype” => array(
    __(‘Default Order’, ‘avia_framework’ ) =>”,
    __(‘Ascending Order’, ‘avia_framework’ ) =>’ASC’,
    __(‘Descending Order’, ‘avia_framework’ ) =>’DESC’));
    }

    return $elements;
    }

    add_filter(‘avf_template_builder_shortcode_meta’, ‘avia_custom_query_add_query_params_to_config’, 10, 4);
    function avia_custom_query_add_query_params_to_config($meta, $atts, $content, $shortcodename)
    {
    global $avia_config;
    if(empty($avia_config[‘avia_custom_query_options’])) $avia_config[‘avia_custom_query_options’] = array();

    if(!empty($atts[‘order’]))
    {
    $avia_config[‘avia_custom_query_options’][‘order’] = $atts[‘order’];
    }

    if(!empty($atts[‘orderby’]))
    {
    $avia_config[‘avia_custom_query_options’][‘orderby’] = $atts[‘orderby’];
    }

    return $meta;
    }
    }

    add_theme_support(‘deactivate_layerslider’);

    in reply to: Advanced Layout Editor is broken #600008

    Just donwload, install and activate it … It like a minimized word alike visual editor …
    You might like the functionality, but its more to understand your issue …
    additionaly, did you activate debuging?

    in reply to: Advanced Layout Editor is broken #599995

    … and did you verify, that your “Disable the visual editor when writing” option in the user-profile is unchecked?

    in reply to: Advanced Layout Editor is broken #599994

    Can yo install “TinyMCE Advanced” and check whether this solves the problem in connection with the wp-config ammendment?

    in reply to: Advanced Layout Editor is broken #599984

    Hi,
    add
    define(‘CONCATENATE_SCRIPTS’, false);

    to your wp-config.php just after the table prefix definition

    Had the same issue and this fixed it!

Viewing 15 posts - 1 through 15 (of 15 total)