Forum Replies Created
-
AuthorPosts
-
January 8, 2019 at 3:07 pm in reply to: "Bellow are some interesting links for you! Enjoy your stay :)" . #1051407
Hi,
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 #1051162Hi,
The page is password protected. Please post the info in the private field.
Did you happen to enable the Performance > File Compression settings? Please disable it temporarily.Best regards,
IsmaelHey JuergenB,
Thank you for using Enfold.
This may be possible with the “pre_get_posts” hook or function. Could you give us a link to the archive page?
// https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
Best regards,
IsmaelHi,
I corrected the code in the Quick CSS field. Please remove the browser cache prior to checking the page.
Best regards,
IsmaelJanuary 8, 2019 at 3:50 am in reply to: Sorting Portfolio Items differently in different cases #1051156Hi,
Great! Glad that you figured it out. Please open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
You’re welcome! Glad we could help. Please open a new thread if you need anything else.
Best regards,
IsmaelHi,
Great! Glad it worked. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Do you have a test page with the cloned section? What is the size of the image? Please resize it based on the standard mobile screen sizes.
// http://gs.statcounter.com/screen-resolution-stats/mobile/worldwide
Best regards,
IsmaelJanuary 8, 2019 at 3:45 am in reply to: Autoplay Vimeo video added to homepage with Avia Video block #1051150Hi,
Odd. Please post the WP and FTP details in the private so that we can modify and test the code.
Best regards,
IsmaelHi,
Enable the the custom css class field so that you can target the social icons or the columns containing them:
Edit the first column in the row, set the “Equal Height Columns” to the first option and add a unique class attribute to the social icon columns. You can then use that selector or class attribute to adjust the width of the columns on mobile view. Example:
.social-columns { width: 31%; float: left; }
Best regards,
IsmaelJanuary 8, 2019 at 3:38 am in reply to: Updating to Enfold 4.5 and validating Personal Token #1051145Hi,
@fulanoinc: Thanks for the info. :)
@superbikecoach: You will be able to choose an editor on version 4.5.2. Go to the Enfold > Theme Options panel and look for the “Select Your Editor” settings.Best regards,
IsmaelJanuary 8, 2019 at 3:35 am in reply to: Latest Enfold [5.+] not working with H5P plugin [no errors in console] #1051144Hi,
I’m sorry but we don’t hand in that kind of information here. Please disable the security block momentarily or allow access for specific countries. You can find us here:
We usually respond within 24 hours during weekdays but you may need to wait for a while when you open a request right before the weekends.
Again, you should contact the plugin authors because they are more familiar with their plugin.
Best regards,
Ismael -
AuthorPosts