Forum Replies Created
-
AuthorPosts
-
February 18, 2018 at 1:09 pm in reply to: Install Enfold Theme Child with Child Theme Configurator #913895
Hey Mgirg,
Please use our pre-built child theme Read about it & Get it here
As you read the page about importing your theme options to your child theme, please note that rarely all the custom css from your parent theme is not transferred. If this happens to you, please go to: /wp-content/uploads/dynamic_avia/ and copy “enfold.css” to overwrite “enfold_child.css”
After that you won’t have any issues.Best regards,
MikeHey thfmb,
Please include the url to the page in question so we can take a closer look.Best regards,
MikeHey Xinspirit,
Your site is giving the error “server IP address could not be found” Perhaps try checking your sub-domain is still listed in your cPanel, as your domain is working.
Also check your htaccess file for broken rules.
As for your error log, most are pointing to/wp-content/themes/twentyfifteen/framework/php/function-set-avia-frontend.phpnote the: /themes/twentyfifteen/
So somehow the site is looking for the theme inside “twentyfifteen” instead of “enfold”
Perhaps this solution will help, as it sounds like yours: Wrong path for theme assets
Can you explain any recent actions, such as moving the site from another host, or installed a redirect plugin?Best regards,
MikeHi,
Please include the url to your site so we can take a closer look.Best regards,
MikeFebruary 18, 2018 at 11:15 am in reply to: Portfolio grid items showing and leading to wrong links #913872Hey BC_mne,
Perhaps I don’t understand, but when I go to either of those links, each masonry item has it’s own link to a portfolio item, and no two are the same.
Please advise.Best regards,
MikeHey IWIW,
I’m not sure I understand, please explain a little more, perhaps with a link to a page I can see the issue on.Best regards,
MikeHi,
Lets try to make the above code only work on tablets and above, so on mobile it will be the other way. So use this code instead.@media only screen and (min-width: 767px) { #top #respond.comment-respond .comment-form-author input,#top #respond.comment-respond .comment-form-email input,#top #respond.comment-respond .comment-form-url input { width: 220px!important; } #top #respond #commentform label { position: absolute!important; left: 245px!important; } }Best regards,
MikeHi,
Oh I see, this is also true for Chrome on Windows too. Try this code in the General Styling > Quick CSS field:#top div .av-light-form select {background-color: #6d6e70 !important; }Best regards,
MikeHi,
I’m not sure if I’m looking at the right domain, please see the link in the Private Content area.
If so it looks as a old version, v4.0.7 so I would check the PHP version on the server. I have see issues with PHP v7.1 vs PHP v7.0, but I’m not sure that Enfold v4.0.7 can use PHP v7.0
Perhaps the best plan would be to update to Enfold v4.2.3Best regards,
MikeHi,
Please follow this solution: Enfold Image Sizes where you will want to change the dimensions of:$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 );to:
$avia_config['imgSize']['portfolio_small'] = array('width'=>185, 'height'=>260 );Then use the Regenerate Thumbnails plugin
It would be best to add this as a function in a Child Theme so you will not lose the setting when updating the theme.
After you set up the child theme, Try adding this code to the end of your child theme functions.php file in Appearance > Editor:add_action( 'after_setup_theme', 'change_portfolio_small' ); function change_portfolio_small() { add_image_size( 'portfolio_small', 185, 260 ); }Code Source
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Turns out it was the “Thumbnail fade in effect” in the gallery, it has a lazy load effect so I changed it to “Activate animation on page load (might be preferable on large galleries)” which says in it’s name that it is preferable for large galleries, such as yours.

