Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Have you tried enabling the custom css class field? You should be able to apply a unique class attribute to a specific element and use it to adjust its style.
Best regards,
IsmaelJune 21, 2019 at 9:43 am in reply to: Code Block Element doesn't handle shortcodes properly #1112250Hi,
You can find links to the latest versions of the video.php and video.js file in the private field.
Best regards,
IsmaelHi,
I think you forgot to include the user name. Please add it in the private field.
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
Can you ask the plugin author what function to use in order to render the sorting element for the auction page? We can use that as a callback for the action hook. Example:
function avia_woocommerce_auction_hooks() { add_action('woocommerce_before_shop_loop','function_or_callback_to_use', 20); } add_action( 'init', 'avia_woocommerce_auction_hooks');Best regards,
IsmaelJune 21, 2019 at 9:07 am in reply to: N°3 – notification update extension dashboard but no update disable #1112234Hi,
Thanks for the update.
We don’t see any notifications in the dashboard related to the layer slider. Is this fixed?
Best regards,
IsmaelHi,
You can actually disable the block or Gutenberg editor from the Enfold > Theme Options panel. Just look for the “Select your Editor” settings. Or install the “Classic Editor” plugin.
Thanks for the update.
Best regards,
IsmaelHey erkuto,
Thank you for using Enfold.
Could you give us access to the site so that we can check the content? Are you using the translation management plugin from W P M L?
// https://wpml.org/documentation/translating-your-contents/
Best regards,
IsmaelHi,
Thank you for the update.
Do you want to remove the first row or the column title? You can use this css code for that.
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead > tr { display: none !important; }If you want to remove the quantity button, just add this.
#top .main_color .quantity input.plus, #top .main_color .quantity input.minus { display: none !important; }Best regards,
IsmaelHi,
Thank you for the update.
You should be able to adjust the excerpt length with the following filter.
// https://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_length
Example:
function avf_custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'avf_custom_excerpt_length', 999 );Let us know if it helps.
Best regards,
IsmaelHey Kelly,
Thank you for using Enfold.
What do you mean by “PHP” page? Is it not the same as those generated by WordPress? Try to use the get_header() function in the template.
get_header(); // page content hereBest regards,
IsmaelHi,
Thank you for the update.
The “studio” demo is using the “Roboto” font. You can set that in the Enfold > General Styling > Fonts panel. Look for the “Heading Font” and “Font for your body text” settings. You can also adjust the heading and body font settings in the Enfold > Advanced Styling panel.
Best regards,
IsmaelHi,
Sorry for the delay.
Would you like to remove the default margin of the items? Please use the following code in the Quick CSS field or the child theme’s style.css file.
@media only screen and (max-width: 479px) { .responsive #top #main .products .product { margin: 0; } }Best regards,
IsmaelHi,
Thank you for the update.
Where did you add the custom css class attribute? We can’t find it in the special heading element. Please apply the “left-title” class attribute to the special heading element and then use the following css code to align the title to the left.
#services .left-title { text-align: left !important; }Or set the “Heading Style” to the second option (Heading Style Modern(left)).
Best regards,
IsmaelHi,
Great! 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.
You have to translate the media files in your installation. Please follow the instructions provided in the following thread.
// https://kriesi.at/support/topic/alb-elements-are-missing-in-translated-pages-wpml/#post-995955
Best regards,
IsmaelJune 21, 2019 at 7:27 am in reply to: Woocommerce Bookings option to display calendar on click not working properly #1112211Hi,
We would like to apologize for the late response.
The date picker or calendar is there but it’s hidden and the “Choose” button that should toggle it is missing. As a temporary fix, please use the following css code to have the calendar display on load.
#top .wc-bookings-booking-form fieldset .picker.hasDatepicker { margin-top: 1em; display: block !important; }Please ask the plugin author how they render the “Choose” button.
Best regards,
IsmaelHi,
Thank you for the update.
1.) Which overlay or hover effect would you like to remove? If you want to remove the default image overlay, use this css code.
.image-overlay.overlay-type-extern { display: none !important; }2.) That is the default post navigation. Please use the following css code if you want to remove it.
.avia-post-nav { display: none !important; }Best regards,
IsmaelHi,
Thank you for the update.
This is a known compatibility issue with the plugin. It’s using the same hook as the mega menu option, so it overrides the other. Please refer to the following documentation for a possible solution.
// https://kriesi.at/documentation/enfold/mega-menu/#mega-menu-appears-as-a-normal-menu
Best regards,
IsmaelHey m_reiprich,
Thank you for using Enfold.
We can’t see any filters on that page. Please check if the URL is correct.
The Portfolio Grid and the Masonry element can be sorted by category. Have you tried using those elements?
Best regards,
IsmaelJune 14, 2019 at 5:07 am in reply to: Issues of Avia Layout Builder after updating WordPress #1110190Hi,
The lightbox option is working. Please don’t forget to remove the cache before checking.
This is what see on our end: https://imgur.com/a/Q0ywodc
Thank you for the update.
Best regards,
IsmaelHey gatehealing,
You can use the following css code to remove the author link in the archive pages manually.
.text-sep-cat, span.blog-author.minor-meta { display: none; }Please don’t forget to toggle the Enfold > Performance > File Compression settings after adding the code.
Thank you for using Enfold.
Best regards,
IsmaelHey gatehealing,
Thank you for using Enfold.
You should be able to add that in the Settings > Permalink panel. In the permalink field, add the “blog” plus a forward slash right before the post name. It will only display for post types with the “with_front” parameter enabled.
// https://codex.wordpress.org/Function_Reference/register_post_type
Best regards,
IsmaelHi,
Thank you for the update.
The admin-ajax.php file is not accessible. Where is the site hosted? Please ask your hosting provider and have them checked if the admin-ajax.php file is being blocked by the server. They usually add it in the module’s ruleset because that file tends to create a lot of requests.
// https://www.knownhost.com/wiki/security/modules-plugins/what-is-mod_security
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to move the dots below the slider images.
.avia-slideshow { padding-bottom: 37px; }And this css code to set the navigation to always display.
.avia_desktop .av_slideshow.avia-slideshow .avia-slideshow-controls a { opacity: 1; filter: alpha(opacity=100); }Best regards,
IsmaelHi,
Great! Glad to hear that the layout is fixed.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter to remove the “Private” or “Beveiligd: ” string from the title.
// remove "beveiligd: " from titles function avf_remove_private_prefix($title) { $title = str_replace('Beveiligd: ', '', $title); return $title; } add_filter('the_title', 'avf_remove_private_prefix');Best regards,
IsmaelHi,
Yes, it’s quite strange. Unfortunately, we are not sure what’s causing it. Does the css code work?
Best regards,
IsmaelHi,
That is where the post navigation should be with that modification. Did you try the original css code?
#top .custom-post-nav { clear: both; } #top .custom-post-nav .avia-post-nav { position: relative; height: 110px; } #top .custom-post-nav .avia-post-nav .entry-info-wrap { width: auto; }Don’t forget to disable the Performance > File Compression temporarily.
Unfortunately, we won’t be able to help you further without having access to the site. Please let us know once the site is live.
Best regards,
IsmaelHi,
Thanks for the update.
We had to replace the original grid with another and save it as a template (certificado-template). You can use that as a boilerplate for your products. The colors might have changed a bit, so you have to reconfigure the color options. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
We can’t access this post without logging in, which means it’s still private.
// https://www.guttogjente.no/sporsmal-og-svar/kjaeresten-min-liker-a-bli-straffet-i-sengen/
It doesn’t show in the AJAX search either. Please check the following screenshot.
Screenshot: https://imgur.com/a/PUYHldD
Could you give us an examples of the 6-digit codes and the post/posts they correspond to?
Best regards,
Ismael -
AuthorPosts
