Forum Replies Created
-
AuthorPosts
-
Hi,
Try this css:#top.home #av_section_3 .avia-content-slider .slide-entry img { width: 100%; }
or could change the size-medium image to 400px with Simple Image Sizes and then Regenerate Thumbnails.
Best regards,
MikeHi,
Thanks for the link to your site, I see your PHP time limit is 165, please change to 300, and your Max input time is a negative number (-1) please change to 300 also, then try again.
If that doesn’t help try manually importing the demo.Best regards,
MikeHi,
The page uses the Portfolio Grid element with the Link Handling set to Open a preview of the entry (known as AJAX Portfolio)
Then in each of the portfolio items in the Additional Portfolio Settings ▸ Ajax Portfolio Preview Settings ▸ Preview Text add your video link:
Also ensure that Display Preview Images is set to Don’t show the images at all and display the preview text only
Then on the frontend when you click a portfolio item and the Portfolio Ajax opens only the video will show:
Best regards,
MikeJanuary 28, 2023 at 10:18 pm in reply to: wpmu object cache causes my newer blog posts to go blank #1395772Hi,
Thanks for your question, on my demo site I only have one at wp-content/uploads/dynamic_avia/avia_posts_css, I’m not sure why you have two so I asked the rest of the team and will write back when I hear more.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,
MikeHey Alwin,
You will need to use a plugin for this, I’m not sure which would be the best for this as there are many, please test these from the WordPress PluginsBest regards,
MikeJanuary 28, 2023 at 9:49 pm in reply to: Avia Layout Builder spinning as soon as I add a download button #1395768Hi,
Thanks for your patience and the link to your site, it looks like you are using the grid cell element with a download button to a PDF, I tried to recreate this on my demo site and the button works and I don’t have any further issues with the ALB Builder:
Please see the link to my test page below
Please try disabling all of your plugins and If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeHey CopperCityCreative,
Please try this css to make the images the same width as the elements:#top.home #av_section_3 .avia-content-slider .slide-entry img { width: 354px; }
For the one image that is in portrait mode, you will need to change this image to the same landscape aspect if you want it to match the others.
After applying the css, 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,
MikeJanuary 28, 2023 at 8:57 pm in reply to: cUrl error 28 while triing to download and import demo content #1395763Hey css202301,
Thanks for the link to your site, your PHP time limit & Max input time are 60 try changing to 300
If that doesn’t help try manually importing the demo.Best regards,
MikeHi,
Sorry, I have not seen this before, updating Enfold doesn’t change the status of pages.Best regards,
MikeHi,
That is because there is only one item in that row, we can’t change that you would need to change the rows.
When it was at the bottom it was also alone.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,
MikeHey tixxpff,
Thank you for your question, when you manually create a product with the Advanced Layout Builder you will use other elements such as the special heading to add the product title, this is by design. The ALB meant to give you the ability to create custom layouts such as this one and here is another example
You can also use Shortcodes included with WooCommerce, but unfortunately WooCommerce doesn’t have a shortcode for displaying a product name, however, you can create your own by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function displayProductName($item) { global $post; $product_title = get_the_title( $post->ID ); return $product_title; } add_shortcode('product_name', 'displayProductName');
and use this shortcode
[product_name]
Best regards,
MikeHey Mariann_m,
Thanks for your question, but this looks to be an error with Polylang v3.3.1 they recommend downgrading to v3.3.0Best regards,
MikeHey Matt,
Thanks for the link to your page, for the first grid block I see “lesson 41” is at the top, I assume that you want “lesson 1” at the top.
Try this css:@media only screen and (min-width: 768px) { .avia-content-slider.avia-content-grid-active .avia-content-slider-inner { display: flex; flex-direction: column-reverse; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Matt,
Thanks for your patience and the link to your site, for your background image I assume that you are using this css:.main_color { background: #ffffff url(/wp-content/uploads/2023/01/background-border-1.jpg) top left repeat-y scroll }
Try adding background-size: contain; like this:
.main_color { background: #ffffff url(/wp-content/uploads/2023/01/background-border-1.jpg) top left repeat-y scroll; background-size: contain; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Try adding this css for the archive sidebar news images:@media only screen and (min-width: 1025px){ .news-wrap span.news-thumb, span.news-thumb img { width: 200px !important; height: auto !important; margin-right: 0px !important; } .news-wrap .news-headline { float: left; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Sebastian,
Thanks for your question, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function print_menu_shortcode($atts, $content = null) { extract(shortcode_atts(array( 'name' => null, 'class' => null ), $atts)); return wp_nav_menu( array( 'menu' => $name, 'menu_class' => 'menu-shortcode', 'echo' => false ) ); } add_shortcode('menu', 'print_menu_shortcode');
This will let you show a menu in your page content as a shortcode, if your menu name is test then the shortcode to show it would be:
[menu name="test"]
Add the shortcode to a code block element:
Then add this css:.entry-content-wrapper ul.menu-shortcode, .entry-content-wrapper .menu-shortcode li { list-style: none outside; } .menu-shortcode .sub-menu { height:0; opacity: 0; visibility: hidden; transition: all 0.5s ease 0s; } .menu-shortcode .menu-item-has-children:hover > .sub-menu { height: 100%; opacity: 1; visibility: visible; transition: all 0.5s ease 0s; }
I added transition to the css to ease in and out the sub-menus so it was not so fast.
Click the image to see the gif play
https://img.savvyify.com/images/2023/01/28/Enfold_Support_216.gifBest regards,
MikeJanuary 28, 2023 at 4:08 pm in reply to: Hide Nav bar, should appear when scrolling + slanted bottom edge of header img #1395722Hey Alex Freelance,
Thanks for your patience and the link to your site to hide your homepage menu until the page has been scrolled please try this css:@media only screen and (min-width: 767px) { #top.home .av_header_transparency #header_main_alternate { visibility: hidden; } }
I see that you are using a background image for your header with a yellow arch, to make the white area under the yellow arch transparent please try this css:
.header_color .header_bg { -webkit-mask-image: unset !important; background-color: transparent !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for your patience, this thread seems to cover a couple of topics and it seems now you are asking about the breadcrumbs on the page /category/aktuelles-aus-2023/ , you are asking about changing the style, yes you could use css to change it but I don’t know how you want to change it.
Perhaps you could open a new thread and explain how you want to style it perhaps with some screenshots.
This would help us keep the threads on topic and easier to follow, thanks for your understanding.Best regards,
MikeHey Zdeněk,
Thanks for your patience and the link to your page, please try this css instead:@media only screen and (max-width: 767px) { .mts-blog-uvodni-obrazek { width: 100vw !important; position: relative !important; left: calc(-50vw + 50%) !important; } .mts-blog-uvodni-obrazek .avia-image-container.avia-align-left { margin: 0; } }
Best regards,
MikeHi,
Thank you for your patience to use this css for another page that is not the home page you would replace .home with the ID of the page.
So for the post over-mij you can find the ID by hovering over the “edit” link and look at the bottom of the page for the hover link, you will see the ID is 22, so for posts you would use .postid-22 instead of .home, if it was a page you would use .page-id-22
I think there are some plugins that will show the IDs in an easier way.
If you want it to work for all pages and posts then remove the .homeBest regards,
MikeHi,
Thanks for the link to your new page, but the code Ismael gave you is for the child theme functions.php, not for a text block on a page:
Like this:
I added this for you and now the slider shows on your shop page:
and your product page:
please clear your browser cache and check.Best regards,
MikeHey IBRAHIMBerro,
Thanks for the login, I see that you are getting this error:Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php
I found that your Permalink structure includes /index.php/
I changed it to the basic Post name structure, please clear your server cache and check. If this doesn’t help please check your server error log and ask your webhost to check the file permissions for the /wp-admin/admin-ajax.php file because it should not give a 404 (Not Found) error.Best regards,
MikeHi,
Glad to hear that you have this sorted out, some of our demos have sidebar headers like this one and it works well, you will notice that below 767px the sidebar changes to a burger menu.
I don’t see any issues so we probably want to make the client happy :)
Perhaps you would want to choose one of these sidebar demos as a base to start with?
Naturally, if you run into any issues we will be happy to help.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,
Mike -
AuthorPosts