It seems to work now, Please clear your browser cache and check.Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:#top #respond.comment-respond .comment-form-author input,#top #respond.comment-respond .comment-form-email input,#top #respond.comment-respond .comment-form-url input { width: 220px!important; } #top #respond #commentform label { position: absolute!important; left: 245px!important; }Best regards,
MikeFebruary 17, 2018 at 6:06 pm in reply to: Enfold do not work properly after changing server – no slider, no options #913692Hi,
That is great news, we will leave this open should you have more questions on this. Please let us know after your testing if we can close this.Best regards,
MikeHey Ezra Tinotenda Makaza,
Thank you for your question, your license is one domain. You can build and test on your localhost or create a staging site on the sub-domain of the licensed domain.Best regards,
MikeHey YongyanLi,
Try this code in the General Styling > Quick CSS field:#top.home .avia-builder-el-43 .av_textblock_section p a {line-height: 50px!important; }Please adjust to suit.
Best regards,
MikeFebruary 17, 2018 at 5:45 pm in reply to: RTL issue with contents and spaces between letter in main menu #913685Hey Mohdes,
For 3: Please try this code in the General Styling > Quick CSS field:.header_color div { border-right-color: transparent!important; }For 2: Please try:
.progressbar-percent { float: left!important; }For 1: is it possible that the font for the character is wide and looks like a space? Please try highlighting the word slowly one character at a time to see if the “space” is part of the character. When I try this on google translate it shows it is one character with no space.

Best regards,
MikeHey seb76,
I see that for mobile you have the slider hidden, so the smallest screen that it shows at is 494px, so I wrote this css to work from 494px to 767px to make the available room for the caption smaller which keeps it together to the right and off the person.@media only screen and (min-width: 493px) and (max-width: 767px) { #full_slider_1 .slide-1 .slideshow_inner_caption { width: 45%!important; } #full_slider_1 .slide-1 .caption_container { width: 95%!important; max-width: 95%!important; }Please see screenshot in Private Content area.
Best regards,
MikeHey xandria,
Try this code in the General Styling > Quick CSS field:.mfp-bottom-bar .mfp-title {display:none !important; }To remove the counter for the lightbox add this:
.mfp-bottom-bar .mfp-counter {display:none !important; }Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:body .av-special-heading .av-special-heading-tag { float: none!important; display: flex; justify-content: center; }Best regards,
MikeFebruary 17, 2018 at 4:27 pm in reply to: Adding more than one new Button on Social Share Buttons #913666Hey Christian,
This is the correct format, I take it that it is not working for you?Best regards,
MikeHi,
The class-pixelentity-theme-update.php is the related to the Envato/Themeforest API
Perhaps there some hickup with the Envato/Themeforest API or downtime over at Envato/Themeforest
Would you like us to try manually installing it?
If you open a new thread with your admin login, ftp login, and cpanel login (for your database) in the Private Content area, and state which demo you would like.
Please note that as this is not your thread your info will not be private in this thread.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHey mike furdal,
Thank you for contacting us, we have many themes, but our most popular is Enfold available though Theme Forest which is $59 with 6 months support. Naturally longer support is available.
Our theme will require that you have a webhost with WordPress installed, which is available though many hosting companies and Theme Forest when ordering, if you don’t already have one. Our theme is a one time payment, the support renews yearly.
I hope this has answered your question, if you have any other questions please let us know.Best regards,
MikeFebruary 17, 2018 at 2:41 pm in reply to: Having an issue with background image responsiveness #913649Hi,
@chiefsusee76 When looking at your image at mobile, I see the whole image is showing at mobile, so is your question to zoom in on the head of the person in the image?
Please see screenshots in Private Content area.Best regards,
MikeFebruary 17, 2018 at 2:25 pm in reply to: Enfold do not work properly after changing server – no slider, no options #913647Hi,
I see you are getting JS errors with “wp-mediaelement” this is discussed here at WordPress. Which talks about JavaScript errors in a language with a locale code such as de_DE-formal. While at the end it says this bug is fixe, I would be curious what language you are using and if changing it has an effect on the errors.
Can you please include a admin login for both sites in the private content area so we can take a closer look.Best regards,
Mike -
AuthorPosts


