Forum Replies Created
-
AuthorPosts
-
Hi,
Glad to hear, let us know when you are done so we can close this thread.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,
MikeNovember 27, 2022 at 5:52 pm in reply to: Issues Background image does not show on mobile devices whewirh background image #1374027Hi,
Thanks for the screenshot, but I don’t see any difference in your screenshot or on your site, here is a close up of the two and it still looks the same to me:

As far as your caching, it looks like your server is using lightspeed caching, I would recommend disabling all of your caching until you are done building your site.Best regards,
MikeHi,
I’m glad that you found the conflict, when I check your site the open sans font is from your OMGF plugin.

So after you remove the plugin, if you see a google font loading, first disable all of your plugins because most of the google font issues we are see are from plugins.
If this doesn’t help then leave your plugins deactivated and let us know so we can check.Best regards,
MikeHi,
Thanks for the feedback, I see that your version of Enfold is v4.5 from 2018 this is not compatible with PHP v8+
So please try changing your server PHP to v7.4 and restore your backup and do not update the WordPress version if asked until you have updated the theme first.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.
Best regards,
MikeHi,
I manually copied your site to my test server and have linked to it below with a login for you, please review it.
If you are happy with it then we can install it on your server, have you ever used the Duplicator plugin?
I think this would be the easiest way to move it, you just need a cPanel so you can create the new database.
If you have not used it before can you give me access to your cPanel?BTW, I noticed that a few major theme options were missing from your site, so I believe your database is corrupt and that is why it is crashing and you couldn’t create a staging site from it.
Best regards,
MikeHey nonosapiens,
Can you explain when was the last time the site was working and what was the last thing done before it crashed?
Above it sounds like you added some css, can you tell us where you added the css?
I have not seen this kind of error, and just adding css should not cause this error.
I would recommend restoring a backup, most webhost automatically backup the site every so often, ask your webhost to restore the last working backup for you.Best regards,
MikeHi,
Thank you for updating the sftp login, I was able to login.
Can you create a second WordPress install in a sub-directory for me to copy your site over to.
I will copy your 9 pages over to the new install. (none of the woocommerce pages)
Then after you review that the new install is working you can delete the old WP install and direct the site to the new sub-directory.
Does this make sense?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,
MikeNovember 26, 2022 at 10:23 pm in reply to: Fehler vom Typ E_ERROR wurde in der Zeile 289 der Datei /var/www/vhosts #1373991November 26, 2022 at 10:11 pm in reply to: Blog list, keep article extract CSS in the Blog List view #1373990Hey Ad-Min747,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:if ( ! function_exists( 'wpse_custom_wp_trim_excerpt' ) ) : function wpse_custom_wp_trim_excerpt( $wpse_excerpt ) { $raw_excerpt = $wpse_excerpt; if ( '' == $wpse_excerpt ) { $wpse_excerpt = get_the_content( '' ); $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); //Set the excerpt word count and only break after sentence is complete. $excerpt_word_count = 75; $excerpt_length = apply_filters( 'excerpt_length', $excerpt_word_count ); $tokens = array(); $excerptOutput = ''; $count = 0; // Divide the string into tokens; HTML tags, or words, followed by any whitespace preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); foreach ( $tokens[0] as $token ) { if ( $count >= $excerpt_length && preg_match( '/[\,\;\?\.\!]\s*$/uS', $token ) ) { // Limit reached, continue until , ; ? . or ! occur at the end $excerptOutput .= trim( $token ); break; } // Add words to complete sentence $count++; // Append what's left of the token $excerptOutput .= $token; } $wpse_excerpt = trim( force_balance_tags( $excerptOutput ) ); $excerpt_end = ' <a href="'. esc_url( get_permalink() ) . '">' . ' » ' . sprintf( __( 'Read more about: %s »', 'wpse' ), get_the_title() ) . '</a>'; $excerpt_more = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); $wpse_excerpt .= $excerpt_more; /* Add read more in new paragraph */ return $wpse_excerpt; } return apply_filters( 'wpse_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); } endif; remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); add_filter( 'get_the_excerpt', 'wpse_custom_wp_trim_excerpt' );Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeNovember 26, 2022 at 10:00 pm in reply to: How do I place text at the bottom of a 100% color section? #1373988Hi,
Glad we were 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,
MikeNovember 26, 2022 at 9:56 pm in reply to: How do I place text at the bottom of a 100% color section? #1373985Hi,
No, unfortunately not, the behavior of the inner content is set by the color section parent, not the inner elements.
So for this we will need to start over, so we have a color section that is 100% height and two text elements inside:

and a custom class to each color section, either top-element or bottom-element

