Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry about that. I forgot to re-enable the filter after editing it. You may need to disable the sidebar for now because the addition of the full width sub menu breaks the default layout of the page.
Best regards,
IsmaelJune 3, 2019 at 3:07 am in reply to: How to Remove Caption or Description HTML from Image Hover in Masonry Gallery #1106524Hi,
Alright. We’ll close this thread now. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thanks for the update.
Where can we see the issue again? The select or menu element is no longer visible above the product image as shown in the previous screenshot. (see private field)
Best regards,
IsmaelHey Chili2908,
Thank you for using Enfold.
You can use this css code to move the navigation arrows outside the gallery container.
#top .avia-slideshow-arrows a.next-slide { right: -100px; } #top .avia-slideshow-arrows a.prev-slide { left: -100px; } .av-horizontal-gallery { overflow: visible; } .av-horizontal-gallery .av-horizontal-gallery-inner { overflow: hidden; }Best regards,
IsmaelMay 31, 2019 at 4:01 pm in reply to: Problem uploading single product page image – cant change the 100×100 px #1105715Hi,
Thank you for using Enfold.
Looks like it is selecting a smaller thumbnail because of the srcset attribute. You can add this code in the functions.php file to disable that attribute.
add_filter( 'wp_calculate_image_srcset', 'avf_disable_srcset' ); function avf_disable_srcset() { return false; }Best regards,
IsmaelHey seerifee,
Thank you for using Enfold.
You can upload your own icon font using the Iconfont Manager. It’s located in the Enfold > Import/Export panel.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelHey ronaldalexander,
Thank you for using Enfold.
Is this for a google analytics tracking? How did you implement it for the mailto links? You may need to add an onclick attribute to the social icon using javascript/jQuery.
Best regards,
IsmaelHi,
Thank you for the update.
We can’t edit the loop-search.php file in the Appearance > Editor panel. Please post the FTP or file server account in the private field.
Best regards,
IsmaelHi,
You can use this css code to adjust the style of the plugin table on mobile view.
@media only screen and (max-width: 767px) { ._sumo_pp_payment_plans td, ._sumo_pp_payment_plans tr, ._sumo_pp_payment_plan th { width: 100%; display: block; } }Please note that we don’t provide support for third party plugins as stated on our support policy. You may need to contact the plugin author for additional help.
We would like to apologize for the late response.
Best regards,
IsmaelHey ksnoo04,
Thank you for using Enfold.
You need to add the “cf-label-icons” as the value of the custom_class parameter.
[av_contact email=' (Email address hidden if logged out) ' title='How can we help you?' on_send='' sent='Your message has been sent! We will get back to you shortly.' link='manually,http://' subject='Support Request' autorespond='' captcha='' form_align='' color='' custom_class='' admin_preview_bg='' av_uid='av-hroj83'].. replace it with:
[av_contact email=' (Email address hidden if logged out) ' title='How can we help you?' on_send='' sent='Your message has been sent! We will get back to you shortly.' link='manually,http://' subject='Support Request' autorespond='' captcha='' form_align='' color='' custom_class='cf-label-icons' admin_preview_bg='' av_uid='av-hroj83']Best regards,
IsmaelHi,
The compression is actually not working in your installation, but we’re not sure why. Have you tried using a third party compression plugin like Autoptimize?
// https://wordpress.org/plugins/autoptimize/
Also what does Kriesi mean by “compressed” anyway?
The compression will combine all the scripts or stylesheets and minify them, removing the spaces, lines and comments.
Best regards,
IsmaelHi,
Thank you for the update. And sorry for the delay.
Those pages require a password. What is it? Please provide it in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
Did you remove the text or “example-data/” page? It’s no longer accessible. Please re-create the test page so that we can check the elements.
Best regards,
IsmaelHi,
I have not tried. How do I set the value?
Edit the iframe tag and remove the height attribute. In the post editor, you should see something like this.
<iframe src="URL" height="522" width="900"></iframe>Just remove the height attribute.
<iframe src="URL" width="900"></iframe>Unfortunately, I don’t understand your next request/inquiry. Please explain it further and open a new thread if possible. Thanks!
Best regards,
IsmaelHi,
Thank you for the update.
1-2) The css code works properly on our end. Did you toggle the Performance > File Compression settings after adding the css code? And don’t forget to remove the browser cache.
3. Did you try to add the widget? Make sure that the secondary menu is activated. If you don’t have a secondary menu, include this filter in the functions.php file.
add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);4-5.) Use this html code as suggested in the article.
<a href="tel:1-562-867-5309">1-562-867-5309</a>Best regards,
IsmaelHi,
Glad that you figured it out. And we would like to apologize for not replying immediately. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelMay 31, 2019 at 6:55 am in reply to: Video: Lazy Load does not work (non-rendered shortcode only) #1105595Hi,
couldn’t this option “loop on/ off” be considered as option in a future version?
This is possible with the current shortcode, but you need to use youtube or vimeo. Set the loop parameter to false or 0.
Example:
https://www.youtube.com/watch?v=G0k3kHtyoqc&autoplay=1&mute=1&loop=0Best regards,
IsmaelHi,
Thanks for the update.
Did you disable the WP login account? It’s no longer working. We can’t add the twitter social icon and check whether the filter is working or not.
Best regards,
IsmaelHi,
Thank you for the clarification. We’ll forward that to the dev team.
We will probably add another filter right after the recaptcha authentication. Something like this:
$proceed = $this->check_recaptcha_token( $new_post['label_input'] ); if( $proceed ) { delete_transient( 'avia_recaptcha_transient_' . $proceed ); $proceed = apply_filters( 'avf_form_send_recaptcha_authenticated', true, $new_post, $this->form_params, $this ); }That should allow you to change the value of the $proceed based on certain conditions even when the spam protection is enabled.
Best regards,
IsmaelMay 31, 2019 at 5:18 am in reply to: Masonry – Portfolio Entry Displayed Although It Doesn't Meet Condition #1105588Hi,
The filter should be added in the child theme’s functions.php file. It enables the same_category parameter.
In case you don’t have a child theme yet, the documentation should help.
// https://kriesi.at/documentation/enfold/child-theme/
Best regards,
IsmaelHi,
@allyson3: Have you tried @Guenni’s suggestion? I think that’s a better solution.Anyway, you can use this css code to prevent the overlap.
@media only screen and (max-width: 767px) { .s_line { position: relative; top: auto; left: 4px; } }Did you manage to change the burger menu color? The background color is set to #a64e06.
Best regards,
IsmaelMay 31, 2019 at 4:58 am in reply to: Masonry Gallery pagination links jump to top of page instead of to gallery #1105584Hi,
Glad it worked. You should create a child theme if you don’t want it to be removed on update.
// https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme
Best regards,
IsmaelMay 31, 2019 at 4:56 am in reply to: Background FIXED so that the info is scrollable over the top of the image #1105582Hi,
Thanks for the update. And sorry for the confusion.
Add this code in the child theme’s functions.php file:
// load shortcodes.js in the child theme function ava_wp_enqueue_scripts() { wp_dequeue_script('avia-shortcodes'); wp_deregister_script( 'avia-shortcodes'); wp_enqueue_script('avia-shortcodes', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery')); } add_action( 'wp_enqueue_scripts', 'ava_wp_enqueue_scripts', 100 );After that, create a “js” folder inside the child theme directory and put the modified shortcodes.js file inside.
Best regards,
IsmaelHi,
Thank you for the info.
Did you check the screenshot? Is that what you’re seeing on your end?
Best regards,
IsmaelHey!
If you have additional question, please create a new thread. We’ll close this one.
Regards,
IsmaelHi,
Wrap this code inside one of your css media queries.
#top #wrap_all #text-7 .textwidget h1 { display: none !important; }That code should hide the text on mobile view.
By “css media queries”, I am referring to this code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }Add the code inside.
Best regards,
IsmaelHi,
@richardwilding: Using the “avf_logo_final_output” filter should work in your case. Use the polylang’s conditional function to switch the logo for each language.// https://kriesi.at/documentation/enfold/logo/#change-the-logo-image-on-some-pages
Best regards,
IsmaelMay 31, 2019 at 4:41 am in reply to: Masonry Gallery mobile Version do not work like the desktop Version #1105572Hi,
Thank you for the clarification.
Are you sure that you want to remove the caption overlay? The masonry title and captions become a bit difficult to read when the background is removed.
.main_color .container .av-inner-masonry-content, .main_color .container .av-masonry-entry .avia-arrow { background-color: transparent; }Best regards,
IsmaelHi,
Are you sure that you’re using the post slider or the blog posts element set as grid layout? Try to replace this line:
$acf_provacat = get_field('provacategorie');.. with:
$acf_provacat = get_field('provacategorie', $the_id);Best regards,
IsmaelHi!
Thank you for the update.
The site is not on maintenance mode, so it’s accessible even when we’re not logged in. The htaccess authentication isn’t there yesterday if I am not mistaken. Anyway, we need to access the dashboard. Please provide the WP login details.
Best regards,
Ismael -
AuthorPosts
