Hi,
of course on product page. My fault was that I have assigned products to subcategories but not to the belonging main categories. So this is corrected now. But: I have 3 main categories with IDs 42, 71 and 120. And the shortcode outputs ALL subcategories of main ID 120 (which is on top of admin product category list).
So my ideal case is to use [av_display_subcategories category_id=”xxx”] to show only assigned subcategories of each product.
Thanks again for your help!
Stefan
My God… Thank you Ismael. I change the file immediately.
Close the topic ;)
Only 13 sections out of 21 sections are displaying on https://heineseeds.com/hybrids. This was not an issue until I made some updates the other day. but now when I view them on a desktop, 8 grid rows will not display. they are showing on mobile.
this makes no sense to me. my updates consisted of adding a button to each cell. 3 cells per grid row. 20 grid rows… so 60 buttons. each button links to a different pdf in the media folder on the site.
my server claims the issue must be with the theme and layout. but the first 12 grid rows show just fine… and the others were all created by copying the previous grid row, and changing the contents of the cells.
some please help me figure out how to get it to display properly.
Hey aboutnina,
Thank you for the inquiry.
Please try to add this css code to adjust the font size of the caption title on mobile view:
@media only screen and (max-width: 767px) {
#top #wrap_all .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-title {
font-size: 22px;
}
}
Best regards,
Ismael
Hi team, thanks in advance.
I just copied single.php from ENFOLD folder to ENFOLD-CHILD folder as phb-tbwa-single-post.php and in the top of php i write:
<?php
/*
Template Name: Single Post
Template Post Type: post
*/
Is the same file as single.php but with this extra name to appear in the selected list of templates in POST ENTRY.
The problem is that the content is different when I use one of both.
Here is the video file with the problem
https://drive.google.com/file/d/13-X3gCsNpuK2bEM2H8dhmdbtOb6B1kyp/view?usp=sharing
Thanks.
sadly the topic is closed: . https://kriesi.at/support/topic/search-function-with-link-list/
what i got so far:
https://enfold.webers-webdesign.de/pages
this is only for pages ( if you like to have that for posts – just change the post-type )
i managed it by a custom shortcode – then place this as : [glossary] on your page
function az_index($post_id) {
$AZposts = get_posts(array(
'numberposts' => -1,
'post_type' => 'page',
'orderby' => 'title',
'order' => 'ASC',
// 'category' => $cat
));
$current = "";
$nav = "";
$postlist = "";
foreach($AZposts as $AZpost) {
$postLink = get_permalink( $AZpost->ID );
$firstletter = strtoupper(substr($AZpost->post_title,0,1));
if($firstletter != $current) {
$nav .= "<span class='firstletters'><a href='#$firstletter'> $firstletter </a></span> ";
$postlist .= "<h3 class='firstletter' id='$firstletter'> $firstletter </h3>\n";
$current = $firstletter;
}
$postlist .= "<span><a class='postlink' href='".$postLink ."'>" . $AZpost->post_title. "</a></span><br>\n";
}
print $nav . "<br><br>" . $postlist;
}
add_shortcode( 'glossary', 'az_index' );
and :
.firstletters {
padding: 0 10px ;
background: #900;
margin-right: 5px;
display: inline-block;
}
.firstletters a {
color: #FFF;
text-align: center !important;
}
i tried to have unordered list after the h3 headings – but i couldn’t find a way to do that ( loop is hard to find the place to insert that tags ) – maybe a mod got a good idea
Hi,
Thanks for the credentials.
I recognise one thing:
– being logged in it seems to scroll to the right place (besides that the heading is covered by admin bar)
– not logged in (in incognito window) it seems to scroll to top of the toggle section
e.g. use “Total number of Pendent Lights:” scrolls to “Re-wiring Cost Calculator” headline in incognito, but correctly to content of toggle when logged in
Before I digg deeper – does this give you any hint to your customizations ???
Best regards,
Günter
Hello Support,
I have created a layer slider with one image and caption on the frontpage of my website. It looks just right on desktop but is totally cut off on mobile portrait view and covers the person in portrait orientation. How can I edit the size and position of the caption for mobile? It should look the same as on desktop.
2nd question: how can I change the styling of headings for posts?
Thank you!
Hallo,
ich würde gerne in einer Farb-Sektion vier Spalten nebeneinander auch auf Mobile (max-width: 767px) stehen lassen.
Den Beitrag für die zwei Spalten (https://kriesi.at/support/topic/2-columns-side-by-side-on-mobile/) hatte ich bereits gefunden und das funktioniert bei mir auch.
Nun habe ich versucht den Code anzupassen, was aber leider nicht zum gewünschten Ergebnis führt:
/* Four Columns in color section even on mobile */
.responsive #top #wrap_all .four-col .flex_column {
width: 23.5%;
margin-left: 0;
}
.responsive #top #wrap_all .four-col .flex_column:is(:nth-child(4n+2), :nth-child(4n+3), :nth-child(4n+4)) {
margin-left: 2%;
}
.responsive #top #wrap_all .four-col .flex_column:nth-child(4n+1) {
clear: left;
}
Die Spalten werden weiterhin untereinander angezeigt.
Was mach ich an der Stelle falsch?
Vielen Dank und Grüße aus Franken
Bernd
you can do that manually – via dashboard – menu ( place your logo as img tag inside a custom-link menu-item. – img tag goes to label input field )
this starts with logo top – navigation below ( and then set the logo container to display none ( in desktop mode)
or have a look at: https://pureinstall.webers-testseite.de/logo-centered/
this starts with logo left – menu right ( then the hamburger position of logo will be adjusted allready)
Solution: Reinstate the default woo dropdowns – Applies to all Enfold sites:
The default woo filters are dequeued in enfold > config-woocommerce > config.php and config-365.php
We can requeue them and disable the Enfold filters by adding the following to functions.php in the child theme:
// Removes Enfolds sort by dropdowns
function avia_woocommerce_frontend_search_params()
{
return;
}
// Re-adds the default sortby dropdown
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 20 );
Styling fixes
Add the following css:
@media only screen and (max-width: 767px) {
.responsive #top .woocommerce-ordering {
position: relative;
float: left;
clear: both;
margin: 0;
padding-bottom: 0px;
padding-top: 15px;
top: 0px;
margin-top:60px;
}
}
@media only screen and (min-width: 768px) {
.responsive #top .woocommerce-ordering {
position: relative;
float: left;
clear: both;
margin: 0;
padding-bottom: 15px;
padding-top: 15px;
top: 0px;
margin-top:0px;
}
}
#top.woocommerce-page .woocommerce-ordering select {
width: 100%;
font-size:16px;
padding: 8px;
line-height: 1.2em;
}
-
This reply was modified 1 year, 5 months ago by
thinkjarvis.
btw – dear devs : Is it intended that the label will be affected when selecting “Show on hover only”?
On default button it is the icon!
Anyway – if you do not use that option :
#top .av_promobox .avia-button-wrap.avia-button-right .avia-button {
display: flex !important;
}
#top .av_promobox .avia-button-wrap.avia-button-right .avia_button_icon {
order: 2;
margin-left: 15px
}
if you do not want to affect all promo box elements with button – use a custom class on that element f.e.: right-icon
#top .av_promobox .avia-button-wrap.right-icon .avia-button {
display: flex !important;
}
#top .av_promobox .avia-button-wrap.right-icon .avia_button_icon {
order: 2;
margin-left: 15px
}
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,
Rikard
Hi,
@Guenni007: Thank you for the solution. We’ll forward the thread to our channel. Looks like the user found a fix here: https://kriesi.at/support/topic/right-sidebar-menu-sticky/#post-1467794
Best regards,
Ismael
Hi,
Thank you for the update.
We’ve modified the css code to apply a white background color to the text block and position it in front of the image. Please try it again.
.av-overlap-text-block {
margin-top: -100px;
z-index: 999;
position: relative;
background: white;
padding: 18px;
}
Best regards,
Ismael
I’d like to re-use an old topic but I don’t know how I can identify a menu identifier. See:
old topic
Mike refers to menu-item-2339. How do I find the menu item nr, so I can use this approach for future sites without having to open a ticket?
Hey Tim,
I don’t see any screenshots in the post, please reply to the thread https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
instead of starting a new one for each reply.
Please note that we typically ask that you have a activate support contract for support, as the contact form is not appropriate for support questions.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
Best regards,
Mike
TimGuest
Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
Dear Mike,
Thank you very much for your quick reply. I have tried to illustrate it:

