-
Search Results
-
Hey guys,
I’m having a problem I just can’t fix. Even googling in your awesome forum didn’t help this time.
My page doesn’t display the icon of the “jump to the top button”, as well as the social media button icons at the top of the page.
I have worked with enfold on another page, I didn’t have this problem there. Can you help me please?Thanks in advance. Best regards,
RobertHi
is there a way to replace the cart-icon and the text “Choose an option” on the product-overview page (variable products)
Please see the private field.
To me this icon does not make sense as it suggests “add-to-cart”, which it doesn’t.– I would like to replace the “cart-icon” icon with the “icons-shop-options.png” icon from the folder “wp-content/themes/enfold/config-woocommerce/images”.
– At the same time I would like to change its text to “Details ansehen” [“Show details”] – on hover..
Of course: without changing the button’s action.Thanks,
BrunoHello Enfold Team,
I would like to set a different color for visited links. But when i add
a:visited {color: example;}
to quick CSS, also the visited button links change the color. I don’t want that.
What is the best way to change only the visited text links?Greetings
Andreas
Hi there, please can you assist:
Theme – clicked on the reset all button thinking it would reset the current options, but it reset other things, now I cannot update the main menu hover and select colours to my colour of choice.
Another is the footer wording – powered by Enfold WordPress Theme – I would like to hid this as I am developing websites and would like to offer development to my clients and would use Enfold as a theme for them.
Lulu
Hi,
I am working on a new website and I have one last issue:
We want to display images of our work using the portfolio Masonry gallery with 6 different categories.
for each portfolio-item I just gave a name, preview image, in the Overwrite Portfolio Link setting: Define Custom link with the image URL.I have installed the latest Enfold version (4.4.1) with Enfold Child theme, and WordPress 4.9.7.
We want to have the option that when sorting one category, only items from that category will be displayed.
currently, although sorting when navigating the images it displays all the images.I tried to find a solution in the forum and also tested all the solutions in https://kriesi.at/support/topic/previous-next-buttons-only-same-category/
but none worked for me.Best Regards
UriTopic: Can't edit blog page
Hi – I can’t edit my sites main blog page using the advanced editor. I click on the ‘Advanced Layout Editor’ button but then the page info doesn’t load, I just get the circling ‘loading’ icon. Other pages work fine.
I have tried:
Using different browsers
Clearing my cache
Disabling all pluginsI am on the latest version of WP and Enfold
Hi there,
I am using Yoast (just so you know) and I have created all my Woocommerce products using the ALB.
I have set up my Twitter Card and the image for an example product shows correctly, I have also tested the card in the Twitter validator which appears to check out ok and the site is whitelisted as there is no prompt for that and the generated log finds the metatags, but the generated preview is not a large image as intended or configured within Yoast or the Product setting.
When I test a share to Twitter using the share element button all it generates is an abbreviated url link and not a summary with a large image as it is supposed to do.
Is this a failure of Enfold, or a clash with Yoast or something else that I have not done?
Links to screenshots in pvt content.Hi there,
I have just installed Enfold onto a website (updated from Avada) and we love it thank you!
I have a weird issue on all of the download buttons. There is a small, blue arrow graphic and I would like to know how to get rid of it please? I have included a screenshot of the entire line so you can see it’s just on the download button.
Many thanks – JoelHi
I want to add an Easy Slider to the Welcome page.
However, when I open a page (either a new or an existing one) and click on the button “Advanced Layout Builder” – nothing happens.
No sign of the ALB visible. I expected some drag and drop web elements to show up.In the Enfold Child > Layout Builder section the ALB is activated, no option (disable, remove …) is ticked.
Am I missing something?
Thanks,
BrunoHi,
I use WPML for a multi language site and I have a strange problem on a mobile with selecting a language.
When I click on the language buttons nothing happens.See https://bergjeths.com on a mobile device. On a desktop it works fine.
I use the following custom css code:/* WPML Flags Country Code */ li.menu-item.menu-item-language.menu-item-language-current.dropdown_ul_available, #header_meta ul.avia_wpml_language_switch.avia_wpml_language_switch_extra,.language_flag img {display: none !important;} .header_color li.language_en.avia_current_lang span.language_code {text-decoration: underline; color: #ffffff !important;} .header_color li span.language_code {color: #ffffff !important; display: block !important; text-transform: uppercase; font-size: 16px; font-weight: normal; font-family: 'Exo', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;} #top ul.avia_wpml_language_switch li {margin: 0; padding: 0 5px; border: none; border-left: 1px solid #ffffff; height: 14px;} #top ul.avia_wpml_language_switch li:first-child {border-left: none;} #top ul.avia_wpml_language_switch li a {position: relative; top: -12px;} #top ul.avia_wpml_language_switch.avia_wpml_language_switch_extra {position: absolute; top: 82px;} #top .header-scrolled ul.avia_wpml_language_switch.avia_wpml_language_switch_extra {position: absolute; top: 15px;} .avia-menu.av-main-nav-wrap {margin-right: 130px;} /* WPML Flags Country Code */ @media only screen and (max-width: 990px) { #header_main_alternate { display: block !important; border: none !important; } #top ul.avia_wpml_language_switch.avia_wpml_language_switch_extra {position: absolute; top: 0px;} }and the following PHP code in function.php:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); } add_action('init', 'avf_add_flags'); function avf_add_flags() { add_action( 'ava_inside_main_menu', 'avia_wpml_language_switch', 10); } add_action('init','ava_remove_lang_flags', 9999); function ava_remove_lang_flags() { remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); add_action('avia_after_footer_columns', 'avia_wpml_language_switch', 10); }I also use a widget area in the header with following code in functions.php:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }Can you help me out on this or point me in the right direction?
THX FreekHi,
WP 4.9.7
Enfold 4.4.1
Layerslider 6.7.1We’ve copied a slider that was set up before and we can’t get the navigation to show. We have all the show navigation buttons set to show. Is there anything else that we meed to do?
The website is http://stmaryswines.com.
Thanks for any help you can give us,
KarenHi there,
I just ran into the issue, that I cant click on the cart button when using smartphone – website and other devices seem fine.
I noticed that this has been an issue in some enfold/woocommerce files explained in an older ticket here: #914350I actually have added the css code provided by support team and it works.
BUT still, can you look into this, why the woocommerce file has this issue?
thanks!
my best regards
a.-Dear Enfold team,
I have a question which is probably quite easy to answer for you – I tried searching the board though and couldn’t find a solution.
I’m using a php snippet which inserts the last updated date of single posts, if the updated date differs from the publishing date.
This is the snippet:
function wpds_last_updated_date( $content ) { $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400 && is_single() ) { $updated_date = get_the_modified_time('j. F Y'); $updated_time = get_the_modified_time('G:i'); $custom_content .= '<p class="last-updated">Zuletzt aktualisiert am '. $updated_date . ' um '. $updated_time .'</p>'; } $custom_content .= $content; return $custom_content; } add_filter( 'the_content', 'wpds_last_updated_date' );Everything works fine on “regular” blog pages, like here – the updated date is inserted between my social sharing buttons and the first paragraph:
updated date 1But when I use the avia page builder for blog postings (which I love to do for complex layouts), the updated date gets inserted right before the first element:
avia blog postingThis updated info is really important to me – any chance to change the insertion position on avia postings?
greetings,
Ritchie

