Forum Replies Created
-
AuthorPosts
-
January 17, 2020 at 1:11 pm in reply to: Mobile Woocommerce Product to have 2 columns instead of the default 1 single col #1175361
Hi,
Thank you for the update.
This should create a 3 column grid.
.responsive #top #main .products .product { padding: 0; position: relative; width: 32%; margin-left: 0; float: left; clear: none; }Adjust the width to 24% or 23% if you want to create 4 columns.
Best regards,
IsmaelHi,
@MusicalFactory: Yes, you have to modify the enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php file as suggested previously.// https://kriesi.at/support/topic/html-markup-in-excerpt-has-been-lost/#post-734529
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the toggles? Please post the URL of the page.
If you want to duplicate the toggles, edit the enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.php file and look for this code around line 864:
$output .= ' <span class="vert_icon"></span><span class="hor_icon"></span></span>';That is the toggle buttons. You can insert it again after the content, and only display it when the toggle is active.
$output .= '<div class="toggle_content invers-color '.$inherit.'" '.$markup_text.' '.$colors.' >'; $output .= ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $content ) ); $output .= '</div>';Best regards,
IsmaelJanuary 17, 2020 at 6:24 am in reply to: Enfold 4.7.1 Recptcha is in site intgrated but message is shown #1175250Hey torstenhalm,
Thank you for the inquiry.
Did you enable the Privacy & Cookie options from the theme? Please try to set the Default Cookie Behavior to the first option so that all services including the spam protection are enabled automatically on page load.
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the filter a bit. Please try it again.
Best regards,
IsmaelHi,
Thank you for the update.
Try to install the Simple Image Sizes plugin, go to the Settings > Media panel, look for and adjust the size of the “entry_width_sidebar” thumbnail, save or update, then regenerate the thumbnails. If you don’t want to regenerate the media library, just upload the featured image again to see the changes.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelHi,
Thank you for the update.
We tried to login to the site using the account above but it’s invalid. Please check the info carefully or provide another user account. We’ll try to check the settings.
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the posts? By default, you can’t display a different or an alternate title for a post without modifying the theme. Is that what you’re trying to do? A screenshot of the posts will also help.
Best regards,
IsmaelHey Oli,
Thank you for the inquiry.
The scripts and stylesheets are currently compressed or merged. Please try to disable the theme’s file compression settings and the Autoptimize plugin temporarily. Let us know if it changes anything.
Best regards,
IsmaelHi,
Glad to know that you are able to fix the map issue. We will forward the translation errors in our channel.
Have a nice day. And thank you for using Enfold.
Best regards,
IsmaelJanuary 16, 2020 at 10:50 am in reply to: Google Maps not showing, Woocommerce price issue, #1174838Hey kwlodar,
Thank you for the update.
We can’t seem to reproduce the issues that you described above. The map displays properly in the contact page and the price is not duplicated when we select a variation in the linked product page. Did you manage to fix these issues?
Best regards,
IsmaelJanuary 16, 2020 at 10:41 am in reply to: scrolling the page through the link id of the section does not work #1174832Hi,
Thank you for the update.
It is working properly on our end now. We removed the cache and refreshed the page first. Please try to check it on incognito mode or just make sure that cache is removed.
Best regards,
IsmaelJanuary 16, 2020 at 10:39 am in reply to: Video background not adhering to the Color Section element #1174830Hi,
You’re welcome! We’ll close this thread for now. Please feel free to open a new one if you need anything else.
Have a nice day. :)
Best regards,
IsmaelHi,
Thank you for the clarification.
That is the AJAX Portfolio settings. Edit the element and adjust the Link Handling settings to the second option (Open a preview of the entry(known as AJAX Portfolio)). Make sure that the Ajax Portfolio Preview Settings of the portfolio items are set accordingly.
Best regards,
IsmaelJanuary 16, 2020 at 10:29 am in reply to: Cookie Consent Schema Markup of WebPage/BlogPosting #1174825Hi,
Thank you for the info.
It seems to be an issue with the privacy tabs. We replaced the filter in the functions.php file with the following code.
function avf_markup_helper_attributes_modified($attributes, $args) { if(is_singular('post')) { if( ( $args['context'] == 'body' || $args['context'] == 'entry' ) && $args['custom_markup'] != 'article') { unset($attributes['itemtype']); unset($attributes['itemscope']); unset($attributes['itemprop']); } } return $attributes; } add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);Please edit the includes > loop-index.php file, look for this code around line 144:
echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false).">";Replace it with:
echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup' => 'article')).">";This should remove the markup in the privacy tabs.
Best regards,
IsmaelHi,
You are welcome! Please don’t hesitate to open a new thread if you need anything else.
Have a nice day!
Best regards,
IsmaelHi,
Try to replace .thoughts with .slide-entry, and remove hover in the span.image-overlay so that both overlay and title will display when the article is hovered. Or try to add this css code.
.slide-entry:hover .slide-image { background: #1d2553; } .slide-entry:hover .slide-image img { opacity: 0; }This will apply the background color to the slide image container instead of the overlay — creating the same effect.
Best regards,
IsmaelJanuary 16, 2020 at 9:45 am in reply to: Logo Centered Split Menu, with Transparent Logo Area #1174800Hi,
You’re welcome! Please feel free to open a new thread if you need more help.
Have a nice day.
Best regards,
IsmaelHi,
Awesome! Glad we could help. Please don’t hesitate to create a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelJanuary 16, 2020 at 9:44 am in reply to: Move Date below blog Title – using Blog Posts content element #1174794Hi,
Thank you for the info.
We adjusted the script a bit.
Please look for this line:
jQuery('.post-entry').each(function(i) {Replace the selector .post-entry with .single .post-entry. The final code should be:
jQuery('.single .post-entry').each(function(i) {This will ensure that the modification is only applied in the single post page.
Best regards,
IsmaelHi,
Thank you for the following up.
In the Iconfont Manager, there is a link to the fontello website. Once you’re in the site, search for Instagram, select the latest logo, then download the font set. You may want to rename the set before downloading it. After that, upload the font set in the Iconfont Manager.
Best regards,
IsmaelHi,
Thank you for the update.
We can now see the button above the image on Firefox Windows 10. It looks fine on desktop, but you have to adjust it on mobile view or on smaller screens. You can also just apply the modification when the screen width is wider than 1024px.
@media only screen and (min-width: 1024px) { /* Add your Desktop Styles here */ }Best regards,
IsmaelHi,
Unfortunately, this is not possible because of the browsers’ autoplay policy. There’s just no way around it.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the clarification.
we just copied the element i
Where did you copy the elements from? Is it from an existing website or page? It’s possible that there are invalid html tags in the source, which breaks the placeholders or the builder layout. It won’t break the builder initially — only after the page is updated, so you have to be very careful with html tags and make sure that they are closed properly.
so we have no choice but to revamp the site and make another one from the start.
Are you still experiencing the issue on any page/s?
Best regards,
IsmaelJanuary 16, 2020 at 3:40 am in reply to: Confusing sorting options in WooCommerce and Enfold #1174732Hi,
Glad it’s working. The sort options are added by theme, so you have to translate the theme or the avia_framework text domain. Go to the Themes tab of the plugin, click Enfold, then look for the language that requires translation.
Thank you for your patience.
Best regards,
IsmaelJanuary 16, 2020 at 3:37 am in reply to: set the same font for different languages frontpage #1174730Hi,
Thank you for the info.
That is how you apply the font to the elements or text. However, in order to use the font, you have to download the font files and register them first by enqueuing them from the functions.php file, or with css using the @fontface rule. Did you do something like it?
Please check the articles below for more info.
// https://www.wpbeginner.com/wp-themes/how-add-google-web-fonts-wordpress-themes/
// https://css-tricks.com/snippets/css/using-font-face/Best regards,
IsmaelHi,
Thank you for the info.
The version 4.5.2 is not compatible with WordPress 5.3, so you really have to upgrade the theme to the latest version as soon as possible. Unfortunately, we won’t be able to help you any further unless the theme is updated.
Regarding the issue at hand, it’s not working properly because the link of the featured image is prematurely closed because of the closing tag of the first link in the copyright field. You can either remove the link in the copyright field or edit the loop-index.php file and remove the link of the featured image. Look for the following code around line 201, then remove it:
if ($slider) $slider = '<a href="' . $link . '" ' . $featured_img_title . '>' . $slider . '</a>';Best regards,
IsmaelHi!
Thank you for following up.
Can we have access to the site so that we can check it further? Please post the login details in the private field and try to update the theme to the latest version, 4.7.1.
Cheers!
IsmaelHi,
Thank you for the update.
Try to upload the new Instagram logo through the Enfold > Import/Export > Iconfont Manager, then use the following filter to replace the default icon with the new one.
function avia_add_custom_icon($icons) { $icons['instagram'] = array( 'font' => 'instagram’, 'icon' => '0xf16d'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);Replace the font value with the actual name of the font set and adjust the icon value.
Best regards,
IsmaelJanuary 15, 2020 at 12:58 pm in reply to: Mobile Woocommerce Product to have 2 columns instead of the default 1 single col #1173948Hey Jon,
Thank you for the inquiry.
You can use the following css code to adjust the default width of the product items on mobile view.
@media only screen and (max-width: 767px) { .responsive #top #main .products .product { margin: 0 1% 1% 0; padding: 0; position: relative; width: 49%; margin-left: 0; } }Best regards,
Ismael -
AuthorPosts