Normally it seems to look like in part 1 with Enfold. As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme. Best regards!
TimGuest
Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
Dear Mike,
Thank you very much for your quick reply. I have tried to illustrate it. Normally it seems to look like in part 1 with Enfold.
As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme.
Best regards!
Hi @mike,
I’d like to ask a follow up question about this old topic
I use a custom testimonial function on mobile on this site https://schoonheidsinstituutdiane.nl/
I want to re-use this for another website, but I’d like to decrease the margins on the side, to fit a maximum of content on mobile, whilst ensuring that the arrows left and rights are still visible. Currently the testimonial is quite narrow/i don’t use the available space in a good way.
Is it possible to make the arrows overlap the image, so that the image is the same width as all the content of the site, with the text the same width as everything else as well? ?
what do I change in the CSS to achieve this? Below CSS is currently in use
/*Custom Testimonial blocks */
#top #team .avia-slider-testimonials.avia-testimonial-wrapper {
overflow: visible;
}
.responsive #top .avia-slideshow-dots.avia-slideshow-controls a {
opacity: 1;
}
.avia-slideshow-dots a.goto-slide.active {
background: #bf9f97;
}
.avia-slideshow-dots a.goto-slide {
background: #ffffff;
}
.avia-slideshow-dots {
bottom: -30px;
padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
.responsive #top #team .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
padding: 0;
font-size: 0.85em;
display: flex;
justify-content: center;
}
}
@media only screen and (max-width: 767px) {
#top #team .av-large-testimonial-slider .avia-slideshow-arrows a {
top: 88px;
}
}
@media only screen and (max-width: 450px) {
#top .avia-testimonial-content {
width: 100%;
}
#top #main .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a {
opacity: 1;
top: 12%;
}
}
@media only screen and (max-width: 767px) {
.myslider {
margin-top: 25px;
margin-bottom: 0.5px;
}
}
.avia-testimonial-meta-mini {
width: 200px;
height: auto;
margin-top: -30px;
justify-content: center;
}
.avia-testimonial-name {
font-weight: 600 !important;
font-size: 23px !important;
}
.avia-testimonial-subtitle {
line-height: 25px;
}
.reviews-italic {
font-style: italic;
}
Im not sure how to edit the mobile version text in the Enfold theme.
Is there a video showing how because the desktop version is too big on the mobile version.
thank you
Hi Mike,
Oh, this really helped now. Allowing cookies on Safari for iPhone and all the mentioned features are visible. Please accept my apologies, it seems I may have blocked cookies in the recent past and forgot about that. Appreciated.
On my desktop PC I am working with different browsers like Firefox, Opera, Microsoft Edge preferably in private mode. And since the last two updates the mentioned features are not working anymore on Firefox. So this is still not clear to me although I allow Firefox to set cookies.
So here’s the update:
Enfold Cookie-Disclaimer does not work on Firefox
Scroll to top button does not work on Firefox
Plugin Portfolio Filter Gallery does not work on Firefox
Plugin NextGEN Gallery does not work on Firefox
Many thanks & all the best!
Matthias
Just starting setting up my second Enfold Site. I’m using the Single page restaurant demo.
I have changed my Logo in Enfold Theme Options, but my Logo only shows when it shrinks on sticky header. When at the top of the page where it integrates into the Fullscreen slider, it still shows the Enfold Logo. If I turn off the sticky header, only the Enfold Logo shows, but only on Desktop. Mobile shows the correct Logo.
Where do I change this?
TIA for any assistance.
-
This topic was modified 1 year, 6 months ago by
brookjames.
-
This topic was modified 1 year, 6 months ago by
brookjames.
-
This topic was modified 1 year, 6 months ago by
brookjames.
Hi,
Ok, I thought that you wrote:
This is what I found:
Enfold Cookie-Disclaimer does not work on Firefox and Safari
Scroll to top button does not work on Firefox and Safari
Plugin Portfolio Filter Gallery does not work on Firefox and Safari
Plugin NextGEN Gallery does not work on Firefox and Safari
Menue does not work on Safari
But when I check I don’t see an issue with these.
But note that Safari has changed their AD block settings to now block FB and other items, so you would need to manually disable this.
Also note that you typically need to accept the cookie settings for some elements to work like the NextGEN Gallery.
Best regards,
Mike
Test is working without changing avia-snippet-sidebarmenu.js
but: What I noticed on this occasion is that the advanced layerslider are not styled correctly for the header sidebar. What was set for Header Top Centered in the layerslider is suddenly far from being centered. This is of course related to the fixation of the header. Fixed elements are, so to speak, outside the DOM.
Edit:
I now know what the problem was: the layer slider has a switch in the advanced project settings. There is a setting called “Fit to Screen Width” where it says : “If enabled, the slider will always have the same width as the viewport, even if a theme uses a boxed layout, unless you choose the “Fit to parent height” full size mode.”
Hi Rikard,
As far as I can see, it seems to work on other machines.
To make things even more complicated, I have noticed that, when I log-in via Firefox into WordPress for editing the website and open a new window to check the result of new pageson the front end, everything works very properly: cookie banner, scroll to top button as well as the plugins (Next GEN & Portfolio Filter Gallery). As soon as I log out, they disappear. So I only can’t see these features on my desktop PC via Firefox once I’m a normal visitor.
All the best,
Matthias
sadly you do not go to your topics once posted : https://kriesi.at/support/topic/right-sidebar-menu-sticky/
I find the method of simply using the Header on Left Sidebar variant and simply moving it to the right, while retaining the properties set there, is also easy to implement.
However, if it is now included in the next version – it is of course the better option.
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Please try this CSS as well:
.avia-gallery.av-slideshow-ui .avia-slideshow-arrows {
width: 120%;
top: 40%;
left: -10%;
}
Best regards,
Rikard
Hi,
In your video the “Unternehmen” was the only item that would not open, when I check with the “delay JavaScript execution” disabled the “Unternehmen” still will not open.
When I check the backend you have a empty column under this item, once removed it will then open on mobile with “delay JavaScript execution” enabled or disabled.
I left this setting for you to check.
I assume that you want the desktop mega menu for “Unternehmen” to show for desktop, so for this I would recommend creating a second menu to show on mobile menu only.
See this thread.
Best regards,
Mike