Forum Replies Created
-
AuthorPosts
-
Hi,
We’ve added this hook on the functions.php file to render the main slider and main menu on single post pages.
// https://pastebin.com/Gm8U9Z14
Best regards,
IsmaelHi,
Alright. We’ll keep the thread open. Let us know when you’re ready. :)
Best regards,
IsmaelAugust 7, 2018 at 3:40 am in reply to: Hover colour on main menu loses colour when moving mouse down to sub-menu items #994190Hi,
Adjust the viewport value from 990px to 989px or 789px. Let us know if that helps.
@media only screen and (min-device-width: 789px) {Best regards,
IsmaelHi,
1.) Use this css code to move the labels to the right of the input fields.
#commentform label { position: relative; margin-bottom: 5px; }2.) Add this filter to change the default button text.
add_filter( 'comment_form_defaults', 'avf_comment_form_defaults_mod', 10, 1); function avf_comment_form_defaults_mod($args) { $args['label_submit'] = __( 'CHANGE THIS TEXT' ); return $args; }Best regards,
IsmaelHi,
I’m sorry but we don’t do that here. Did you create a staging or a dev site?
Best regards,
IsmaelAugust 7, 2018 at 3:18 am in reply to: [URGENT]: Header icon displaying & menu changes color #994185Hi,
I’ve edited a few css codes from the Quick CSS field but the site is still using the old version of the stylesheet. I’ve already cleared the cache.
Please remove this css code from the style.css file and then clear the cache to regenerate the new stylesheets.
.av_main_nav_header.av_menu_right .ubermenu-responsive-toggle { float: right; margin-top: -50px !important; }Best regards,
IsmaelHi,
Thanks for the update. Please enable the Appearance > Editor panel. We need to check the files in the child theme.
Best regards,
IsmaelHi,
Did you toggle the css/js compression from the Enfold > Performance panel? Please post the login details here so that we can check it.
Best regards,
IsmaelHi,
Thanks for the update.
Edit the config-templatebuilder > aviashortcodes > masonry_entries > masonry_entries.js file, add this code around line 55.
filters['isOriginLeft'] = false;Don’t forget to toggle the css/js compression from the Enfold > Performance panel and then purge the cache.
Best regards,
IsmaelHi,
The dropdown menu items are there when I checked. Did you change anything?
Best regards,
IsmaelAugust 7, 2018 at 2:24 am in reply to: Fullwidth slider caption fading in instead of sliding in sidewards #994171Hi,
It’s working now. We set the initial opacity to 0.
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { opacity: 0; }Best regards,
IsmaelHi,
Can you still access the dashboard? Please leave the debug mode enabled and then post the login details in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
That filter is in the child theme’s functions.php file. You can edit it via Appearance > Editor panel.
Best regards,
IsmaelHi,
Did you change the anchor names? Please post the login details in the private field so that we can check the settings.
Best regards,
IsmaelHi,
You have to remove the conditional function is_single.
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { unset($trail[1]); return $trail; }Best regards,
IsmaelHi,
Thanks for the update. Open a new thread and then provide the login details in the private field. We’ll check it there.
Best regards,
IsmaelHi,
Thanks for the update. It’s still not working on my end though. Can you provide a screenshot of the FileZilla config?
Best regards,
IsmaelHi,
The “admin-ajax.php” file is not accessible. Please contact your hosting provider because something blocks your access to that file.
/wp-admin/admin-ajax.php:1 Failed to load resource: the server responded with a status of 403 (Forbidden)
Related thread: https://kriesi.at/support/topic/avia-layout-builder-not-working-anymore/#post-990183
Best regards,
IsmaelHi,
What’s the difference between the “Add Media” and the “KBoard Add Media” button? The latter is working properly.
Best regards,
IsmaelHi,
Thanks for the update.
I think it’s all good. You just removed an internal styling. It can be overridden in the Quick CSS field anytime.
Best regards,
IsmaelHey Karol Kameniczki,
Thank you! Much appreciated! We’ll forward it to the dev team.
Best regards,
IsmaelHey Drebosio,
Thank you for using Enfold.
Access from my country is disabled. Please unblock the countries where the team members reside.
Best regards,
IsmaelHey myproduct,
Thank you for using Enfold.
Did you add any custom scripts to the page? Please enable the debug mode.
// https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_DISPLAY
Just add the following code in the wp-config.php file.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', true); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );Best regards,
IsmaelHey Sorinwd,
Thank you for using Enfold.
Use this css code to remove the masonry’s loading icon.
.avia_loading_icon { display: none !important; }Related thread: https://kriesi.at/support/topic/masonry-element-flickering-on-load-more/#post-969885
Best regards,
IsmaelHey CBurgo,
Thank you for using Enfold.
This is not an error with the theme but rather due to Google’s new autoplay policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
On mobile, the user has added the site to his or her home screen.
Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.The video background auto played on my initial visit to the site. As a forum moderator who inspect sites with videos on a daily basis, I am one of those users whose Media Engagement Index has been crossed.
Best regards,
IsmaelHi,
Place the content of the footer page inside a color section, so it’s full width.
Best regards,
IsmaelHi,
Thank you for update.
Add another blog posts element above the current one. Set the “Post Number” settings to 1 and the “Offset Number” to the second option.
Best regards,
IsmaelHi,
Thanks for the update.
Adjust the bottom padding of the magazine entry container.
.av-magazine-entry { padding-bottom: 0; }Don’t forget to toggle the css/js compression from the Enfold > Performance panel?
Best regards,
IsmaelAugust 6, 2018 at 10:15 am in reply to: Symbol Box – Symbol position displays wrong from 800 – 1024 – Bug?! #993862Hey Britta,
Thank you for using Enfold.
Use this css code to adjust the layout of the icon box element on tablet screens.
@media only screen and (max-width: 989px) and (min-width: 768px) { #top .iconbox_left_content .iconbox_icon, #top .iconbox_right_content .iconbox_icon { margin-bottom: 15px; float: left; display: inline-block; } }Best regards,
Ismael -
AuthorPosts
