-
Search Results
-
In the middle of the top menu bar on the mobile view, I’d like to place a “<=” button.
This button should have a simple “javascript:history.back()” link so that the user can go back to the previous page.This is useful when the website is installed as a webapp and there is no browser around it.
Could you please help me? I’ve seen some requests in the forum for a secondary menu in addition to the hamburger menu, but the PHP + CSS code mentioned seems quite complex for what I want to do.
here what I’d like to achieve…

Thanks in advance!
Bye,
A.-Topic: Block swipe for Easy Slider
Topic: Enfold Not Showing Logo
Hello:
Demo import: Import: Small Business – Flat Demo
The Enfold Logo will not stop displaying. Have cleared all cache. Have deactivated all plugins. Upon inspection, it says my logo should be showing, but the enfold logo displays. Enfold logo image has been deleted.
I have changed nothing on the demo except for the logo and some color in the general styling. My logo displayed perfectly in another demo import. Have no clue, but would appreciate help. Thank you.
Tim
Hi all,
We have been using Enfold with Polylang for around a year. It has worked well to translate pages from English into German and then Spanish. However it has recently been causing issues whereby the frontend layout was broken. After some investigation, it seems that during the translation process, code is inserted ‘custom_class=’ or even ‘custom_class’ in the section and column elements. This therefore stops the execution of the page rendering and requires a manual cleanup of layout elements. I note that if an element has already been assigned an ID or class, this doesn’t happen.
I have tried the following to filter the outputs, but that hasn’t worked.
Any ideas of what else I can look into, or why this might be happening?
// Prevent Polylang from modifying Enfold shortcodes during duplication
add_filter(‘pll_copy_post_metas’, ‘preserve_enfold_alb_data’, 10, 3);
function preserve_enfold_alb_data($metas, $sync, $from) {
// Remove _aviaLayoutBuilder_active from auto-sync to force manual handling
$metas = array_diff($metas, array(‘_aviaLayoutBuilder_active’));
return $metas;
}// Clean up malformed custom_class parameters in shortcodes
add_filter(‘the_content’, ‘fix_polylang_enfold_shortcodes’, 1);
function fix_polylang_enfold_shortcodes($content) {
// Remove empty custom_class parameters from sections and columns
$content = preg_replace(‘/custom_class=[\'”]{2}/’, ”, $content);
$content = preg_replace(‘/custom_class=[\'”][\s]*[\'”]/’, ”, $content);
return $content;
}// Clean up malformed HTML output
add_filter(‘the_content’, ‘remove_custom_class_id_from_html’, 999);
function remove_custom_class_id_from_html($content) {
// Remove id=”custom_class=” (malformed with extra equals)
$content = preg_replace(‘/\s+id=[“\’]custom_class=[“\’]?/i’, ‘ ‘, $content);// Remove id=”custom_class” (literal value only)
$content = preg_replace(‘/\s+id=[“\’]custom_class[“\’]/i’, ‘ ‘, $content);return $content;
}`Hi – I am trying to center align the content in my footer widgets. I am able to get them to center on desktop, but I am unable to get them to center align on mobile. I am using this:
#footer .widget {
text-align: center;
}
Thank you for you help : )



