Forum Replies Created
-
AuthorPosts
-
Hey c_srishti,
Sorry I don’t see the prev and next arrows on the page you linked to. Please include a screenshot in the Private Content area.Best regards,
MikeHey wallaceimedia,
Where have you entered the number into in the theme? Please include admin login and site URL in the Private Content area so we can be of more assistance.Best regards,
MikeFebruary 3, 2019 at 5:05 am in reply to: Large white space after logo menu hamburger on mobile #1062105Hey esotEric,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.inner-container { height: auto !important; }Then clear your browser cache and any cache plugin, and check.
Best regards,
MikeHi,
Do you mean that the messages from your site are landing in your spam folder? This would mean that you are getting them and if you white list them with your spam filter then they will land in your inbox.
Spam filter are pretty advanced now and yours is detecting that you are spoofing the address, but white listing it will tell your filter that you want the messages.Best regards,
MikeFebruary 3, 2019 at 4:23 am in reply to: Hide quantity on product page and cart / Plugin Calculated Fields Form #1062100Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
The theme will add the title automatically without the breadcrumbs in the title bar if you choose the setting “Display only title” in the Header Title and Breadcrumbs option.

It can also be styled with a larger font size and a different color, with css like this:h1.entry-title a { font-size: 30px !important; color: #000 !important; }
But I know it’s not quite what you are looking for, so I have another solution for you, first set the “Display only title” in the Header Title and Breadcrumbs option, then we will automatically move the title for you on each page and hide the empty title bar area with this code at the end of your functions.php file in Appearance > Editor:function move_page_title(){ ?> <script> (function($){ $(document).ready(function(){ $( '#top.page h1.main-title.entry-title' ).insertBefore( '.post-entry-type-page' ); }); })(jQuery); </script> <?php } add_action('wp_footer', 'move_page_title');and add this code in the General Styling > Quick CSS field:
#top.page div.title_container { display: none !important; }You only have to add this code once and it will work on each page automatically

Please let us know if you want further styling like the title center on the page.Best regards,
MikeHi,
I’m going to ask the rest of the team to take a look, perhaps they will see something I overlooked.
Thanks for your patience.Best regards,
MikeFebruary 3, 2019 at 2:17 am in reply to: recaptcha doesnt work correctly on enfold contact form #1062095Hi,
When I disable the Enfold Recaptcha plugin the second recaptcha still shows behind the submit button:

I looked in your functions.php, enfold-functions.php, header.php, & footer.php but I can’t any code that adds the extra recaptcha to your site. Before you tried using the plugin did you try to manually add the recaptcha with some code?
Try disabling your plugins to see if the recaptcha disappears.Best regards,
MikeHi,
The pages were designed to show the titles in the title bar, with or without the breadcrumbs. You do have the option to use the advanced layout builder, as you described.
But I believe you would like to add the title to the top of your page and not in the title bar, so I wrote this shortcode that will add the page title wrapped in H1 tags, which you can edit to H2 if you which.
Try adding this code to the end of your functions.php file in Appearance > Editor:function page_title_sc( ){ return '<h1>'. get_the_title() . '</h1>'; } add_shortcode( 'page_title', 'page_title_sc' );and then add this shortcode in the page where you would like the title to show:
[page_title]

Please let us know if you would like any styling with the shortcode, such as center in the page or for it to be bold.Best regards,
MikeFebruary 2, 2019 at 9:07 pm in reply to: Footer on the bottom of the page regardless of how much content #1062067Hey CreaThinkVeenendaal,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#main > div.container_wrap { min-height: 80vh !important; }Best regards,
MikeHey Create-my-Apps,
Sorry for the late reply, the cookie notice is controlled by the PHPSESSID (PHP session) when you switch language you are stating a new session, thus a new cookie.Best regards,
MikeHey Thomas,
Thanks for the login, I found that your are getting the error in the Private Content area.
Please enable the WordPress > Appearance > Editor so we can check the theme files, or provide FTP access in the Private Content area.
It also looks as though you have a blank space in the child theme directory which can cause errors, please backup & save your theme settings, and deactivate the child theme, then replace the space with a dash or underscore, and reactivate.
The site will think it’s a new child theme, so you can import the theme setting to restore your settings.
Best regards,
MikeHi,
Try adding this code to the end of your functions.php file in Appearance > Editor://open ALB by default function trigger_alb_on_load(){ ?> <script> (function($){ $(window).load(function() { $("#avia-builder-button").trigger('click'); }); })(jQuery); </script> <?php } add_action('admin_head-post-new.php', 'trigger_alb_on_load');Best regards,
MikeHey Sandra,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.newsbox span.news-time { display: none !important; }Best regards,
MikeHey Henk,
Thanks for the login, it looks like your PHP Time Limit is 30 seconds, which should be much higher or “nolimit”
Please ask your webhost to increase this limit, or provide ftp access and a link to your theme install file in Dropbox or Google Drive, I should be able to install via FTP.Best regards,
MikeFebruary 2, 2019 at 4:48 pm in reply to: Enfold theme – no content to upload- how to contact support for New theme link #1062019Hi,
Typically this occurs when there is an issue with the zip file, or the server settings don’t allow enough time or memory to install. I will help solve this, but I still can’t login to check, Please see the screenshot in Private Content area. Please check the login.
Also please include a dropbox, or Google Drive link to the file you are trying to upload as the theme.
If you provide FTP access I probably can bypass whatever limitation and install the theme for you.Best regards,
MikeFebruary 2, 2019 at 4:31 pm in reply to: Hide quantity on product page and cart / Plugin Calculated Fields Form #1062016Hi,
For the product page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.single-product div[itemprop=offers],#top.single-product p.delivery-time-info,div.quantity { display: none !important; }For the cart page, please use this css:
#top.woocommerce-cart form.woocommerce-cart-form th.product-price,#top.woocommerce-cart form.woocommerce-cart-form td.product-price { display: none !important; } #top.woocommerce-cart form.woocommerce-cart-form th.product-quantity,#top.woocommerce-cart form.woocommerce-cart-form td.product-quantity { display: none !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeFebruary 2, 2019 at 5:00 am in reply to: recaptcha doesnt work correctly on enfold contact form #1061837Hi,
Sorry for the late reply, to change the font size of the labels, please use this css:#top.page-id-45 label[for=avia_5_1], #top.page-id-45 label[for=avia_6_1] { font-size: 16px !important; }To change the border width of the submit button, and the font color, we will have to override a !important; that is in current use, but this should do it:
#top.page-id-45 #av_section_1 .av-dark-form .button { border-width: 3px !important; color: #cf3662 !important; }To change the background color of the submit button, and font, when hovering:
#top.page-id-45 #av_section_1 .av-dark-form .button:hover { background-color: #cf3662 !important; color: #ffffff !important; }Best regards,
MikeFebruary 2, 2019 at 4:08 am in reply to: Enfold theme – no content to upload- how to contact support for New theme link #1061831Hi,
Thanks, I tried to login but I got this error: “Jetpack has locked your site’s login page”
Please check.Best regards,
MikeHey Hudavi,
This is enabled by adding this code to your functions.php://set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }so to turn it off you would remove this code. I assume that someone was helping you with a issue and forgot to remove the code, if you include admin login in the Private Content area we can remove this for you.
Best regards,
MikeFebruary 2, 2019 at 2:24 am in reply to: Enfold theme – no content to upload- how to contact support for New theme link #1061820Hey Annabmos,
I would like to assist, but just so I understand correctly I have a couple of questions.
Did you use the “Installable WordPress file only” option to download the file?

If you select the “All files & documentation” by mistake, you will not be able to install this zip as is. Instead unzip the file and then locate the installable theme file within it. Please see this article for more information.If you downloaded the correct file and WordPress is still giving you this error, there is a possibility that a setting in WordPress needs to be adjusted, Please include a admin login in the Private Content area so we can take a look.
Best regards,
MikeFebruary 2, 2019 at 1:58 am in reply to: Hide quantity on product page and cart / Plugin Calculated Fields Form #1061816Hey Jörg,
Thank you for the login, we can hide the hide the ‘quantity’ field on the product pages an in the cart, but for the arrows, do you mean the arrows on the edge of the screen that goes the next product, or do you mean the plus & minus symbols on either side of the ‘quantity’ field?
Please see the screenshot in Private Content area.Best regards,
MikeHey connect4consulting,
Thank you for the link, currently it looks like for mobile you are showing two columns, so the only change is to show different widgets for the mobile versus desktop, which can be done easily with css by including all on the widgets in the footer and hiding them based of screen size using media queries. Here is an example:@media only screen and (max-width: 767px) { widget_1 { display:none!important; } } @media only screen and (min-width: 768px) { widget_2 { display:none!important; } }In this code we would change the “widget_1” & “widget_2” with the actual classes of your widgets, which we would need to see.
Alternatively you could use the plugin Widget Options to choose what devices, and pages to show your different widgets.Best regards,
MikeHi,
Thank you for the link, I believe what you are seeing is the “blocked” or “broken” image icon,
Please see screenshot [1] in Private Content area. I see this with my ad blocker on.
Once I deactivate my ad blocker I see the book images,
Please see screenshot [2] in Private Content area.
This is because the source url of the images is: //ws-na.amazon-adsystem.com/… which is flagged as an ad by ad blockers.
Please check your phone’s browser for a ad blocker. Here’s how to find the ad blocker on the iPhone
Otherwise please take a screenshot from your phone and tell us what kind of phone you have, iPhone or AndroidBest regards,
MikeHi,
Yes, these are the pages that are getting the “Forbidden 403” error, on admin-ajax.php, such as /HomeEsp/ ?
I know earlier you wrote that you checked the file permissions with the steps in the article.
Please ask you webhost to check the server logs for why you are getting a “Forbidden 403” error, it will help us to be able to assist.Best regards,
MikeHi,
I see, so you did create the zip file with the Fontello website?
Please link to your zip file via dropbox or Google Drive, in the Private Content area, I would like to examine and test it on my localhost.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
Mike -
AuthorPosts