then use this css:.top-element { top: 0; position: absolute; } .bottom-element { bottom: 0; position: absolute; }Best regards,
MikeHi,
Thanks for the login, but when I checked the Advanced Layout Builder loaded correctly.
I see that you are using text element shortcode addon plugins, if you experience further issues try deactivating these plugins they could be causing a conflict, TinyMCE Advanced has been known to cause random errors and other plugins that add extra options to the text element toolbar may cause issues.
I see that you have quite a lot of plugins, typically most errors are a result of plugin conflicts so we recommend to first try to reproduce any errors with the plugins deactivated.Best regards,
MikeNovember 26, 2022 at 9:20 pm in reply to: How do I place text at the bottom of a 100% color section? #1373981November 26, 2022 at 9:16 pm in reply to: Using and editing avia-builder.css in a child theme #1373980Hey domchocolate,
Unfortunately, you can not add it to your child theme, instead try adding your css to your child theme functions.php like this:function avia_builder_prev_img_container_wrap(){ ?> <style> #wpwrap .av-hotspot-container .avia-builder-prev-img-container-wrap{width: 800px} </style> <?php } add_action('admin_head', 'avia_builder_prev_img_container_wrap');Best regards,
MikeHi,
Glad we were 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,
MikeNovember 26, 2022 at 8:59 pm in reply to: How do I place text at the bottom of a 100% color section? #1373974Hi,
Glad this helped. the inner div .content has a top and bottom 50px padding:

if you want to remove this use this css instead:.avia-section.av-minimum-height.text-bottom .container .content { vertical-align: bottom; padding: 0; } .avia-section.av-minimum-height.text-top .container .content { vertical-align: top; padding: 0; }the results:

You can add the css to your child theme stylesheet if you wish, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Thanks for the screenshot and the link to your site, please use the shortcode wand
to open the button element and style as you wish, when you save the button the shortcode will show and on the frontend the button will show.

Best regards,
MikeHi,
Glad we were 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,
MikeNovember 26, 2022 at 8:34 pm in reply to: How do I place text at the bottom of a 100% color section? #1373968Hi,
Thanks for the screenshot, I see that you have added css to the custom class field, please only add the custom class that you want for the element in the field, like this:
text-bottom
or
text-top
note that there is no dot before the class, this is important.
then in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field add the css:.avia-section.av-minimum-height.text-bottom .container .content { vertical-align: bottom; } .avia-section.av-minimum-height.text-top .container .content { vertical-align: top; }the css will only work on the elements with the custom class.
Best regards,
MikeHey Stephen,
Thanks for the link to your page, try this css and adjust to suit:.avia-image-container .avia-image-container-inner { top: -60px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 26, 2022 at 8:09 pm in reply to: How do I place text at the bottom of a 100% color section? #1373964Hi,
The middle alignment is the default, so you only need to assign the top & bottom.
So use the custom classes text-bottom & text-top
and this css.avia-section.av-minimum-height.text-bottom .container .content { vertical-align: bottom; } .avia-section.av-minimum-height.text-top .container .content { vertical-align: top; }Best regards,
MikeNovember 26, 2022 at 7:06 pm in reply to: How do I place text at the bottom of a 100% color section? #1373962Hey Michael,
Please try this css:.avia-section.av-minimum-height .container .content { vertical-align: bottom; }please see the test page linked below.
Best regards,
MikeNovember 26, 2022 at 6:51 pm in reply to: How to disable autoplay from a Color Section background video #1373960Hi,
You can add this function to your child theme functions.php, unless it is already there:function avia_include_shortcode_template( $paths ) { if( ! is_array( $paths ) ) { $paths = array(); } $template_url = get_stylesheet_directory(); array_unshift( $paths, $template_url . '/shortcodes/' ); return $paths; } add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );then in your child theme directory create a new directory /shortcodes/ then copy the folder with your customized element into it, in your case /section/section.php
I would recommend testing the customization on the parent theme file like Ismael recommended first to ensure that it worked as you expected.Best regards,
MikeNovember 26, 2022 at 6:45 pm in reply to: Update to Enfold 5.2.1 breaks footer and other child elements #1373959Hi,
To update your staging site I recommend downloading the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.
Best regards,
MikeNovember 26, 2022 at 6:42 pm in reply to: Will Content Slider show continuous / looping content? #1373958Hey davecate,
Thanks for your patience but unfortunately since you have 9 items with 4 columns the last item will be shown by it’s self, you can show 3 columns with 9 items and have no spaces, or you can have 12 items with 4 columns.Best regards,
MikeHi,
As I understand your last request, you want the beginning breadcrumb link on your blog page (https://3dlabstore.com.hk/blog) to point to https://3dlabstore.com.hk/3d-printing-technology
When I check your blog page this is the current link, so I assume that you have already sorted this out.Best regards,
Mike -
AuthorPosts




