-
AuthorPosts
-
January 22, 2019 at 9:27 pm #1057450
Hello, what is the best way to hide the name of the template. Plugins like autotimize allow it, but is it the preferred way?
January 23, 2019 at 2:41 pm #1057747Hey,
Please add following code to bottom of functions.php file of your child theme
function avia_remove_debug() { remove_action('wp_head','avia_debugging_info',1000); } add_action( 'init', 'avia_remove_debug');
If that does not help, please post a screenshot and point out the changes you would like to make :)
Best regards,
YigitJanuary 24, 2019 at 11:42 am #1058107Is there any other way, without child theme?
January 24, 2019 at 8:34 pm #1058332Hello,
I uploaded your child theme files in a new folder (named like my website) but if I activate it (what works) my settings are lost…
Ideas?
Best
WJanuary 25, 2019 at 6:20 am #1058486Hi,
That is correct, but you can import the parent theme settings under Enfold->Import/Export, please try that out. If the settings don’t apply then try to toggle one or two theme settings and save again, they should apply after that.
Best regards,
RikardJanuary 25, 2019 at 12:06 pm #1058634Thank You. The settings are here.
Regarding the theme name – there is enfold everywhere:<!–
Debugging Info for Theme support:Theme: Enfold
Version: 4.5.3
Installed: enfold
AviaFramework Version: 5.0
AviaBuilder Version: 0.9.5
aviaElementManager Version: 1.0.1
– – – – – – – – – – –
ChildTheme: Kontento Child
ChildTheme Version: 1.0
ChildTheme Installed: enfoldML:512-PU:35-PLA:4
WP:5.0.3
Compress: CSS:all theme files – JS:all theme files
Updates: disabled
PLAu:3
–>
</head>my child theme functions php:
<?php/*
* Add your own functions here. You can also copy some of the theme functions into this file.
* WordPress will use those functions instead of the original functions then.
*/
function avia_remove_debug() {
remove_action(‘wp_head’,’avia_debugging_info’,1000);
}
add_action( ‘init’, ‘avia_remove_debug’);January 27, 2019 at 6:32 pm #1059398Hi,
To remove the theme info from the page source please refer to the docs
Let us know if this works for you.
Best regards,
Vinay -
AuthorPosts
- You must be logged in to reply to this topic.