Forum Replies Created

Viewing 30 posts - 22,471 through 22,500 (of 67,491 total)
  • Author
    Posts
  • in reply to: Enfold Contact Form Alignment and Style Issues #1118979

    Hey Stephanie,

    Thank you for using Enfold.

    1.) This css code should adjust the width of the field columns.

    .avia_ajax_form .form_element_third {
        width: 33.3%;
    }
    

    2.) Add this css code to change the background color to transparent and add a 1px border around the contact form button.

    .main_color input[type='submit'] {
        background-color: transparent;
        color: white;
        border: 1px solid #ffffff;
    }
    

    3.) How did you add the font? You should be able to use the css font-family property to apply it to any text element including the contact form button.

    // https://www.w3schools.com/CSSref/pr_font_font-family.asp

    Best regards,
    Ismael

    in reply to: Updates to token System #1118978

    Hi,

    Thank you for the update.

    Try to replace line 4065 to 4084 with the following code. Or just get a fresh copy of the file then override the old one.

    $avia_elements[] =	array(
    					"slug"	=> "demo",
    					"name" 	=> __("Import: Church Demo", 'avia_framework'),
    					"desc" 	=> 	 "<p><strong>{$what_get} <a href='https://kriesi.at/themes/enfold-church/' target='_blank'>{$online_demo}</a></strong></p>"
    								."<h4 class='av-before-plugins'>".__("Required Plugins:", 'avia_framework')."</h4><ul>"
    								."<li><a href='https://wordpress.org/plugins/the-events-calendar/' target='_blank'>The Events Calendar</a> "
    								.__("(needs to be active to install the demo)", 'avia_framework')."</li>"
    								."<li>or <a href='http://mbsy.co/6cr37' target='_blank'>The Events Calendar PRO</a></li>"
    								."</ul>"
    								."<h4 class='av-before-plugins'>".__("Demo Images included:", 'avia_framework')."</h4><ul>"
    								."<li>".__("All", 'avia_framework')."</li>"
    								."</ul>",
    								
    					'files' => "/includes/admin/demo_files/church",
    					"id" 	=> "import",
    					"type" 	=> "import",
    					"exists" => array("Tribe__Events__Main",__("The Events Calendar Plugin is currently not active. Please install and activate it, then reload this page in order to be able to import this demo", 'avia_framework')),
    					"image"	=> "includes/admin/demo_files/demo_images/church.jpg"
    					);
    					

    And please don’t forget to register an account and login.

    // https://kriesi.at/support/register/

    Best regards,
    Ismael

    in reply to: Changing the mobile buger menu #1118975

    Hi,

    Thank you for the update.

    1.) Use this css code to change the sub menu indicator icon.

    .html_av-submenu-hidden .av-submenu-indicator:before {
        content: "+";
    }

    2.) Set the font weight of the phone info from 700 to 400.

    .phone-info {
        font-weight: 400;
    }
    

    3.) You can manually add a hyperlink tag in the phone field.

    // https://www.w3schools.com/tags/tag_a.asp

    If you want to trigger a phone call, add the tel scheme in the href attribute value.

    <a href="tel:555-555-5555">555-555-5555</a>
    

    // https://stackoverflow.com/questions/1608548/how-to-trigger-a-phone-call-when-clicking-a-link-in-a-web-page-on-mobile-phone

    Best regards,
    Ismael

    in reply to: breadcrumbs on project page #1118789

    Hey!

    Thank you for the update.

    Do you want to set the category “featured” as the default filter? This script might help.

    
    function ava_custom_script_mod_sort() {
    ?>
    <script>
    (function($) {
       $('.featured_sort_sep').trigger('click');
    })(jQuery);
    </script>
    <?php
    }
    
    add_action('wp_footer', 'ava_custom_script_mod_sort', 10 );
    

    Add it in the functions.php file.
    Regards,
    Ismael

    Hi,

    Thank you for the update.

    This should help resize or separate the products into 3 equal columns on mobile view.

    @media only screen and (max-width:767px) {
        .responsive #top #main .products .product {
            width: 32%;
        }
    
        .responsive #top .products :nth-child(2n+1).product {
            clear: none !important;
        }
    }

    Please don’t forget to toggle the Performance > File Compression settings once you’ve added the code.

    However, it would probably be better if you limit the number of products per category in your home page and just add a button or a link that will redirect the customers to the product category page containing the rest of the items.

    Best regards,
    Ismael

    in reply to: Slow website after Enfold update #1118684

    Hi,

    We are getting a lot of 508 http error code from that plugin, probably causing the wp-admin to fail.
    Can you access the LatePoint panel when you activate a different theme?
    Have you reached out to the plugin developer regarding this issue?

    Best regards,
    Ismael

    in reply to: Private post made public after update #1118681

    Hi,

    You’re welcome! Always glad to be of help.

    Regarding the search index, this is probably why this snippet was added in your header.php file.

    
    if(get_field('status') != 'private'){
        if (function_exists('avia_set_follow')) { echo avia_set_follow(); }
    } else{
        echo '<meta name="robots" content="noindex,nofollow">';
    } 
    

    This sets the meta content to noindex and nofollow when the status is set to “private”.

    If you want Google to reindex the page, ask them to recrawl the site:

    // https://support.google.com/webmasters/answer/6065812?hl=en

    And yes, it may take some time.

    Best regards,
    Ismael

    Hi,

    This is how we see the site on an iPad emulation.

    Screenshot: https://imgur.com/a/zmwHodH

    The images seem to be resizing properly. And what you see in the screenshot is called the Fullwidth Slider, not the Fullscreen Slider.

    Best regards,
    Ismael

    in reply to: Mobile layout tablets #1118678

    Hi,

    Thank you for the update.

    The site is asking for another authentication aside from the dashboard account. Could you remove that temporarily?

    Best regards,
    Ismael

    in reply to: Advanced Page Builder Not Saving on Update. #1118669

    Hi,

    Thank you for the update.

    Did you add any custom html in that page? Please make sure that the tags are closed properly. And set the builder to debug mode so that we can inspect the shortcodes directly.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Remove space between Promotion boxes #1118668

    Hi,


    @Wandelschoenenexperts
    : Did you enable the Performance > File Compression settings? Please toggle the option or disable it temporarily after adding the code. Or create a new ticket and post the login details there so that we can check the site.

    Best regards,
    Ismael

    in reply to: Putting code in whitespace to left of logo in header #1118666

    Hi,

    We replied here: https://kriesi.at/support/topic/license-just-expired-need-help-with-adding-widget-to-header-area-help-please/#post-1118665

    Please continue on that thread. We’ll close this one for now.

    Best regards,
    Ismael

    Hey jenmangas1!

    Thank you for using Enfold.

    Where would you like to position the widget on mobile view? Please provide a screenshot.

    If you want to hide it on smaller screens, use this css code.

    @media only screen and (max-width: 767px) {
       #header .widget { display: none !important; }
    }

    Cheers!
    Ismael

    Hi,

    Thank you for using Enfold.

    I’m not really sure what you’re trying to do here. Can you give us a link to the checkout page? You should be able to change the page setup and checkout endpoint in the WooCommerce > Settings > Advanced panel.

    Best regards,
    Ismael

    in reply to: Slow website after Enfold update #1118662

    Hey bsoryn,

    Thank you for using Enfold.

    How did you test the site speed? You can actually ignore the “Missing Dependencies” error because it’s not critical and should not affect the site speed. The error occurs because the scripts are looking for the avia_modal.js file, which is only loaded when you’re editing a post or page using the advance layout builder (ALB). You can confirm that by editing one the pages using the ALB.

    Best regards,
    Ismael

    in reply to: Submit on Contact Form Doing Nothing #1118661

    Hi,

    Did you set jQuery to load in the footer? We can see a few jQuery errors in the console, which seems to be related to another plugin. Is “ct_fkp_” familiar to you?

    Best regards,
    Ismael

    in reply to: Big problem with the Advanced Styling #1118660

    Hey Giuseppe,

    Thank you for using Enfold.

    Which element or module is no longer working? Can you give us a link to the actual page with the issue? Please make sure that the Enfold > Performance > File Compression settings are disabled while you’re adjusting the element styles.

    Best regards,
    Ismael

    in reply to: Revolution slider #1118658

    Hi,

    Thank you for using Enfold.

    According to this thread, upgrading to the latest version (6.0.2) of the plugin fixed the issue.

    // https://kriesi.at/support/topic/new-revslider-6-breaks-enfold/#post-1117586

    Best regards,
    Ismael

    in reply to: Font colors and logo size #1118657

    Hi,

    Thank you for the update.

    1.) You should remove the white space or gap beside the actual logo image, then upload it again. (see private field)

    2.) There are additional style options in the Enfold > Advanced Styling panel. Have you seen those options?

    Best regards,
    Ismael

    Hey ThiloKiefer,

    Thank you for using Enfold.

    Where does the error point to? Which element? The actual markup with the missing parent element should be listed in the report.

    Best regards,
    Ismael

    in reply to: Reverse Column Stacking Order for Mobile #1118655

    Hi,

    @shrinkray: The site is private and is asking for authentication. Please create your own ticket and post the additional details in the private field. Don’t forget to include the link of this thread for reference.

    Best regards,
    Ismael

    in reply to: Auto fill out a product title to contact form? #1118654

    Hi,

    Yes, that should be possible. Try to enable or set the checked attribute to true once the button is clicked. Something like this:

    $('.button-selector').on('click', function() {
         $('.checkbox1, 'checkbox2').attr('checked','checked');
    });
    

    Best regards,
    Ismael

    in reply to: Add to cart widget size #1118653

    Hi,

    Thanks for the update.

    You should probably set the Screen Options > Full Width Breakpoint to the second option (On tablets (at a screen width of 989px or lower) in order to create more space for the add to cart buttons. This will force the columns to stack on top of each other on tablet view.

    Best regards,
    Ismael

    in reply to: Create simple slider with arrows #1118652

    Hi,

    This css code works on our end.

    #top .av-large-testimonial-slider .avia-slideshow-arrows a {
        font-size: 90px;
    }
    

    Screenshot: https://imgur.com/a/S1s5e9c

    Please don’t forget to toggle the Enfold > Performance > File Compression settings after adding the code, or just disable that option temporarily.

    Best regards,
    Ismael

    in reply to: Blanck Page after upgrading #1118649

    Hi,

    Awesome! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Portfolio page does not show in Enfold #1118648

    Hi,

    Thank you for the update.

    We can’t reproduce the issue on our end. All items are showing up in the same page when we set the “Beitragsnummer” to 13.

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #1118647

    Hi!

    @elmanisero: Thank you for the update! We’ll include this in the next patch.

    Best regards,
    Ismael

    in reply to: Advanced Layout Builder lädt nicht #1118646

    Hi,

    Thank you for the update.

    Are you referring to the video inside the “Soziales Engagement von Pro Heraldica” section? That video is loading properly on our end even though it’s embedded in a code block or as an iframe.

    Best regards,
    Ismael

    in reply to: using :before to add an icon and a link #1118645

    Hi,

    Thanks for the update.

    You don’t have to add the echo function because you’re supposed to concatenate the value of the field to the $meta string or text.

    
    $linkedin = get_post_meta($post->ID, 'linkedinurl', true);
    $meta .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add} </a>{$linkedin}</div><div class='slide-meta-del'>/</div>";
    

    Best regards,
    Ismael

    in reply to: Variations not changing product picture #1118644

    Hi,

    That’s how variable product works ever since. Please check the documentation for more info.

    // https://docs.woocommerce.com/document/variable-product/

    Thank you for the update.

    Best regards,
    Ismael

Viewing 30 posts - 22,471 through 22,500 (of 67,491 total)