-
AuthorSearch Results
-
April 23, 2024 at 3:07 am #1440550
Hi,
Thank you for the inquiry.
These lines are not valid because $orderby is an array, not a string.
$orderby = str_replace("Default", "Recommended", $orderby); $orderby = str_replace("Popularity (sales)", "Topseller", $orderby);If you need to replace the labels of the sort items, please replace these lines with:
$orderby["default"] = __( 'Recommended', 'avia_framework' ); $orderby['popularity'] = __( 'Topseller', 'avia_framework' );Best regards,
IsmaelApril 23, 2024 at 12:58 am #1440545In reply to: Change google maps styling
Yes, Ismael, the changes have to be made in avia_google_maps_api.js – but since you’ve set the ternary operator, it shouldn’t bother those who don’t need the filter.
The change (read comments on snippet) only concerned instructions on how to create a code that could be used for filtering from the json code created by Google from that page: https://mapstyle.withgoogle.com/April 22, 2024 at 6:10 pm #1440541In reply to: Keep position of menu and burger logo on mobile
Hi,
The grid row cells with the logo & “Schrijf je in voor onze nieuwsbrief” is not centered because the cell has the vertical-align set to Top, please set to middle.

Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker, and helps keep threads from being confusing with multiple topics.Best regards,
MikeApril 22, 2024 at 4:35 pm #1440534In reply to: Keep position of menu and burger logo on mobile
Sorry last last one; on mobile the block for “Schrijf je in voor onze nieuwsbrief | inschrijven” doesn’t center with top and bottom margins. No matter what kind of margin I give it for the mobile version, nothing changes?
Thank you Mike, it’s perfect now.
When I click on the menu, the anchor links always leave some space at the top. I’ll leave you a link to the image (highlighted space in blue), so if you enter the website, you can see it too. How can I fix this? Thank you and have a good day.April 22, 2024 at 2:54 pm #1440522This line:
$output .= "<li><span class='currently-selected'>" . __( 'Sort by', 'avia_framework' ) . " <strong>{$product_order[$po_key]}</strong></span>";The only thing we do is to create our own list of sorting options in the child functions.php according to your recommendations (here https://kriesi.at/support/topic/store-sort-by-options-woocommerce/):
/* Edit WooCommerce dropdown menu item of shop page Options: menu_order, popularity, rating, date, price, price-desc */ function my_woocommerce_catalog_orderby( $orderby ) { //check if we already did the resorting, otherwise skip it if(isset($orderby["menu_order"])) { $orderby = str_replace("Default", "Recommended", $orderby); $orderby = str_replace("Popularity (sales)", "Topseller", $orderby); unset($orderby["menu_order"]); unset($orderby["rating"]); unset($orderby["date"]); unset($orderby["relevance"]); unset($orderby["rand"]); unset($orderby["id"]); } return $orderby; } add_filter( "avf_wc_product_order_dropdown_frontend", "my_woocommerce_catalog_orderby", 20 ); ---Something is not working right with the base theme it seems.
-
This reply was modified 1 year, 11 months ago by
Yigit. Reason: To wrap the code in the Code tag
April 22, 2024 at 12:16 pm #1440516In reply to: Keep position of menu and burger logo on mobile
Hi,
It looks like you are using custom css to make the header “fixed” on mobile up to 767px, this is why it is doing this, it is not default for the theme.
Try adding this css to override it:@media only screen and (max-width: 989px) { #top #wrap_all .av_header_transparency { background: transparent !important; position: absolute!important; }}If this doesn’t work then try to find your custom position:fixed; and remove it.
Best regards,
MikeApril 22, 2024 at 9:03 am #1440499In reply to: Header Social Icons for mobile
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardApril 22, 2024 at 7:37 am #1440492In reply to: Header Social Icons for mobile
Hi,
Include this code inside the css media query to adjust the size of the icons:
#top .social_bookmarks li { width: 40px; margin-right: 4px; } #top .social_bookmarks li a { width: 40px; line-height: 40px; min-height: 40px; font-size: 24px; }Best regards,
IsmaelApril 22, 2024 at 7:34 am #1440490In reply to: Change google maps styling
Hey!
@Guenni007: Thanks for the info. I’ve tested the modified filter, but it still doesn’t work without the adjustments in the enfold/framework/js/conditional_load/avia_google_maps_api.js file.@Resonanz Digital: We’ve forwarded this thread to our channel.
Cheers!
IsmaelApril 22, 2024 at 7:06 am #1440485In reply to: Header Social Icons for mobile
Hey xfacta,
Thank you for the inquiry.
The icons are hidden on mobile devices by default, but you can display them back with this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block; } }Best regards,
IsmaelApril 22, 2024 at 6:48 am #1440479In reply to: Indexing of website showing strange ulrs
Hey Anne,
Thank you for the inquiry.
You may need to create a robots.txt file to establish specific rules for search engines and determine whether certain files are allowed to be indexed or not.
User-agent: * Disallow: /wp-admin/ Allow: /wp-admin/admin-ajax.php Noindex: /wp-content/ Noindex: /wp-includes/Please check the links below for more info and examples:
// https://kriesi.at/support/topic/google-reporting-s-pages-in-gsc/#post-1170963
// https://kriesi.at/support/topic/broken-css-link-warning-in-ahrefs-crawl/#post-1418689More info about robots.txt:
// https://moz.com/learn/seo/robotstxt
Best regards,
IsmaelApril 22, 2024 at 6:34 am #1440474In reply to: Stretched layout not working.
Hey jensmart,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Make sure top purge the cache too before checking the page.
Best regards,
IsmaelApril 21, 2024 at 10:55 pm #1440466kblankinship
ParticipantMy client is currently considering updating an existing enfold website to be more mobile friendly. The new Parallax theme almost fits the bill, but I’m having a bug occur during testing.
The top right image does not show up on only mobile browsers with both Safari and Firefox. It works nicely with Chrome. I’m stumped in trying to get this resolved. Desktop environments all works well.
Please help point me in the correct direction.
Thank you!
April 21, 2024 at 10:34 pm #1440465In reply to: Xize widget text for all pages
Hey schweg33,
The css you posted is for the title of the widgets, for the text in the widgets try this css and adjust to suit.#top [id*="custom_html-"] > .custom-html-widget { font-size: 20px; font-weight: 400; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeApril 21, 2024 at 10:22 pm #1440464In reply to: change sidebar background color
Hey hansloe,
Thanks for the link to your page, this depends on what you want to achieve, if you wanted the sidebar only to be white then you could use this css in your Quick CSS field:#top #main .sidebar { background-color: #fff; }but the result would be like this with the space to the right of your sidebar gray like the other side:

If you want the space to the right of your sidebar also white then try this css:@media only screen and (min-width: 768px) { #top #main .container_wrap_first.sidebar_right { background: linear-gradient( to right, #ebebeb 0%, #ebebeb 50%, #ffffff 50%, #ffffff 100% ); } #top #main main { background: #ebebeb; } }which will give this result:

Please adjust the color to suit and ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeApril 21, 2024 at 8:11 pm #1440456In reply to: only on home
Hey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top:not(.home) .copyright { display: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeApril 20, 2024 at 10:41 pm #1440441Topic: Youtube related – more videos on Tablet or Mobile
in forum Enfoldtrickywisdom
ParticipantHello, I don’t want related youtube videos to be shown when I embed a video.
I fixed the problem for my desktop with your solution:
modify the enfold/config-templatebuilder/avia-shortcodes/video/video.php file directly.
$params[] = ‘rel=0’;
But they still appear on my tablet and mobile. When you stop the video you get a More Videos. And when it ends, you get the Related Videos…
Can you please leave the topic heading as you have set it. On the one hand, the meaning of the answers will then be clearer, and on the other hand, all other attendees can also learn from the questions of other participants. If a question has been answered for you, simply post it here in a new answer.
April 20, 2024 at 4:55 pm #1440427In reply to: all widget titles the same
Hey schweg33,
Try this CSS:#top #wrap_all .all_colors .widgettitle, #top [id*="custom_html-"] > h3.widgettitle { color: #666666; text-transform: none; font-size: 23px; font-weight: 200; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeApril 20, 2024 at 4:38 pm #1440426April 20, 2024 at 4:08 pm #1440425In reply to: Can’t get rid of random whitespace in parallax demo
April 20, 2024 at 3:22 pm #1440423Topic: all widget titles the same
in forum Enfoldschweg33
ParticipantHello everyone
I have received the css code below from you:
/*widget-title for all pages*/
#top #wrap_all .all_colors .widgettitle,
#top #custom_html-2 > h3.widgettitle {
color: #666666;
text-transform: none;
font-size: 23px;
font-weight: 200;
}
the title is displayed correctly on two pages:
1 correct:
2 correct:
3 is displayed incorrectlyHow do I have to add the code so that all titles look the same if I also add other footers again?
thanks in advance
kind regards
FranzApril 20, 2024 at 10:10 am #1440402In reply to: Upgrade from 3.4 to current Version
Hey dave957,
The update to 5.7 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/Best regards,
RikardApril 19, 2024 at 9:09 pm #1440398In reply to: aria-label
Thanks Rikard,
That did help.
Can you tell me why the back to top link has an aria-hidden=”true” tag in there. Is it not useful to screen readers?
I see the woo commerce cart button has this as well. Why and how do we make it visible to screen readers?-
This reply was modified 1 year, 11 months ago by
epkdesign.
April 19, 2024 at 4:41 pm #1440376Hi,
Great, I’m glad that you found a solution. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardThank you Mike, it looks perfect!
To align it fixed at the bottom like this link https://xd.adobe.com/view/61489a4e-0786-455b-a43b-4b5e3061151e-341b/screen/f5805a3f-f75c-414d-a1cf-b36df0ffd18a/, do I need to work on the padding top of this element ‘div .widget_nav_menu’ or are there other ways?April 19, 2024 at 4:29 pm #1440373In reply to: Problem with Avia editor
Hi,
Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardApril 19, 2024 at 4:25 pm #1440372In reply to: Change google maps styling
doch ich las es;
nur wollte ich im Gegenzug wissen wo dein snazzy json her kommt, denn wenn du dem Link zu snazzy folgst, und dort mal ein Styling durchspielst, dann erhält man am schluss auch wie bei Google einen json code, der geschweifte Klammern und Doppelpunkte enthält.
Daher wollte ich wissen woher dein Snazzy Code kommt.Außerdem war mein Kommentar oben ja:
Changes in avia_google_maps_api.js are the same – and because it is set by a ternary operator there is nothing to stop it being included for the next release – right?
Es würde auf Grund der Verwendung eines ternären Operators jene die das Filter und diese Einstellungen nutzen auch nicht stören, wenn man es in Enfold aufnehmen würde.
Da ich auch Borlabs Nutzer bin – wäre das sicherlich eine Bereicherung.
April 19, 2024 at 2:36 pm #1440369In reply to: Change google maps styling
Hallo Günter,
Ich wechsel kurz auf Deutsch weil ich mich da besser Ausdrücken kann :D
Den Code den du mir jetzt geschickt hast ist ja schon der Code den ich so in Verwendung habe und der funktioniert auch. Ismael hatte nur Änderungen in im javascript gemacht (https://kriesi.at/support/topic/change-google-maps-styling/#post-1440336) und ich wollte nur wissen ob ihr diese Änderungen dann in den Core übernehmen könnt mit dem nächsten Update. Kann es sein, dass du https://kriesi.at/support/topic/change-google-maps-styling/#post-1440337 nicht gelesen hast? :D
Oder reden wir gerade aneinander vorbei?
Liebe Grüße
Patrick -
This reply was modified 1 year, 11 months ago by
-
AuthorSearch Results
-
Search Results
-
My client is currently considering updating an existing enfold website to be more mobile friendly. The new Parallax theme almost fits the bill, but I’m having a bug occur during testing.
The top right image does not show up on only mobile browsers with both Safari and Firefox. It works nicely with Chrome. I’m stumped in trying to get this resolved. Desktop environments all works well.
Please help point me in the correct direction.
Thank you!
Hello, I don’t want related youtube videos to be shown when I embed a video.
I fixed the problem for my desktop with your solution:
modify the enfold/config-templatebuilder/avia-shortcodes/video/video.php file directly.
$params[] = ‘rel=0’;
But they still appear on my tablet and mobile. When you stop the video you get a More Videos. And when it ends, you get the Related Videos…
Topic: all widget titles the same
Hello everyone
I have received the css code below from you:
/*widget-title for all pages*/
#top #wrap_all .all_colors .widgettitle,
#top #custom_html-2 > h3.widgettitle {
color: #666666;
text-transform: none;
font-size: 23px;
font-weight: 200;
}
the title is displayed correctly on two pages:
1 correct:
2 correct:
3 is displayed incorrectlyHow do I have to add the code so that all titles look the same if I also add other footers again?
thanks in advance
kind regards
Franz




