Forum Replies Created
-
AuthorPosts
-
May 14, 2019 at 9:42 am in reply to: Menu + Logo in column right with left cloumn showing i.e. slidr or other content #1100432May 13, 2019 at 1:09 pm in reply to: Menu + Logo in column right with left cloumn showing i.e. slidr or other content #1100033
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 menuMay 11, 2019 at 10:42 am in reply to: Menu + Logo in column right with left cloumn showing i.e. slidr or other content #1099560Hi Jordan,
fair enough …
But there are only 2 settings required:
1. Overlaping of header
2. Logo left of menue, but assigned rightWould be great, if you can assist!
Hi Rikard,
pleasure …
Regards,
BorisHi Rikard, off course:
here you are: https://www.german-lightning.com/de/produkte/Regards,
BorisHi 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?
Sorry for the typo! use “-” instead of “.” :-)
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,
BorisDanke, Günter! :-)
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
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’);
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?… and did you verify, that your “Disable the visual editor when writing” option in the user-profile is unchecked?
Can yo install “TinyMCE Advanced” and check whether this solves the problem in connection with the wp-config ammendment?
Hi,
add
define(‘CONCATENATE_SCRIPTS’, false);
to your wp-config.php just after the table prefix definitionHad the same issue and this fixed it!
-
AuthorPosts