Forum replies created
Hii,
Go to theme Option
Theme option -> Header -> Header -> Choose Header Type ( select header 5 ).
Thank You
Welcome!!
Welcome!!
Welcome!!
Hii,
Add Custom CSS On Additional CSS area.
#wrapper .dd-options li{
border: none;
}
Thank You.
Hii,
Add Below code on “personal” page.
https://www.dropbox.com/s/9o4yyawvgzxywru/personal.txt?dl=0
Thank You
Hii,
If We change navigational menu icon on left or right then Add Custom CSS On Additional CSS area.
@media (max-width: 768px){
#wrapper .dd-container {
text-align: left;
}
#wrapper .dd-options {
border: none;
}
}
Thank You.
Hii,
I have also use third party plugin of the redux framework, so I can’t handle it.if you solved that problem then contact the redux framework.
Thank You
Hii,
First of all, False the WP_DEBUG in wp-config and then follow below step.
Go to theme plugin directory, and change the below file function.
t4p-core-composer plugin -> core -> core.php
Then, find load_assets() function and replace with below code.
function load_assets() {
if ( isset( $_GET[‘page’] ) && $_GET[‘page’] === ‘evl_options_options’ ) {
} else {
// Load styles
T4P_Pb_Helper_Functions::enqueue_styles();
// Load scripts
T4P_Pb_Helper_Functions::enqueue_scripts();
$editor_screen = ”;
if ( isset( $_REQUEST[‘t4p_pb’] ) ) {
$editor_screen = $_REQUEST[‘t4p_pb’];
}
if ( is_admin() && $editor_screen != ‘livepagebuilder_editor’ ) {
if ( isset( $_GET[‘post’] ) && get_post_type( $_GET[‘post’] ) === ‘product’ ) {
$scripts = array( ‘t4p-pb-addpanel-js’, ‘t4p-pb-jquery-resize-js’, ‘t4p-pb-joomlashine-modalresize-js’, ‘t4p-pb-layout-js’, ‘t4p-pb-placeholder’, ‘t4p-pb-tinymce-btn’ );
} else {
$scripts = array( ‘t4p-pb-jquery-select2-js’, ‘t4p-pb-addpanel-js’, ‘t4p-pb-jquery-resize-js’, ‘t4p-pb-joomlashine-modalresize-js’, ‘t4p-pb-layout-js’, ‘t4p-pb-placeholder’, ‘t4p-pb-tinymce-btn’ );
}
} else {
$scripts = array( ‘t4p-pb-jquery-select2-js’, ‘t4p-pb-addpanel-js’, ‘t4p-pb-jquery-resize-js’, ‘t4p-pb-joomlashine-modalresize-js’, ‘t4p-pb-layout-js’, ‘t4p-pb-placeholder’, ‘t4p-pb-tinymce-btn’ );
}
T4P_Pb_Init_Assets::load( apply_filters( ‘t4p_pb_assets_enqueue_admin’, $scripts ) );
T4P_Pb_Helper_Functions::enqueue_scripts_end();
}
}
Thank You.