Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for your patience and for the login, I found the solution is to set the CSS File Merging option at Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression to Use minified theme CSS files without merging
I set this for you and now the stars are showing.
The issue was that the link in the css for the stars is relevant so when the css is merged in the /wp-content/uploads/dynamic_avia/ directory the URL for the stars is expected at /wp-content/uploads/dynamic_avia/images/star.png instead of it’s actual location at /wp-content/themes/enfold/config-woocommerce/images/star.png
I have reported this to the Dev Team for their review, for now you can use the setting that I set or you can upload a copy of the stars image to the /wp-content/uploads/dynamic_avia/images/ directory to use the CSS File Merging option.Best regards,
MikeHey ditteditte,
Sorry for the very late reply, I looked at the last 8 items on the page that you linked to, and as I understand these are the ones that are showing correctly, and the ones at the top of the page are newer and not showing correctly.
The ones at the bottom that are showing correctly are using multiple images in the thumbnails called a source set, your newer thumbnails at the top of the page are only using one image.
Did you add a new plugin? I see that you have quite a lot of plugins.
I tested creating new products with our latest version and the newest woocommerce and found no changes with the images or thumbnails, so I’m not sure what would have changed on your site.
Do you remember making any changes or adding plugins?Best regards,
MikeHi,
Thanks for the link to your page, this helps a lot, so as I understand you want the bottom table to match the top table, the only differences I see are the header row needs to be bold and the table layout needs to be “auto”:

so I recommend adding this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .avia-table.avia-data-table { table-layout: auto; } #top .avia-table.avia-data-table tbody > tr:nth-child(1) { font-weight: bold; }this is the expected results:

The only other difference I see is that your KURSUS above has links so the text color is blue, but I’m sure that if you add links to the bottom table they will also be blue, so it seems that the two tables now match.
Please try this css and clear your browser cache to check.Best regards,
MikeHi,
Ok, then I guess the link you have is your best option.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Please include an admin login in the Private Content area so I can check your css.Best regards,
MikeHi,
I tried the URL that you posted and it went to the google search page and showed the review popup, so I guess you could use that URL for your button, but I’m not sure if it is a good idea because the URL has tracking code for your specific search.
This article recommends going to your Google Business Profile and get your Google review link:

then use this link in your button.
If you want to display your Google reviews try the Plugin for Google Reviews, I have not tried it or any other google review plugins.Best regards,
MikeNovember 11, 2022 at 8:25 pm in reply to: Editing headers on the Archive template, Language showing as a category #1372260Hi,
Thanks for your patience, the function you posted above is for changing the layout of the archive page, so instead of the grid layout you would have the single small layout, that is a small image like your post page that you linked to, did you want to change from a grid layout?
We can change the h3 to h2 with some javascript, but if you want to change the layout please add the function first.
We can also remove the word “English” from the category link, but for the post linked I didn’t find a French translated post, has this not been created yet, or can you link to it?
I ask because I wanted the javascript solution for removing the word “English” from the category link to also work the assumed word “French” in the translated posts.Best regards,
MikeHi,
This is true, the “WooCommerce_thumbnail” size is not the same as the “Thumbnail size”
woocommerce sets its own thumbnail size, I don’t understand how this would “brake your whole site” so perhaps you should create a backup.Best regards,
MikeNovember 11, 2022 at 7:42 pm in reply to: Transparent logo container header on boxed layout #1372257Hey michaelatma,
Thank you for your patience and the screenshot, please link to your page so we can examine the elements and assist with some css.Best regards,
MikeHi,
Please try this, after applying the css, please clear your browser cache and check.#top #header #header_main .av-main-nav .current-menu-item > a > .avia-menu-text { border: 1px solid rgba(0,61,29) !important; margin-left: 1px !important; padding: 5px 0 5px 5px !important; background-color: rgba(0,0,0,0) !important; border-radius: 4px !important; } #top #header #avia-menu .menu-item:hover > a > .avia-menu-text { color: #003D1D; }If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.
Best regards,
MikeHi,
I’m seeing this css:#header .av-main-nav .current-menu-item > a > .avia-menu-text { border: 1px solid rgba(0,61,29) !important; margin-left: 1px !important; padding: 5px !important; background-color: rgba(0,0,0,0) !important; border-radius: 4px !important; }note the padding is still padding: 5px !important; please note that this is a different rule than the one you posted above, as I look closer you have two rules that are very similar, so please look for this one.
Best regards,
MikeHey Antonio,
Thanks for the link to your page, it looks like you are using a full-width color section, full-width elements will make the sidebar show below, please use a one-width column element instead.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Alan,
Please link to your table and include specific details such as the colors and how much cell padding, if you have a mockup it may be helpful, the more information you share the easier it will be for us to assist and meet your expectation.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey woogie07,
To add a custom widget area above the footer go to Appearance > Widgets > Enfold Custom Widget Area and create a new widget area with the name “abovefooter” and then go to Appearance > Editor and edit functions.php file and add following code:add_action('ava_before_footer','avia_above_footer'); function avia_above_footer(){ dynamic_sidebar( 'abovefooter' ); }then you can add your elements inside the new widget area.
Best regards,
MikeHey mvanstee,
Thank you for the link to your page, your Home menu item with the outline around it looks off center because the 5px letter-spacing adds 5px after each letter, so the H is flush to the padding on the left, but the E has an extra 5px letter-spacing before the padding on the right. To correct I recommend removing the 5px padding on the right, so in your css above change the padding to this:
padding: 5px 0 5px 5px !important;
To display the underline add this css:.av_minimal_header #header_main .avia-menu-fx { display: block; }To change the hover menu item color add this css:
#top #header #avia-menu .menu-item:hover > a > .avia-menu-text { color: #003D1D; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Dave,
Thanks for the link to your site, to show the scroll top button on mobile please add this css to Enfold Theme Options ▸ General Styling ▸ Quick CSS field@media only screen and (max-width: 767px){ .responsive #top #scroll-top-link { display: block; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Please do since it is from Ismael in 2019 and I’m not sure if it still works.
This was his original thread, if it doesn’t work we will probably need to ask Ismael to check.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
I adjusted it for your, please clear your browser cache and check.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Thomas,
This was not added into Enfold, did you try this on your site?Best regards,
MikeHey AuroraArcus,
Thanks for the login to your site, to create a booking button in your footer widget we will create the button using the shortcode wand, so we will open a new post and in the block editor select the classic block and in the toolbar select the shortcode wand ▸ Button:

then the standard Advanced Layout Builder button element will open for you to design the button, after you build your button and save the button shortcode will show for you to copy to your widget:

Then go to your widgets and use the Custom HTML widget and paste the shortcode:

once you have copied the shortcode to your widget you can discard the new post that you used to create the shortcode in as it is no longer needed. Now your widget button should look like this:

So if you are happy with the button that I created you can keep it or you can follow these steps and create your own.
While I created the button I added the custom class widget-book in the element options in case you wanted to fine tune the button with some css, in my final test I found the footer link color overrides the color of the text in the button so I add this css in your Quick CSS to adjust:#footer .widget-book a { color:#fff; }so you can add any further customizations to your rule if you wish.
Best regards,
MikeHi,
I’m not sure how easily this could be done, it would require some custom javascript to open the sub-menu after the page loads and it would probably look slightly animated.
I think the javascript would need to specify each page, this there a lot of pages?
The link to your site is not working anymore, do you have a new URL?Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeNovember 10, 2022 at 1:11 pm in reply to: Compatibility issues with Popup Maker 1.16.10 and newer #1372055November 9, 2022 at 8:55 pm in reply to: Two sites with matching set up have different SEARCH RESULTS page? #1371990Hi,
Thanks for your testing, are both sites using the same WordPress version? I forgot to ask that, I guess that I just assumed it.
When I check the results items from both sites they seem to both be using portfolio items and I don’t see anything specifically different about them, are the built the same on both sites?
For example one site is not using a different element or shortcode or code block on the portfolio pages?
Do you have HTML code in an element title on the portfolio pages, such as “strong” for a bold title? An unclosed HTML tag might cause the search results to stop.
I’m just trying to think of possible errors.Best regards,
MikeNovember 9, 2022 at 8:34 pm in reply to: Compatibility issues with Popup Maker 1.16.10 and newer #1371989Hi,
Thanks for the feedback, but unfortunately I don’t know how the popup plugin is triggering its conditions, I would assume that it would just check for the page ID but since this is failing when the footer page is used then the plugin seems to be checking something else.
The use of the footer page doesn’t change the page ID, or the post type, or anything else that I can see, so I don’t see any reason for it to not work.
Try reaching out to the plugin author, perhaps they have a function that you can use to just check the page ID as the condition.Best regards,
Mike -
AuthorPosts
