Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHi,
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,
IsmaelHi,
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>Best regards,
IsmaelHey!
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,
IsmaelJuly 15, 2019 at 6:29 am in reply to: make the products on Homepage & Product category page show 3 columns for mobile #1118685Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJuly 15, 2019 at 6:02 am in reply to: Responsive Problem with the Ipad and Iphone with the fullscreen slider #1118679Hi,
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,
IsmaelHi,
Thank you for the update.
The site is asking for another authentication aside from the dashboard account. Could you remove that temporarily?
Best regards,
IsmaelHi,
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,
IsmaelHi,
@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,
IsmaelHi,
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,
IsmaelJuly 15, 2019 at 4:33 am in reply to: License JUST expired – Need help with adding widget to header area! HELP PLEASE #1118665Hey 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!
IsmaelJuly 15, 2019 at 4:28 am in reply to: Checkout href not changing according to new checkout page in mini cart #1118664Hi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJuly 15, 2019 at 3:37 am in reply to: ARIA – [role]s are not contained by their required parent element – [aria-*] att #1118656Hey 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,
IsmaelHi,
@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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi!
@elmanisero: Thank you for the update! We’ll include this in the next patch.
Best regards,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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 -
AuthorPosts
