Forum Replies Created
-
AuthorPosts
-
Hi,
You have to disable the plugin temporarily in order to find out which plugin is generating those meta tags.
Best regards,
IsmaelJanuary 9, 2019 at 11:25 am in reply to: Hidden products appearing in search and post navigation arrows #1051727Hey chartinboy,
Thank you for using Enfold.
You can use this filter to remove hidden products from the search results page.
if ( ! function_exists( 'pre_get_posts_remove_hidden_product' ) ){ function pre_get_posts_remove_hidden_product( $query = false ) { if(!is_admin() && is_search()){ $query->set( 'meta_query', array( 'relation' => 'OR', array( 'key' => '_visibility', 'value' => 'hidden', 'compare' => 'NOT EXISTS', ), array( 'key' => '_visibility', 'value' => 'hidden', 'compare' => '!=', ), )); } } } add_action( 'pre_get_posts', 'pre_get_posts_remove_hidden_product' );Unfortunately, you can’t exclude those products from the side navigation.
Best regards,
IsmaelHi,
Could you give us a screenshot of the issue? Are you expecting the images to be fully visible inside the slider? The slider images may not fully display inside the slider because they have to retain the aspect ratio.
Best regards,
IsmaelJanuary 9, 2019 at 8:35 am in reply to: Advanced Layout Editor – conflict with WP Store Locator plugin #1051634Hi,
Great! Glad it is fixed. You can actually disable the block editor on version 4.5.2. You can find the editor settings in the Enfold > Theme Options panel.
Best regards,
IsmaelJanuary 9, 2019 at 8:33 am in reply to: Google Ads in Sidebar are being cropped by Container padding #1051633Hi,
The ads will automatically inherit the width of its parent container and it is currently being set to 110px. Have you tried increasing the width of the sidebar?
Best regards,
IsmaelHi,
Thanks for the update. Not really sure what could cause that. Do you have a staging site where we can see the AJAX functionality in action? Please keep in touch with the plugin developer as they are more familiar with the plugin.
Best regards,
IsmaelJanuary 9, 2019 at 8:13 am in reply to: Slider and menu showing far down the screen below white space on mobile device #1051619Hi,
Did you add any custom modifications to the theme? The height of the header elements are being set dynamically.
Best regards,
IsmaelHi,
Is this fixed? The columns look fine on my end.
// https://imgur.com/a/aRQGkFu
Best regards,
IsmaelHi,
Those options are not available for the map widget but you can use the “avf_google_maps_data” to adjust the map options.
This example adjusts the map saturation:
add_filter( 'avf_google_maps_data', 'avia_maps_widget_saturation', 999, 4 ); function avia_maps_widget_saturation ( $data, $context, $object, $args ) { if($data[0]['shortcode'] === NULL || $data[0]['shortcode'] != 'av_gmap_location') { $data['saturation'] = '-50'; } return $data; }Related thread: https://kriesi.at/support/topic/enfold-google-maps-widget-saturation/#post-981558
Best regards,
IsmaelHi,
The css code is there but it’s not taking effect.
.responsive .container{ max-width: 1400px; }Please go to the wp-content > uploads > dynamic_avia folder and rename the enfold.css file to enfold_bak.css. Go back to the Theme Options, toggle any settings and save the changes to regenerate the dynamic stylesheet.
Best regards,
IsmaelJanuary 8, 2019 at 3:07 pm in reply to: "Bellow are some interesting links for you! Enjoy your stay :)" . #1051407Hi,
Have you managed to remove the text? I don’t see it in the footer columns.
Best regards,
IsmaelHi,
That option is not available for the “Right Sidebar” because of how the main content and sidebar container are ordered or arranged. You need to add some css modifications or create a custom script if you really need a sticky menu.
Best regards,
IsmaelHi,
Add a priority and the number of arguments.
add_filter('http_request_args', function($r, $url) { $r['sslcertificates'] = ABSPATH . '/cacert.pem'; return $r; }, 10, 2);.. where 10 is the priority value and 2 is number of arguments ($r, $url).
// https://developer.wordpress.org/reference/hooks/http_request_args/
Best regards,
IsmaelHi,
Try to apply the transition to the text block instead of creating another container. You have to turn on the custom css class field.
Best regards,
IsmaelJanuary 8, 2019 at 12:16 pm in reply to: improved: added rel='nofollow' ? Excuse me? What? This is the biggest nonsense #1051352Hi,
@HokusPocus: That attribute was not added to disallow robots from following the search results page. The attribute is only added to the search tooltip icon, which we suspect is causing duplicate content issue. More info here:
// https://support.google.com/webmasters/answer/96569?hl=en
The actual search results page is still set to “noindex, follow”. It was modified in response to this thread:
// https://kriesi.at/support/topic/how-to-remove-s-from-search-url/
What is the effect: On all your Enfold clients, all crawler and bots stop here, break down the crawling process of the whole pages and ends the crawling. Wow, that’s great.
Do you have any reference for that?
Best regards,
IsmaelHi,
You can set a minimum font size for those text. Edit the layer, go to the Styles panel and look for the “Min. Font Size” and “Min. mobile font size” fields. Add a value.
Or just hide the layer slider on mobile view and display a full screen slider instead. You can toggle the visibility of the elements in the Screen Options panel.Best regards,
IsmaelHi,
You can’t use another shortcode as an attribute value because of how the theme parses the shortcode but you can create a custom shortcode based on the current av_image shortcode.
// https://codex.wordpress.org/Function_Reference/add_shortcode
Example:
function custom_image_shortcode_func( $atts ) { $image = do_shortcode('[field image-url]'); $cv = do_shortcode('[field cv_custom_url]'); $title = do_shortcode('[field title]'); return do_shortcode("[av_image src='".$image."' av_uid='av-5y6rbx' attachment='".$image."' attachment_size='full' align='center' styling='' hover='' link='".$cv."' target='_blank' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jpz4q5h9' custom_class='' admin_preview_bg='']".$title."[/av_image]"); } add_shortcode( 'custom_image_shortcode', 'custom_image_shortcode_func' );Best regards,
IsmaelHi,
@michaelH: Thanks for helping. :)
@rosewoodva: You might want to try this:#small-icon .av-inner-tab-title { width: 50px !important; font-size: 13px !important; font-weight: bold !important; min-height: 60px; height: 60px; } #small-icon .av-tab-section-image { width: 50px !important; margin: 0 auto; }Best regards,
IsmaelJanuary 8, 2019 at 11:33 am in reply to: Woocommerce Product Overview Pages not Displaying Correct Amount of Products #1051338Hi,
The option is working properly on my own installation. Did you add any custom modifications to the theme?
I also noticed that the site is still running on version 4.4.1. You have to upgrade to version 4.5.2.Best regards,
Ismael2Hey DROR,
Thank you for using Enfold.
What is the actual warning or notification? What is the current PHP version?
Best regards,
IsmaelJanuary 8, 2019 at 6:27 am in reply to: WooCommerce Product List Title and Price overlap in mobile view #1051209Hi,
You have to adjust the view port. This line:
and (min-device-width: 375px)to:
and (min-device-width: 200px)Or just remove that line completely.
Best regards,
IsmaelHey Mark,
Thank you for using Enfold.
The site is loading properly on my end. And that is just a font file, so I don’t think it would cause any harm to your site.
Best regards,
IsmaelHi,
You can add the full width sub menu shortcode right after this line:
if($showheader) { echo avia_title(array(‘title’ => avia_which_archive())); }Or use the “ava_after_main_title” hook as suggested. Example:
add_action('ava_after_main_title', function() { if( is_archive() ) { echo do_shortcode( 'FULL WIDTH SUB MENU SHORTCODE HERE' ); } });You may need to set the builder to debug mode in order to get the actual shortcode of the elements.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
IsmaelHey ariamedtour,
Thank you for using Enfold.
That is how it’s supposed to work. You don’t need the rel attribute on the first page.
// https://yoast.com/rel-next-prev-paginated-archives/
Best regards,
IsmaelHi,
This css code should help contain the full width sub menu element within the box container:
#top .av-submenu-container.av-sticky-submenu { max-width: 100%; }Best regards,
IsmaelHi,
Thanks for the update. We changed the Google map script versioning to “weekly” on Enfold 4.5.2 to get rid of the “retired version” warning. Please upgrade the theme to the latest version.
// https://developers.google.com/maps/documentation/javascript/versions
Best regards,
IsmaelHi,
I added a text block at the very bottom, updated the page and it displayed correctly but the color section containing the content has been removed. Did you add any html tags on that page? Did you copy the text from another source?
Best regards,
IsmaelJanuary 8, 2019 at 4:13 am in reply to: Prevent menu items (catalog) overlapping on mobile version #1051164Hey Paul,
Thank you for using Enfold.
You can use decrease the font size of the title or the price on mobile view.
@media only screen and (max-width: 767px) { .av-catalogue-price { font-size: 13px; } .av-catalogue-title { font-size: 15px; } }Best regards,
IsmaelJanuary 8, 2019 at 4:02 am in reply to: Menu-Fonts are not correct displayed in the frontend #1051162 -
AuthorPosts
