Forum Replies Created

Viewing 30 posts - 23,281 through 23,310 (of 35,204 total)
  • Author
    Posts
  • in reply to: portfolio previous next #1062109

    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,
    Mike

    in reply to: Phone Number Showing Up Twice #1062108

    Hey 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,
    Mike

    in reply to: Large white space after logo menu hamburger on mobile #1062105

    Hey 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,
    Mike

    in reply to: KONTAKTFORMULAR landet im SPAM #1062102

    Hi,
    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,
    Mike

    Hi,
    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

    in reply to: Title in a Page #1062099

    Hi,
    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.
    2019-02-02-204254
    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;
    }

    2019-02-02-204804
    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
    2019-02-02-211724
    Please let us know if you want further styling like the title center on the page.

    Best regards,
    Mike

    in reply to: Avia codeblock not working in Spanish home page #1062097

    Hi,
    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,
    Mike

    in reply to: recaptcha doesnt work correctly on enfold contact form #1062095

    Hi,
    When I disable the Enfold Recaptcha plugin the second recaptcha still shows behind the submit button:
    2019-02-02-183756
    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,
    Mike

    in reply to: Title in a Page #1062091

    Hi,
    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]

    2019-02-02-180919
    2019-02-02-181009
    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,
    Mike

    Hey 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,
    Mike

    in reply to: Title in a Page #1062064

    Hi,
    Sorry for the late reply, for pages the title is added to the title bar, which you can choose on each page in the “Title” option
    2019-02-02-134020
    or you can choose for all pages in the Enfold Theme Options:
    2019-02-02-134436

    Best regards,
    Mike

    in reply to: Cookie notic shows again #1062054

    Hey 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,
    Mike

    in reply to: Maintenance Page is not loading #1062049

    Hey 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,
    Mike

    in reply to: Enfold 4.4.1 & Gutenberg #1062037

    Hi,
    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,
    Mike

    in reply to: Date of creation article #1062030

    Hey 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,
    Mike

    in reply to: Enfold zip-file is not installing #1062027

    Hey 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,
    Mike

    Hi,
    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,
    Mike

    Hi,
    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,
    Mike

    in reply to: Customising dark transparent contact form #1062000

    Hi,
    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

    in reply to: recaptcha doesnt work correctly on enfold contact form #1061837

    Hi,
    Sorry for the late reply, I took a look at your second site, as the first site doesn’t have the captcha on it right now. So the issue is that there are two captchas stacked on top of each other:
    2019-02-01-215407
    Please include admin login in the Private Content area so we can investigate why.

    Best regards,
    Mike

    in reply to: Customising dark transparent contact form #1061834

    Hi,
    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,
    Mike

    Hi,
    Thanks, I tried to login but I got this error: “Jetpack has locked your site’s login page”
    Please check.

    Best regards,
    Mike

    in reply to: Turn off shortcodes on bottom of pages #1061821

    Hey 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,
    Mike

    Hey 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?
    Installable-Word-Press-file-only
    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,
    Mike

    Hey 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,
    Mike

    in reply to: How to create a mobile only footer? #1061815

    Hey 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,
    Mike

    in reply to: Amazon Affiliate Link #1061812

    Hi,
    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 Android

    Best regards,
    Mike

    in reply to: Avia codeblock not working in Spanish home page #1061809

    Hi,
    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,
    Mike

    in reply to: How to add custom icons to a button? #1061804

    Hi,
    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,
    Mike

    in reply to: Tab Section – background color for each tab #1061797

    Hi,
    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

Viewing 30 posts - 23,281 through 23,310 (of 35,204 total)