Forum Replies Created
-
AuthorPosts
-
Hi,
The element that has the border now is full width, but if you remove that border you can add a border to the content element which will give you the look you want..template-page.content {border-top: 3px double!important; }Best regards,
MikeHi,
What kind of message are you getting at what stage, I use this setup very often with the free version.
You can manual update with FTP as I pointed above, but some people had issues with the new menu changes.Best regards,
MikeHey yuwonkim,
Try this code in the General Styling > Quick CSS field:.buddypress main { border-right: 0 none !important; max-width: 100% !important; width: 100% !important; } .buddypress aside { display: none !important; } .buddypress .main_color main { border-color: transparent!important; }Best regards,
MikeOctober 8, 2017 at 4:41 pm in reply to: Custom Excerpt length for Posts from Avia Blog Element #861592Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Ah, Google says I took too long, I would have to try again :)
Please check your api fields for a blank trailing space and try making it unrestrected for now so we can get it up and running.Best regards,
MikeOctober 8, 2017 at 4:28 pm in reply to: How can change the space between Rating Stars and Price ? #861586Hey Leo,
Please include the url to the page in question so we can take a closer look.Best regards,
MikeHi,
You can test on your desktop with a localhost app, such as the free version of MAMP for Mac or XAMPP for Windows, or LAMP for Linux
I use the portable UwAmp on Windows 10
Once you have installed one of these you can clone (backup) your site with the plugin Duplicator and install it on your localhost, which is the same as if you were using FTP and your browser only your address is http://localhost
Then you can update, test, make changes, etc with no risk to your live site.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHey siteraum,
Please check your email for a verification code for google map apiBest regards,
MikeHey riwas222,
Try to update manually via FTP: https://vimeo.com/67209750
Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
I recommend backing up with: https://wordpress.org/plugins/duplicator/
Please note that there are a lot of changes from v4.0.2 to v4.1.2, I recommend creating a clone of your site with: https://wordpress.org/plugins/duplicator/ and testing on a localhost before updating your live site.
Let us know if you would like some advice on doing that.Best regards,
MikeHi,
I was able to remove the rouge box from the end of your page by adding the debug to your functions.php Enable Avia Layout Builder Debug :
I removed the debug function from your functions.php afterward.Best regards,
MikeHi,
Perhaps this will help: https://kriesi.at/support/topic/redirect-archives-to-specific-pages/#post-250401Best regards,
MikeHi,
That page uses a color section with some element on top, and the contact form element with only one field, here is a screenshot of the backend:

Here is the debug code so you can copy it into your site (Enable Avia Layout Builder Debug )Best regards,
MikeHi,
Sorry, I don’t understand what “voices” means, and I can’t match your screenshot to your site.
Perhaps a larger screenshot that shows context and points out how you would like to see your site.Best regards,
MikeHi,
I added this code to the end of your functions.php file in Appearance > Editor://* Changing excerpt more - only works where excerpt IS hand-crafted function manual_excerpt_more( $excerpt ) { $excerpt_more = ''; if( has_excerpt() ) { $excerpt_more = ' <a href="' . get_permalink() . '" rel="nofollow">[Read more]</a>'; } return $excerpt . $excerpt_more; } add_filter( 'get_the_excerpt', 'manual_excerpt_more' );Please review.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
When you say that it is correct after scrolling down, is this because the transparent header is not transparent anymore?
Can you please add a screenshot to point out how you would like to see it?Best regards,
MikeHi,
I re-wrote it so it will not change mobile view:

Scale by 40 for Tablet:

and scale by 55 for everything above:

@media only screen and (min-width: 844px) { div.g-recaptcha {transform:scale(0.55)!important; -webkit-transform:scale(0.55)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}} @media only screen and (min-width: 768px) and (max-width: 843px) { div.g-recaptcha {transform:scale(0.40)!important; -webkit-transform:scale(0.40)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}One of the issues with this plugin is that it is pulled in as a iframe so it may be hard for your css to control it depending when the iframe is loaded. Perhaps a better solution would be to allow your contact form to have 1/2 of the page instead of 1/4, you could put the “Thank you” paragraph below the contact form.
Best regards,
MikeHi,
I added this code to the end of your functions.php file in Appearance > Editor:// Force manual except for default editor add_filter( 'the_content', 'replace_content_with_excerpt', 100 ); function replace_content_with_excerpt( $content ) { if ( is_singular() ) { return $content; } remove_filter( 'the_content', __FUNCTION__, 100 ); $excerpt = apply_filters( 'the_excerpt', get_the_excerpt() ); add_filter( 'the_content', __FUNCTION__, 100 ); return $excerpt; }Look for the excerpt box under your post in editor, if you don’t see it look at the very top of your page for “Screen Options” and check the excerpt box.
Best regards,
MikeHey erwin_m,
Try:h2.post-title.entry-title::after { content:url(https://mydomain.nl/wordpress/wp-content/themes/enfold-child/images/rule.jpg)!important;height:auto;margin-bottom:0px!important; }Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:.avia-builder-el-17 .avia_textblock {padding-bottom: 0px !important; } .avia-builder-el-21 {margin-top: 0px !important; }Best regards,
MikeHi,
I added !important; to Ismael’s code and added some to make the check box larger, and it seems to be working.
Please clear your cache and review.#element_avia_2_1 { float: left!important; clear: none!important; width: auto!important; top: -10px!important; -ms-transform: scale(2); /* IE */ -moz-transform: scale(2); /* FF */ -webkit-transform: scale(2); /* Safari and Chrome */ -o-transform: scale(2); /* Opera */ } .acknowledge + p { width: auto!important; float: right!important; margin-top: -25px!important; }Best regards,
MikeHi,
Perhaps I don’t understand the question correctly, but have you tried adding a custom menu and then using the custom menu widget in the page sidebar area, then you can add additional widgets below it?Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:#menu-item-search.menu-item-search-mod {margin-top: 20px !important; }Best regards,
MikeHey stewroids,
To build a landing page use the Template: “Blank – No Header, no Footer” and No Sidebars.
To collect email address you can use the contact form element and save the emails that are sent to you or the Mailchimp Signup element and have them sign up in your Mailchimp account, or use a plugin such as Easy Sign UpBest regards,
MikeOctober 7, 2017 at 8:25 pm in reply to: Mobile View: the logo and menu icons are overlapping #861430Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
The LayerSlider that comes with Enfold is a bundled version that the Layer Slider team has provided, which they have disabled a few premium features. Should you wish to use the premium features you can simply purchase a copy of the layerslider on codecanyon, upload it as a plugin and activate it. It will then overwrite the bundled version, and then you are in full control of LayerSlider updates and premium features.
There is no need to deactivate the bundled version, it automatically detects if the plugin version is active and disables itself.
To fix your slide timing, open your slider and change the “Slide Timing” to something like 7000

Read more here: https://support.kreaturamedia.com/docs/layersliderwp/documentation.html#slider-builderBest regards,
MikeHi,
I have used the debug mode to copy your page to a clean install and the video showed fine, this leads me to believe you have a plugin conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeOctober 7, 2017 at 7:08 pm in reply to: Mobile View: the logo and menu icons are overlapping #861413 -
AuthorPosts
